From 74be812b5a5c91746e4efc1ffc1db947983cc444 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Mon, 6 Sep 2021 18:08:07 +0100 Subject: [PATCH] (feat) : Split reports and keep one to monitor the max ocp version and another to monitor the deprecated apis - Now we have a dashboard to monitor max ocp version set for the deprecate apis scenario - We simplified the deprecate api reports to use that to know what are the packages with compatible versions or not - We added a new flag to the custom dasboard reports to allow us to pass the template when required - We create a helper script to verify the deprecations made --- .gitignore | 3 +- Makefile | 1 + cmd/custom/deprecate/command.go | 9 +- cmd/custom/deprecate/template.go.tmpl | 65 +- cmd/custom/grade/command.go | 9 +- cmd/custom/main.go | 2 + cmd/custom/maxocp/command.go | 109 + cmd/custom/maxocp/template.go.tmpl | 216 + cmd/index/bundles/command.go | 4 +- hack/index/generate.go | 2 + hack/maxocpversion/generate.go | 85 + hack/scripts/compare/generate.go | 106 - .../deprecate-green/deprecated_index.go | 2 +- hack/scripts/ivs-emails/generate.go | 2 +- hack/scripts/packages/generate.go | 56 +- hack/scripts/packages/template.go.tmpl | 4 +- hack/scripts/validate_deprecate/generate.go | 255 + index.html | 32 + pkg/reports/bundles/columns.go | 2 +- pkg/reports/custom/custom_helpers.go | 15 +- pkg/reports/custom/deprecate_rules.go | 54 +- pkg/reports/custom/deprecated_api_report.go | 58 +- pkg/reports/custom/flags.go | 1 + pkg/reports/custom/grade_report.go | 49 +- pkg/reports/custom/maxocp_api_report.go | 123 + ...eratorhubio_catalog_latest_2021-09-06.html | 8907 +++-- ...eratorhubio_catalog_latest_2021-09-06.html | 30842 ++++++++-------- ...eratorhubio_catalog_latest_2021-09-06.html | 8092 ++++ ...tified_operator_index_v4.6_2021-09-06.html | 2379 +- ...tified_operator_index_v4.7_2021-09-06.html | 2379 +- ...tified_operator_index_v4.8_2021-09-06.html | 2171 +- ...tified_operator_index_v4.9_2021-09-06.html | 2011 +- ...tified_operator_index_v4.9_2021-09-06.html | 24604 ++++++------ ...tified_operator_index_v4.6_2021-09-06.html | 5944 +++ ...tified_operator_index_v4.7_2021-09-06.html | 5904 +++ ...tified_operator_index_v4.8_2021-09-06.html | 5476 +++ ...tified_operator_index_v4.9_2021-09-06.html | 5226 +++ ...munity_operator_index_v4.6_2021-09-06.html | 4063 +- ...munity_operator_index_v4.7_2021-09-06.html | 4103 +- ...munity_operator_index_v4.8_2021-09-06.html | 3979 +- ...munity_operator_index_v4.6_2021-09-06.html | 6418 ++++ ...munity_operator_index_v4.7_2021-09-06.html | 6512 ++++ ...munity_operator_index_v4.8_2021-09-06.html | 6476 ++++ ...hat_marketplace_index_v4.6_2021-09-06.html | 1433 +- ...hat_marketplace_index_v4.7_2021-09-06.html | 1447 +- ...hat_marketplace_index_v4.8_2021-09-06.html | 1383 +- ...hat_marketplace_index_v4.9_2021-09-06.html | 1295 +- ...hat_marketplace_index_v4.9_2021-09-06.html | 14294 +++---- ...hat_marketplace_index_v4.6_2021-09-06.html | 3928 ++ ...hat_marketplace_index_v4.7_2021-09-06.html | 3954 ++ ...hat_marketplace_index_v4.8_2021-09-06.html | 3862 ++ ...hat_marketplace_index_v4.9_2021-09-06.html | 3694 ++ ...redhat_operator_index_v4.6_2021-09-06.html | 1803 +- ...redhat_operator_index_v4.7_2021-09-06.html | 1971 +- ...redhat_operator_index_v4.8_2021-09-06.html | 1941 +- ...redhat_operator_index_v4.9_2021-09-06.html | 1933 +- ...redhat_operator_index_v4.9_2021-09-06.html | 12136 +++--- ...redhat_operator_index_v4.6_2021-09-06.html | 2932 ++ ...redhat_operator_index_v4.7_2021-09-06.html | 3098 ++ ...redhat_operator_index_v4.8_2021-09-06.html | 3124 ++ ...redhat_operator_index_v4.9_2021-09-06.html | 2994 ++ 61 files changed, 140951 insertions(+), 63021 deletions(-) create mode 100644 cmd/custom/maxocp/command.go create mode 100644 cmd/custom/maxocp/template.go.tmpl create mode 100644 hack/maxocpversion/generate.go delete mode 100644 hack/scripts/compare/generate.go create mode 100644 hack/scripts/validate_deprecate/generate.go create mode 100644 pkg/reports/custom/maxocp_api_report.go create mode 100644 testdata/reports/operatorhubio_catalog/dashboards/maxocp_quay.io_operatorhubio_catalog_latest_2021-09-06.html create mode 100644 testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html create mode 100644 testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html create mode 100644 testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html create mode 100644 testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html create mode 100644 testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html create mode 100644 testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html create mode 100644 testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html create mode 100644 testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html diff --git a/.gitignore b/.gitignore index 3f0e57bf..215620ce 100644 --- a/.gitignore +++ b/.gitignore @@ -27,4 +27,5 @@ **/testdata/reports/contacts/** **/testdata/reports/deprecate-all/** **/testdata/reports/deprecate-green/** -**/testdata/reports/deprecate-json/** \ No newline at end of file +**/testdata/reports/deprecate-json/** +**compare.json** \ No newline at end of file diff --git a/Makefile b/Makefile index afa92fcf..0c9290f2 100644 --- a/Makefile +++ b/Makefile @@ -94,6 +94,7 @@ generate-testdata: .PHONY: generate-dashboards ## Generate the testdata custom dashboards generate-dashboards: go run ./hack/deprecate-api/generate.go + go run ./hack/maxocpversion/generate.go go run ./hack/grade/generate.go go run ./hack/index/generate.go diff --git a/cmd/custom/deprecate/command.go b/cmd/custom/deprecate/command.go index a8cde24f..9668ad88 100644 --- a/cmd/custom/deprecate/command.go +++ b/cmd/custom/deprecate/command.go @@ -49,6 +49,8 @@ func NewCmd() *cobra.Command { } 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") return cmd } @@ -84,7 +86,11 @@ func run(cmd *cobra.Command, args []string) error { log.Fatal(err) } - t := template.Must(template.ParseFiles(getTemplatePath(currentPath))) + if len(custom.Flags.Template) == 0 { + custom.Flags.Template = getTemplatePath(currentPath) + } + + t := template.Must(template.ParseFiles(custom.Flags.Template)) err = t.Execute(f, apiDashReport) if err != nil { panic(err) @@ -96,6 +102,7 @@ func run(cmd *cobra.Command, args []string) error { return nil } +//todo: this template requires to be embed func getTemplatePath(currentPath string) string { return filepath.Join(currentPath, "/cmd/custom/deprecate/template.go.tmpl") } diff --git a/cmd/custom/deprecate/template.go.tmpl b/cmd/custom/deprecate/template.go.tmpl index 4f3023a1..4337cd23 100644 --- a/cmd/custom/deprecate/template.go.tmpl +++ b/cmd/custom/deprecate/template.go.tmpl @@ -102,66 +102,13 @@
3. What does it mean for a package to be in red, amber or green?
- - -
-
Not complying with the recommendations
- - - - - - - - - - - - {{ with .NotComplying }} - {{ range . }} - - - - - - - - {{ end }} - {{ end }} - -
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
{{ .Name }} -
    - {{ range .Kinds }} -
  • {{ . }}
  • - {{ end }} -
-
-
    - {{ range .Channels }} -
  • {{ . }}
  • - {{ end }} -
-
-
    - {{ range .Bundles }} -
  • {{ . }}
  • - {{ end }} -
-
-
    - {{ range .BundlesMigrated }} -
  • {{ . }}
  • - {{ end }} -
-
-
Partially complying with the recommendations
+
Using deprecated APIs
@@ -173,7 +120,7 @@ - {{ with .PartialComplying }} + {{ with .NotMigrated }} {{ range . }} @@ -213,7 +160,7 @@
-
Fully complying with the recommendations
+
Has a bundle that we could not find the deprecate APIs
{{ .Name }}
@@ -225,7 +172,7 @@ - {{ with .OK }} + {{ with .Migrated }} {{ range . }} diff --git a/cmd/custom/grade/command.go b/cmd/custom/grade/command.go index 462508c0..aae1fc88 100644 --- a/cmd/custom/grade/command.go +++ b/cmd/custom/grade/command.go @@ -50,6 +50,9 @@ func NewCmd() *cobra.Command { } 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") + return cmd } @@ -85,7 +88,11 @@ func run(cmd *cobra.Command, args []string) error { log.Fatal(err) } - t := template.Must(template.ParseFiles(getTemplatePath(currentPath))) + if len(custom.Flags.Template) == 0 { + custom.Flags.Template = getTemplatePath(currentPath) + } + + t := template.Must(template.ParseFiles(custom.Flags.Template)) err = t.Execute(f, apiDashReport) if err != nil { panic(err) diff --git a/cmd/custom/main.go b/cmd/custom/main.go index a9c745ea..93ac25a8 100644 --- a/cmd/custom/main.go +++ b/cmd/custom/main.go @@ -15,6 +15,7 @@ package custom import ( + "github.com/operator-framework/audit/cmd/custom/maxocp" "github.com/spf13/cobra" "github.com/operator-framework/audit/cmd/custom/deprecate" @@ -30,6 +31,7 @@ func NewCmd() *cobra.Command { indexCmd.AddCommand( deprecate.NewCmd(), grade.NewCmd(), + maxocp.NewCmd(), ) return indexCmd diff --git a/cmd/custom/maxocp/command.go b/cmd/custom/maxocp/command.go new file mode 100644 index 00000000..76857ae4 --- /dev/null +++ b/cmd/custom/maxocp/command.go @@ -0,0 +1,109 @@ +// 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 maxocp + +import ( + "html/template" + "os" + "path/filepath" + + log "github.com/sirupsen/logrus" + "github.com/spf13/cobra" + + "github.com/operator-framework/audit/pkg" + "github.com/operator-framework/audit/pkg/reports/custom" +) + +func NewCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "maxocp", + Short: "generates a custom report based on defined criteria over the max ocp version and the removed apis " + + "for 1.22", + 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.File, "file", "", + "path of the JSON File result of the command audit-tool index bundles --index-image= [OPTIONS]") + if err := cmd.MarkFlagRequired("file"); 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") + 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 + } + + bundlesReport, err := custom.ParseBundlesJSONReport() + if err != nil { + return err + } + + maxDashReport := custom.NewMaxDashReport(bundlesReport) + + dashOutputPath := filepath.Join(custom.Flags.OutputPath, + pkg.GetReportName(maxDashReport.ImageName, "maxocp", "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, maxDashReport) + 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/maxocp/template.go.tmpl") +} diff --git a/cmd/custom/maxocp/template.go.tmpl b/cmd/custom/maxocp/template.go.tmpl new file mode 100644 index 00000000..7513699b --- /dev/null +++ b/cmd/custom/maxocp/template.go.tmpl @@ -0,0 +1,216 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
+ +

Max OCP version for 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
+
    +
  • Image name: {{ .ImageName }}
  • +
  • Image ID: {{ .ImageID }}
  • +
  • Image Created at: {{ .ImageBuild }}
  • +
  • From JSON report generated at: {{ .GeneratedAt }}
  • +
+
+ +
+
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?
+
    +
  • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
  • +
  • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
  • +
  • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
  • +
+
3. What does it mean for a package to be in red, amber or green?
+
    +
  • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
  • +
  • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
  • +
+
+ +
+
Missing Max OCP Version
+
{{ .Name }}
+ + + + + + + + + + + {{ with .NotOK }} + {{ range . }} + + + + + + + + {{ end }} + {{ end }} + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
{{ .Name }} +
    + {{ range .Kinds }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .Channels }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .Bundles }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .BundlesMigrated }} +
  • {{ . }}
  • + {{ end }} +
+
+
+ +
+
Have Max OCP version when required or does not need it at all
+ + + + + + + + + + + + {{ with .OK }} + {{ range . }} + + + + + + + + {{ end }} + {{ end }} + +
Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
{{ .Name }} +
    + {{ range .Kinds }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .Channels }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .Bundles }} +
  • {{ . }}
  • + {{ end }} +
+
+
    + {{ range .BundlesMigrated }} +
  • {{ . }}
  • + {{ end }} +
+
+
+ + + + diff --git a/cmd/index/bundles/command.go b/cmd/index/bundles/command.go index e399acac..bb732a53 100644 --- a/cmd/index/bundles/command.go +++ b/cmd/index/bundles/command.go @@ -85,7 +85,6 @@ func NewCmd() *cobra.Command { cmd.Flags().BoolVar(&flags.ServerMode, "server-mode", false, "if set, the images which are downloaded will not be removed. This flag should be used on dedicated "+ "environments and reduce the cost to generate the reports periodically") - return cmd } @@ -222,7 +221,8 @@ func getDataFromIndexDB(report index.Data) (index.Data, error) { auditBundle.SkipsDB = skips auditBundle = actions.GetDataFromBundleImage(auditBundle, report.Flags.DisableScorecard, - report.Flags.DisableValidators, report.Flags.ServerMode, report.Flags.Label, report.Flags.LabelValue) + report.Flags.DisableValidators, report.Flags.ServerMode, report.Flags.Label, + report.Flags.LabelValue) sqlString := fmt.Sprintf("SELECT c.channel_name, c.package_name FROM channel_entry c "+ "where c.operatorbundle_name = '%s'", auditBundle.OperatorBundleName) diff --git a/hack/index/generate.go b/hack/index/generate.go index a520624a..34744f43 100644 --- a/hack/index/generate.go +++ b/hack/index/generate.go @@ -82,6 +82,8 @@ func main() { kind = "Deprecated API(s) in 1.22/OCP 4.9" } else if strings.Contains(info.Name(), "grade") { kind = "Grade - Experimental" + } else if strings.Contains(info.Name(), "maxocp") { + kind = "Max OCP Version - Monitor" } tagValue := "latest" if strings.Contains(info.Name(), "v") { diff --git a/hack/maxocpversion/generate.go b/hack/maxocpversion/generate.go new file mode 100644 index 00000000..a9537c2c --- /dev/null +++ b/hack/maxocpversion/generate.go @@ -0,0 +1,85 @@ +// 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. + +// This module is used to generate the Deprecated API(s) custom dashboards +package main + +import ( + "fmt" + "os" + "os/exec" + "path/filepath" + "strings" + + "github.com/operator-framework/audit/hack" + "github.com/operator-framework/audit/pkg" + log "github.com/sirupsen/logrus" +) + +//nolint:gocyclo +func main() { + + currentPath, err := os.Getwd() + if err != nil { + log.Fatal(err) + } + + fullReportsPath := filepath.Join(currentPath, hack.ReportsPath) + + dirs := map[string]string{ + "redhat_certified_operator_index": "registry.redhat.io/redhat/certified-operator-index", + "redhat_community_operator_index": "registry.redhat.io/redhat/community-operator-index", + "redhat_redhat_marketplace_index": "registry.redhat.io/redhat/redhat-marketplace-index", + "redhat_redhat_operator_index": "registry.redhat.io/redhat/redhat-operator-index", + "operatorhubio_catalog": "quay.io/operatorhubio/catalog", + } + + binPath := filepath.Join(currentPath, hack.BinPath) + + // nolint:scopelint + for dir := range dirs { + pathToWalk := filepath.Join(fullReportsPath, dir) + dashboardPath := filepath.Join(fullReportsPath, dir, "dashboards") + + command := exec.Command("mkdir", dashboardPath) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + if _, err := os.Stat(pathToWalk); err != nil && os.IsNotExist(err) { + continue + } + + // Walk in the testdata dir and generates the deprecated-api custom dashboard for + // all bundles JSON reports available there + err := filepath.Walk(pathToWalk, func(path string, info os.FileInfo, err error) error { + if info != nil && !info.IsDir() && strings.HasPrefix(info.Name(), "bundles") && + strings.HasSuffix(info.Name(), "json") { + // run report + command := exec.Command(binPath, "dashboard", "maxocp", + fmt.Sprintf("--file=%s", path), + fmt.Sprintf("--output-path=%s", dashboardPath), + ) + if _, errC := pkg.RunCommand(command); errC != nil { + log.Errorf("running command :%s", errC) + } + } + return nil + }) + if err != nil { + log.Fatal(err) + } + } +} diff --git a/hack/scripts/compare/generate.go b/hack/scripts/compare/generate.go deleted file mode 100644 index f2c3fe5a..00000000 --- a/hack/scripts/compare/generate.go +++ /dev/null @@ -1,106 +0,0 @@ -// 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. - -// Deprecated -// This script is only a helper for we are able to compare to JSON files -// and check what packages were defined in one and are no longer in the other -// one. E.g After send a test to iib I want to know what packages in green -// were in the JSON A which are no longer in its result JSON B -// todo: remove after 4.9-GA - -package main - -import ( - "encoding/json" - "log" - "os" - "path/filepath" - - "github.com/operator-framework/audit/hack" - "github.com/operator-framework/audit/pkg/reports/custom" -) - -//nolint:lll -func main() { - - jsonFinalResult := "my-test.json" - jsonOrigin := "testdata/reports/redhat_redhat_operator_index/bundles_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-29.json" - - apiDashReportOrigin, err := getAPIDashForImage(jsonOrigin) - if err != nil { - log.Fatal(err) - } - - currentPath, err := os.Getwd() - if err != nil { - log.Fatal(err) - } - - file := filepath.Join(currentPath, jsonFinalResult) - - apiDashReportFinalResult, err := getAPIDashForImage(file) - if err != nil { - log.Fatal(err) - } - - // Check all that was in green that is no longer in the final result - var notFound []custom.OK - for _, v := range apiDashReportOrigin.OK { - found := false - for _, i := range apiDashReportFinalResult.OK { - if v.Name == i.Name { - found = true - break - } - } - if !found { - notFound = append(notFound, v) - } - } - - reportPath := filepath.Join(currentPath) - - // Creates the compare.json with all packages and bundles data that were - // in the origin and are no longer in the result - fp := filepath.Join(reportPath, "compare.json") - f, err := os.Create(fp) - if err != nil { - log.Fatal(err) - } - - defer f.Close() - - jsonResult, err := json.MarshalIndent(notFound, "", "\t") - if err != nil { - log.Fatal(err) - } - - err = hack.ReplaceInFile(fp, "", string(jsonResult)) - if err != nil { - log.Fatal(err) - } -} - -func getAPIDashForImage(image string) (*custom.APIDashReport, error) { - // Update here the path of the JSON report for the image that you would like to be used - custom.Flags.File = image - - bundlesReport, err := custom.ParseBundlesJSONReport() - if err != nil { - log.Fatal(err) - } - - apiDashReport := custom.NewAPIDashReport(bundlesReport) - return apiDashReport, err -} diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go index d70a65ef..c0c8b4ea 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go @@ -144,7 +144,7 @@ func main() { // report we want only the cases that has a valid path for // 4.9 found := false - for _, v := range apiDashReport.OK { + for _, v := range apiDashReport.Migrated { if v.Name == b.PackageName { found = true break diff --git a/hack/scripts/ivs-emails/generate.go b/hack/scripts/ivs-emails/generate.go index f54bd611..d886ce3a 100644 --- a/hack/scripts/ivs-emails/generate.go +++ b/hack/scripts/ivs-emails/generate.go @@ -141,7 +141,7 @@ func getData(image string, mongoValues []MongoItems) ([]Item, ImageData) { } var items []Item - for _, pkgV := range apiDashReport.PartialComplying { + for _, pkgV := range apiDashReport.NotMigrated { mg := MongoItems{PackageName: pkgV.Name, Association: "N/A"} for _, m := range mongoValues { if m.PackageName == pkgV.Name { diff --git a/hack/scripts/packages/generate.go b/hack/scripts/packages/generate.go index 9b62da85..eb8fa495 100644 --- a/hack/scripts/packages/generate.go +++ b/hack/scripts/packages/generate.go @@ -44,15 +44,15 @@ import ( type File struct { APIDashReport *custom.APIDashReport - MigrateNotIn49 []custom.OK - MigrateNotDefaultChannel []custom.OK - NotMigrateWithReplaces []custom.PartialComplying - NotMigrateWithReplacesAllHeads []custom.PartialComplying - NotMigrateWithSkips []custom.PartialComplying - NotMigrateWithSkipsRange []custom.PartialComplying - NotMigrateUnknow []custom.PartialComplying + MigrateNotIn49 []custom.Migrated + MigrateNotDefaultChannel []custom.Migrated + NotMigrateWithReplaces []custom.NotMigrated + NotMigrateWithReplacesAllHeads []custom.NotMigrated + NotMigrateWithSkips []custom.NotMigrated + NotMigrateWithSkipsRange []custom.NotMigrated + NotMigrateUnknow []custom.NotMigrated TotalWorking49 int - NotMigratesMix []custom.PartialComplying + NotMigratesMix []custom.NotMigrated } type ItemContact struct { @@ -97,8 +97,8 @@ func main() { } // Packages which has compatible version but none of them will end up on 4.9 - var migrateNotIn49 []custom.OK - for _, v := range apiDashReport.OK { + var migrateNotIn49 []custom.Migrated + for _, v := range apiDashReport.Migrated { foundIn49 := false for _, b := range v.AllBundles { if len(b.KindsDeprecateAPIs) == 0 && (len(b.OCPLabel) == 0 || !pkg.IsOcpLabelRangeLowerThan49(b.OCPLabel)) { @@ -113,8 +113,8 @@ func main() { } // Packages which has compatible version but none of them will end up on 4.9 - var migrateNotDefaultChannel []custom.OK - for _, v := range apiDashReport.OK { + var migrateNotDefaultChannel []custom.Migrated + for _, v := range apiDashReport.Migrated { found := false for _, b := range v.AllBundles { if len(b.KindsDeprecateAPIs) == 0 && b.IsFromDefaultChannel { @@ -129,8 +129,8 @@ func main() { } // Packages which does not nave any compatible version with 4.9 and are using replaces - var notMigrateWithReplaces []custom.PartialComplying - for _, v := range apiDashReport.PartialComplying { + var notMigrateWithReplaces []custom.NotMigrated + for _, v := range apiDashReport.NotMigrated { foundReplace := false headOfChannels := custom.GetHeadOfChannels(v.AllBundles) for _, b := range headOfChannels { @@ -145,8 +145,8 @@ func main() { } } - var notMigrateWithSkips []custom.PartialComplying - for _, v := range apiDashReport.PartialComplying { + var notMigrateWithSkips []custom.NotMigrated + for _, v := range apiDashReport.NotMigrated { foundSkips := false headOfChannels := custom.GetHeadOfChannels(v.AllBundles) for _, b := range headOfChannels { @@ -161,8 +161,8 @@ func main() { } } - var notMigrateWithSkipRange []custom.PartialComplying - for _, v := range apiDashReport.PartialComplying { + var notMigrateWithSkipRange []custom.NotMigrated + for _, v := range apiDashReport.NotMigrated { foundSkipRange := false headOfChannels := custom.GetHeadOfChannels(v.AllBundles) for _, b := range headOfChannels { @@ -177,8 +177,8 @@ func main() { } } - var notMigratesMix []custom.PartialComplying - for _, v := range apiDashReport.PartialComplying { + var notMigratesMix []custom.NotMigrated + for _, v := range apiDashReport.NotMigrated { found := false headOfChannels := custom.GetHeadOfChannels(v.AllBundles) for _, b := range headOfChannels { @@ -193,8 +193,8 @@ func main() { } } - var notMigrateUnknow []custom.PartialComplying - for _, v := range apiDashReport.PartialComplying { + var notMigrateUnknow []custom.NotMigrated + for _, v := range apiDashReport.NotMigrated { found := false headOfChannels := custom.GetHeadOfChannels(v.AllBundles) for _, b := range headOfChannels { @@ -208,8 +208,8 @@ func main() { } } - var notMigrateWithReplacesAllHeads []custom.PartialComplying - for _, v := range apiDashReport.PartialComplying { + var notMigrateWithReplacesAllHeads []custom.NotMigrated + for _, v := range apiDashReport.NotMigrated { notFoundReplace := false headOfChannels := custom.GetHeadOfChannels(v.AllBundles) for _, b := range headOfChannels { @@ -224,8 +224,8 @@ func main() { } } - sort.Slice(apiDashReport.PartialComplying[:], func(i, j int) bool { - return apiDashReport.PartialComplying[i].Name < apiDashReport.PartialComplying[j].Name + sort.Slice(apiDashReport.NotMigrated[:], func(i, j int) bool { + return apiDashReport.NotMigrated[i].Name < apiDashReport.NotMigrated[j].Name }) sort.Slice(migrateNotIn49[:], func(i, j int) bool { return migrateNotIn49[i].Name < migrateNotIn49[j].Name @@ -252,7 +252,7 @@ func main() { return notMigratesMix[i].Name < notMigratesMix[j].Name }) - totalWorking49 := len(apiDashReport.OK) - len(migrateNotIn49) + totalWorking49 := len(apiDashReport.Migrated) - len(migrateNotIn49) reportPath := filepath.Join(currentPath, hack.ReportsPath, "packages") command := exec.Command("mkdir", reportPath) @@ -285,7 +285,7 @@ func main() { // Generate the json files with contacts var all []ItemContact - for _, v := range apiDashReport.PartialComplying { + for _, v := range apiDashReport.NotMigrated { i := ItemContact{Name: v.Name} var emails []string var links []string diff --git a/hack/scripts/packages/template.go.tmpl b/hack/scripts/packages/template.go.tmpl index c006e5f7..b06d1559 100644 --- a/hack/scripts/packages/template.go.tmpl +++ b/hack/scripts/packages/template.go.tmpl @@ -8,7 +8,7 @@ ------------------------------------- Packages which does not nave any compatible version with 4.9 ------------------------------------- -{{ with .APIDashReport.PartialComplying }}{{ range . }}{{ .Name }} +{{ with .APIDashReport.NotMigrated }}{{ range . }}{{ .Name }} {{ end }}{{ end }} ------------------------------------- @@ -67,7 +67,7 @@ Packages which has compatible version but none of them id from the default chann {{ end }}{{ end }} ------------------ Totals ------------------- -- Packages which does not have any compatible version with 4.9 = {{ len .APIDashReport.PartialComplying}} +- Packages which does not have any compatible version with 4.9 = {{ len .APIDashReport.NotMigrated}} - Packages which does not have any compatible version with 4.9 and we found the usage of replaces in at least 1 head of channel = {{ len .NotMigrateWithReplaces}} - Packages which does not have any compatible version with 4.9 and we found the usage of skips in at least 1 head of channel = {{ len .NotMigrateWithSkips}} - Packages which does not have any compatible version with 4.9 and we found the usage of skipsRange in at least 1 head of channel = {{ len .NotMigrateWithSkipsRange}} diff --git a/hack/scripts/validate_deprecate/generate.go b/hack/scripts/validate_deprecate/generate.go new file mode 100644 index 00000000..641a8db4 --- /dev/null +++ b/hack/scripts/validate_deprecate/generate.go @@ -0,0 +1,255 @@ +// 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. + +// Deprecated +// This script is only a helper for we are able to compare to JSON files +// and check what packages were defined in one and are no longer in the other +// one. E.g After send a test to iib I want to know what packages in green +// were in the JSON A which are no longer in its result JSON B +// todo: remove after 4.9-GA + +package main + +import ( + "encoding/json" + "log" + "os" + "path/filepath" + + "github.com/operator-framework/audit/hack" + "github.com/operator-framework/audit/pkg/reports/bundles" + "github.com/operator-framework/audit/pkg/reports/custom" +) + +//nolint:lll +func main() { + + var deprecated = []string{ + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:280bf802843fab435a2946a49324900223f14ae01abbb113624bc056b5ab0188", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:1e1cd6a2950349e3e619e2ffe15cd10d36a5b15e1a9e3b0024bdb11a2355b7ca", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:ea42543f1127fd6ec53cf7f6c7f61f3e0b62f1b210844584d89d60c4bf53fef9", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:75c32ced4add3c6c583daf0bcf81b13cbeb99fd2e24f2c3261fb95ac7bcec4f1", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:c068e6f697764fe0aa82f5572450bbf6cc80d9670a7cb65a8753afa9fa9f8bf6", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:1af785b35226525dc1265123bc274bccb025439ea396e560d0a562791f2c8217", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:3a8c3261d61779907a9a86bb4a2699bd8c60f3ec6466cf6656034b7eda127bc6", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:d97ae02a20eaaa1a0770710a7b5808787d9617ce63c03d3c3f08a11f5bf41aa3", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:e77e15271554a64192f4c80a864efe4f082caeeb94d72f10165beb5cba043ebf", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:c86057b81e3f4a2979f6d5e2ddcbb9fc31549f8d528497a4924e53b26fd75c8c", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:a0a2be3279d03955acf2c2471384c819d45ee765401242eeac20751fe3c835fd", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:76435cfe5728bbcacabb1a444ca45df913a7d5a8541b0cc40496cd11d77865db", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:f02648187cb8cc1c34a6c463ce7f307cab7016da4c06e836971b9bd23d967394", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:9725b91409219faf9e37bab93529ca21bfd209aab3395403866275a3bd08f072", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:510b81899ac25c4318e31a7a44b5c2645fc14e24cc463847f19c5229e8d87c6f", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:5d6c8f7a046eaebd4cee3ad10151bfa3bb176df8e20cd475db66becdcd7356fd", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:4e4fc6cdfec03a175ada82a98044ba6ae80e5d7fc096a24bc5f2977f49d6c70b", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:55906425c2619315d98a9f2b3b014379bfa14875592d18a550a93344097c5496", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:96e323e923dfb556daadc87e990eb89277c21926e56e378bae60bf1d2a46931a", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:adba2e6b585bde1c05d041097a9f19b0753230480032aa44ad1b27fecbf819f5", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:82f8508111f307c25e458a2283e86a21eaeeaa2cd0b335766174f324f6bd392d", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:3560cfe5aa98787496ad1db0440c32a53c9f91ec6bf56fe674b44fcce0913fbc", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:5af9a80acccef3f230dca67538276c3777568cbc98b20d6018c5a9843ab18005", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:2dc9b26f20e89ab7faa9b6a4a4cdf3137061a5115447d0342de268b8fbdd34ad", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:5f9235a715e8091889aff5427683c6a529d222a8126a883da570fb531cb2771b", + "registry.redhat.io/rhacm2/acm-operator-bundle@sha256:1292fa5177f41a96698a37a35a96d61c1e9c85934a71b4fe91ed9416e78658b3", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:ed1658893b5e78ea6d684dac7f237a80eb1a5fe146996c39152c077ea59f0d61", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:6195b018194b457eb6bad2c53381bdfa4d84329e86d561580a63a9c2faab66d9", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:28157b46dcee1e5fffef9260aa9639df03cca2d8e84ccd63bf1fd966c17c10d5", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:f0f899b90e0ab0e9cc9818e4181beccf178543388c14570da0fd8dda0b4abaa9", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:b350796e748ac56aeaf71711f4eaae06d2b9f77fc1c9aeec1680c9ab096e663c", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:609f34c93dfc53fb853c45d395fcb5c07b6d96e7ab075b036c785203415cfc11", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:81fabc8e6bdc05a772fbf4401331e8ccc568593dafada38fff4c8aaf0565ba06", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:e81aac14ba253b4a89370f8aabfebf491f34621cf8d54efd6b8b3796ca8732bb", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:c5b5ba7265c5ac8e77ff9836746a8ac9ca5e1967270adffffdfe32d8a14968cf", + "registry.redhat.io/amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:debf79ef45e0fdd229bdfae29ff9a40926854278b39b4aa0d364f5ae9c02c6dc", + "registry.redhat.io/amq7/amqstreams-rhel7-operator-metadata@sha256:cc19289ff777153ca9ab3cebc45e4c98e9c083437d5e2b6407244aead6e89312", + "registry.redhat.io/amq7/amqstreams-rhel7-operator-metadata@sha256:6ef3bf83ee075cff73ecc2df897d747b6d589df423dcb3ac1f493d1535e627eb", + "registry.redhat.io/amq7/amqstreams-rhel7-operator-metadata@sha256:ec906a4abe8e72844e0fd0ebf0abdc312c0b599e22dc3b7c80b9543cdc76b622", + "registry.redhat.io/amq7/amq-streams-rhel7-operator-metadata@sha256:4ae366be201075ebd86d5bf352d5c77cfa13b8faf5eee5093bfd480ca3a392a2", + "registry.redhat.io/amq7/amq-streams-rhel7-operator-metadata@sha256:e07c00d943b6951f66c2b629f1086fc4357746b09f647856d8802c4fcb4105fc", + "registry.redhat.io/rhpam-7/rhpam-operator-bundle@sha256:df348c6ad999c3be37ab19b3651b5a61ab1fa55f7b2ff02b1fea48bfad69ab4a", + "registry.redhat.io/rhpam-7/rhpam-operator-bundle@sha256:a9d8ced4deb7113de7c97efc226cb9d2ee912be2ce6e67418ddcee423f2a9204", + "registry.redhat.io/rhpam-7/rhpam-operator-bundle@sha256:c119d2dc15f7d0038623fc2d682e513bba0cbbc63e0095ab769bd119faf59b7f", + "registry.redhat.io/rhpam-7/rhpam-operator-bundle@sha256:5929b5d30f2c3c215bf0c3052101b618d1e16c39f8b525a22ceb3541009c1a2c", + "registry.redhat.io/rhpam-7/rhpam-operator-bundle@sha256:3e7da2092cffe5bd2161c98b86e26ce6107248ca52c94a3a333b180f623333de", + "registry.redhat.io/rhpam-7/rhpam-operator-bundle@sha256:8bd9ac4b1ddcc03f2e6beb131bcfaf0f65ba6b90039e7a1af9dda631ae8d37f8", + "registry.redhat.io/rhpam-7/rhpam-operator-bundle@sha256:5a5429d84cc36ce29d95fe86d9b6a9eaef0c3ed3d1925fd9b653904c411cbcb4", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:7b7558c8d9170bd27c9dcf2e62df827d477dbbea694f7040f5cd5bcd0eb598a4", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:af5795b85faa63523353eba59b244b94578eed6ee11d0a4f834e64009395a069", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:aba490f87a1ed4c4a47cb5cb5a82ea1bd67031db0382df400d81e13a125f4aff", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:b9bc3d8fb71df47ef32e4f2c7d74b938887fbe2683b132d76e0215eb6cee4a9a", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:1007e3de27d2235e319c23b08dce4ad83d3569f37fff37ad8174b29909e01f04", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:289f77b62c012b6ef09930acf1466749327ef9a1594eb39e077ff7116f5be73b", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:c48e4c3f85e30ab3a209369f7fd9212d34fbe2b97de5334439b06742e9cdec2a", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:181dc432a5aa228ca57a4c23218391f846284e258f72ed306f15ef884e991ee8", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:496aeecec52b0645cfcaa8b7ee7e71c55f823c7520ce3d2c9238d522c17a6e98", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:357f830568a690ea194acdf2b1c5d66b54b10bf1a0dc58d1e771454692dc2270", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:69761d7600d9602fd89f600d9670156e71f68c82802578b0db729cfa0087c89b", + "registry.redhat.io/codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:080bc58804ca40380c5ed58a5bbdd5fe035fed84a07e58d1c590e06695bbb720", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:7dd45b30f4ffc76846fb6841317c91d6c414b78e0ce10d64f8673447ac2a9066", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:7765bf223baf3e6fd3f5db725586888874280812f017bb01c0bd7714a8bab336", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:8a958713ec2b1f484a688b9dbab0158c6753d59b37dc41075c86dabe6c4eea56", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:7c133eb164050d4e13ff1edbf30394d34b985c313a8b2a333d6ac54e05b66889", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:14fd60e0b98aa6eceec076f5ca340610ff3f9e61a70ff6ebff3da3cc7f855514", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:eee656a31b8ef822fca8c25cc4d5efe11a07090d32410b3a016dd9204fa79247", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:c503cc820237d2aaaf4fa42145e05b3d49645485d343f0c0fa87baa6242a9fd1", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:cc0bb4989fe0e7107d07bcec39e5595291152d602652aa9b6d2a3b7fb24f86c4", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:ec6fd022c1d740c86ee449b1c29817bcf8a7002f62e8c95167b961f6a74a1730", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:37e5af4cf83db8ab63e6e6ddd39aa06100d2fc4110705e88ac9afb3a7abc15c4", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:17009de2d5a855a4570defc332378ce042630784bd29006740d34c435af9008c", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:fe608b121e62e77c39fc6abeb13d1618f2d593811f962e8e3ce477d927c821f1", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:b35b91095373da362968febdfe8d977930d4046e6cd3798960544ada025a665a", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:305c3e345af6adb5ad16c27035c7d4dd42f878dc566184946ce8e403bc83729b", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:52a65c00fed258ec9443c561f71acfdafc1891410451e7ea5a0ea55b72248430", + "registry.redhat.io/datagrid/datagrid-8-prod-operator-bundle@sha256:517964e827e483f7bd2af4ed60bd23356f4a5d296b1401a14fac03ba7ec8619b", + "registry.redhat.io/fuse7/fuse-console-operator-bundle@sha256:5e3e9d565510c1a12351f89f912e21f318ee0d7ed52fc8cca6051a6dbf3a6e6d", + "registry.redhat.io/fuse7/fuse-console-rhel7-operator-metadata@sha256:d207bf3721bdfb6d4d90cda5245b3c49cedef0ba2a308ed64cd00aa6fea7b152", + "registry.redhat.io/fuse7/fuse-online-operator-bundle@sha256:93d12b2fc2a2e0263890529e227dcb9e37172139f63a95d39b1dce4f19cee39c", + "registry.redhat.io/fuse7/fuse-online-operator-bundle@sha256:0161c67a3c6be92306f68c2a3b7d9ce3edcf57fdeb1bf2843f988cc85fefc89b", + "registry.redhat.io/distributed-tracing/jaeger-operator-bundle@sha256:57ce6dfb43fc6d39024f56b1f9d5a3e05be91960d83c19e7a7a43f0af34c3442", + "registry.redhat.io/distributed-tracing/jaeger-operator-bundle@sha256:ff3ab762bd6d0d9f2cdbe44abf2c0ca39c248e8588e6d4fdf56e49b50bb98d08", + "registry.redhat.io/distributed-tracing/jaeger-operator-bundle@sha256:1760d894216cd496083f3ccf5bdb44f313d04ef9cedff601b637e3f078cf92a9", + "registry.redhat.io/distributed-tracing/jaeger-operator-bundle@sha256:2d3b46a96af8b2455bb614ee6db92516a6d9d94e31fe6076acb6e9524c1cb25b", + "registry.redhat.io/rhacm2/klusterlet-operator-bundle@sha256:58b7976358bd5b30958602c820c5d3b0ba136e65fd7424ce92d23801dbd0976f", + "registry.redhat.io/rhacm2/klusterlet-operator-bundle@sha256:dd102ee9ec3a32312e63309e5cd5526e8eb1eb7e7b5ee299b95302618c00a0cb", + "registry.redhat.io/rhacm2/klusterlet-operator-bundle@sha256:d3b166fed222fbbcfe70e7a3872e8c1ac02a5ccd2cbf8585bedd29c005f6a16d", + "registry.redhat.io/rhacm2/klusterlet-operator-bundle@sha256:33651be7274ff2cd66c9e23e7eb20d5d5ca9649aed6777bb8b0ec03dfc8b0707", + "registry.redhat.io/rhacm2/klusterlet-operator-bundle@sha256:e5a7688faeb49b5ba135fb37251926c9d6c877c0793a1d88a786f0cd2efb03c1", + "registry.redhat.io/rhacm2/klusterlet-operator-bundle@sha256:91e79536fefd2f5f6d4dde0a46441fa610c410c721bdfbc3f804da5e2e8c77ee", + "registry.redhat.io/rhacm2/klusterlet-operator-bundle@sha256:5524fe5d379b9fd4351243ccd3c0acffef58055e0782a527a90fdd711e8d5044", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:3e26ec915e2b9b21300d384594223ec3db3e885a627ee433df80ac9b04a5da75", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:307e78697fa8546af3c965feda55b3499a6db0c10612812ad849221b4d450534", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:039844b547e6e28f5e24b8d0caf9d26bc04ff61f44e3b3a5a6b4e6e5d4748293", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:ca5315dec677075a643cd009dfbe768eb6d1dea941e41e3b7ea88d1a430c2fae", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:5128091ce8551d630ba7afb4723d9433da3cb09f99eb06b1dbc4fee490faa612", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:096949be81c57a0f2d6834c6dbd3a39f8464d7687115da5824dd3acb58bf4bcd", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:1cd80adae36f3ceae5b8f3703d5761e82c1a5ed364b5f771f537dd6090d1c5a7", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:546e4497d96fd0ef834acbe7dae2c7383d2e5325b14cdaec2e631560d102720f", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:9811228cf63e2d85529410c0fcaa36999a25dcede649dc4d7d809b98b0a1c332", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:90a1f9a2db2b0d1ac78586e79dd0ea3e1ca0a20300e4da95118d0bb77271b39b", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:76402738a5a52397b164aa85850df9d5ffa446a2be4b0956d30120c1eade0848", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:4ed94efd3ddf14dc111a473c891469f7251cd94ccf2046c96524d17ca82c6602", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:1d08941f581ce9c39fde20ca1d6e17b2732b78504cd490ccaddc75e5db144a08", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:e99ff69879859d0bf689e052839c47d95e47da44926f86240d8f833858af77a2", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:6639ea7b8cf2d0f4a1df71116525c3383c9a55962403fee4bae461e1095d3718", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:37bbf59bce47d6d469b908003f8545b4e2c87b52b274da59daa1993a22fe5591", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:23dee295d93e7e917cefdbf0a6933bcf6136d0f44d723f03f0e533990ca8f14e", + "registry.redhat.io/container-native-virtualization/hco-bundle-registry@sha256:4a64b511e6d455bc5bcbd821456b1f089cec9f902d90289dd89b8a923b09d803", + "registry.redhat.io/openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:0f4b4082d0b087da0a56cf43ce17763925ac2bca743bf1ef164a38375ae3c5a4", + "registry.redhat.io/integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:7290c901a716ce5285659c69cc212f678f5e5c203fbdfef062307eb9aa8eb8ce", + "registry.redhat.io/integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:684bd0865612137b06177054af618ac1cb800ec9e9f4fa08824068e71e5deb37", + "registry.redhat.io/integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:bd035c4c61c5dd8a7e8b9420a296733c5c410aea5bf993f973d61dcb2042e998", + "registry.redhat.io/integration/camel-k-rhel8-operator-bundle@sha256:d133ea9aa66646d493443dcabccebcbdb1e7a70dd84939ed772e912f4b3090b5", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:b1f90409e146f456c35927db9fa03681a06bc6588993820b5e7f23f41bcdd13d", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:647cf102d13ef1e4db397f3f4a661ba18874ced4fe8a898872826d4cefe425e6", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:864547fac0966a74c2e1642bf7f4718fb8e449a094511df0dc0ae9a7119caf29", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:b494c1eb911e7949218ae8851b3df4d6d1c82c30249b032a16410e95b22b1425", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:c7ae914f498df12fae7e2b4ceed55ccea5047af7e0328ca480c8ec898d2e0d90", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:781665631ab00e0c1a68b932624d84da76b65e3f140cb6561084ce7b5d0b68ca", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:4084782075db365dc60e1cd142e60d699f2a5c28d7ed4c414b3fef5e79529cac", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:f51bf79d93c571064a8038cd7ab40ced67ab87d5e0063afe3dda47935cb1eda6", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:bb0f2c2f421501e12d559ae7d9247d084d020ec5a78c1b42f065edbccf45d69e", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:0ac3c8490a5426c9e0ffe5d48823108b122420b6991c08d342ccab1ac7559f21", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:262beb6c4826ce26a43cafd2962ac058c6053606afeb64132e031188e6d7f929", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:c55434f36e23c9e1edcc6e5dbc843c380745227cb7a0dcea38c34e94e616640a", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:c1cb56d6188bf6622bdb05af087092ed9dbe3cc92645cba3e6289bb7d7eab7a1", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:dcc60de51a12452dd1e470710daf2312917b720c2f5ced8874d4595d8760afb0", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:7b43ec0c862eae649975e119bb122cc631be80ac117631dd4d3a31c761aa5810", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:e30456268966cc10cf3648c386f680f728541cfd522123e59ed276e8e4bed55c", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:3747ebff5550e9c04abb0f9f1909e9df9c0dd7b85a791994248a29a7f399e199", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:70bb9a7a04774ff386c44889ba94811ac49829822aadd0970b1a55178afdb60f", + "registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator@sha256:7ff51fbfc38689b72ad6c8591a8c7d21b32f48da3a6ca0ed27c3dc08af1a1738", + "registry.redhat.io/openshift-serverless-1/serverless-operator-bundle@sha256:f950157a8497edec98f412904ea80359f5b081873b5a79e72289d8db175e6da0", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:49b50e2b4cfe341a30f6d4f8e8a6d411da7926335bd22a2397ba37acaf1ce756", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:39b0ba26ea73c6ba54c8ce0c86c2563a3284e5690f091a0536c9722e4f11d62a", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:31c7dd275bc4c2b0d9ead9c2002963485791b279a90174191826236ac624a44b", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:720fd4d865f4e4a404d9a7846d5608b87d540f87a49cb5161ce383be0233d4b4", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:a4f5b333f7009001bc27849f752aaf71daf03a534e65b59b88463e2b8ddce8f4", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:6269cb4e07a545c4b06557e7a3f3e6969c51cbc4fb13efcd593b4c045207bd06", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:a21153027b7a1146752cabb02f53bd2e7f5b72af3af38bd822e214e83e046f31", + "registry.redhat.io/integration/service-registry-rhel8-operator-metadata@sha256:23a0dbbfc55ab4bd141412f0e0314fc2f11b828ab0fd533378b087282f538176", + } + + jsonFinalResult := "bundles_registry_proxy.engineering.redhat.com_rh_osbs_iib@sha256_5c0c280be1aa65cf5649894e26b64840cdadaf71762b287b2c0f7c6d5ee6d4a4_2021-09-07.json" + + file := filepath.Join(jsonFinalResult) + + apiDashReportFinalResult, err := getAPIDashForImage(file) + if err != nil { + log.Fatal(err) + } + + // Get all and check if has any bundle that was configured to be deprecated + // that was not. + var notDeprecated []bundles.Column + for _, v := range apiDashReportFinalResult.Migrated { + for _, i := range v.AllBundles { + for _, setToDeprecate := range deprecated { + if i.BundleImagePath == setToDeprecate && !i.IsDeprecated { + notDeprecated = append(notDeprecated, i) + break + } + } + } + } + for _, v := range apiDashReportFinalResult.NotMigrated { + for _, i := range v.AllBundles { + for _, setToDeprecate := range deprecated { + if i.BundleImagePath == setToDeprecate && !i.IsDeprecated { + notDeprecated = append(notDeprecated, i) + break + } + } + } + } + + currentPath, err := os.Getwd() + if err != nil { + log.Fatal(err) + } + + reportPath := filepath.Join(currentPath) + + // Creates the compare.json with all packages and bundles data that were + // in the origin and are no longer in the result + fp := filepath.Join(reportPath, "compare.json") + f, err := os.Create(fp) + if err != nil { + log.Fatal(err) + } + + defer f.Close() + + jsonResult, err := json.MarshalIndent(notDeprecated, "", "\t") + if err != nil { + log.Fatal(err) + } + + err = hack.ReplaceInFile(fp, "", string(jsonResult)) + if err != nil { + log.Fatal(err) + } +} + +func getAPIDashForImage(image string) (*custom.APIDashReport, error) { + // Update here the path of the JSON report for the image that you would like to be used + custom.Flags.File = image + + bundlesReport, err := custom.ParseBundlesJSONReport() + if err != nil { + log.Fatal(err) + } + + apiDashReport := custom.NewAPIDashReport(bundlesReport) + return apiDashReport, err +} diff --git a/index.html b/index.html index 08b30ca0..98de5182 100644 --- a/index.html +++ b/index.html @@ -52,6 +52,8 @@

quay.io/operatorhubio/catalog

  • [Grade - Experimental] - Tag: latest
  • +
  • [Max OCP Version - Monitor] - Tag: latest
  • + @@ -69,6 +71,14 @@

    registry.redhat.io/redhat/certified-operator-inde
  • [Grade - Experimental] - Tag: 4.9
  • +
  • [Max OCP Version - Monitor] - Tag: 4.6
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.7
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.8
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.9
  • + @@ -82,6 +92,12 @@

    registry.redhat.io/redhat/community-operator-inde
  • [Deprecated API(s) in 1.22/OCP 4.9] - Tag: 4.8
  • +
  • [Max OCP Version - Monitor] - Tag: 4.6
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.7
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.8
  • + @@ -99,6 +115,14 @@

    registry.redhat.io/redhat/redhat-marketplace-inde
  • [Grade - Experimental] - Tag: 4.9
  • +
  • [Max OCP Version - Monitor] - Tag: 4.6
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.7
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.8
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.9
  • + @@ -116,6 +140,14 @@

    registry.redhat.io/redhat/redhat-operator-index[Grade - Experimental] - Tag: 4.9 +
  • [Max OCP Version - Monitor] - Tag: 4.6
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.7
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.8
  • + +
  • [Max OCP Version - Monitor] - Tag: 4.9
  • + diff --git a/pkg/reports/bundles/columns.go b/pkg/reports/bundles/columns.go index 0a598dc7..330460fe 100644 --- a/pkg/reports/bundles/columns.go +++ b/pkg/reports/bundles/columns.go @@ -39,7 +39,7 @@ const skipRangeAnnotation = "olm.skipRange" const sdkProjectLayoutAnnotation = "operators.operatorframework.io/project_layout" const infrastructureAnnotation = "operators.openshift.io/infrastructure-features" const olmproperties = "olm.properties" -const olmpdeprecate = "olm.deprecate" +const olmpdeprecate = "olm.deprecated" const olmmaxOpenShiftVersion = "olm.maxOpenShiftVersion" type Column struct { diff --git a/pkg/reports/custom/custom_helpers.go b/pkg/reports/custom/custom_helpers.go index e73a1cde..d4c63191 100644 --- a/pkg/reports/custom/custom_helpers.go +++ b/pkg/reports/custom/custom_helpers.go @@ -59,21 +59,14 @@ func GetTheLatestBundleVersion(bundlesFromChannel []bundles.Column) string { } // GetHeadOfChannelState returns the qtd. of head of channels which are OK and configured with max ocp version -func GetHeadOfChannelState(headOfChannels []bundles.Column) (int, int) { - var foundOK = 0 - var foundConfiguredAccordingly = 0 +func GetHeadOfChannelState(headOfChannels []bundles.Column) bool { for _, v := range headOfChannels { // In this case has a valid path - if len(v.KindsDeprecateAPIs) == 0 { - foundOK++ - } - // in this case will block the cluster upgrade at least - if (len(v.KindsDeprecateAPIs) > 0 && pkg.IsMaxOCPVersionLowerThan49(v.MaxOCPVersion)) || - (len(v.KindsDeprecateAPIs) > 0 && pkg.IsOcpLabelRangeLowerThan49(v.OCPLabel)) { - foundConfiguredAccordingly++ + if len(v.KindsDeprecateAPIs) == 0 && !v.IsDeprecated { + return true } } - return foundOK, foundConfiguredAccordingly + return false } // BuildMapBundlesPerChannels returns a map of bundles per packages diff --git a/pkg/reports/custom/deprecate_rules.go b/pkg/reports/custom/deprecate_rules.go index 775ce25f..070909c5 100644 --- a/pkg/reports/custom/deprecate_rules.go +++ b/pkg/reports/custom/deprecate_rules.go @@ -18,19 +18,6 @@ import ( "github.com/operator-framework/audit/pkg/reports/bundles" ) -// (Amber) Partial complying -// if is not read or green then fail in the amber scenarios -func MapPkgsPartiallComplyingWithDeprecatedAPI122(mapPackagesWithBundles map[string][]bundles.Column, - complying map[string][]bundles.Column, notComplying map[string][]bundles.Column) map[string][]bundles.Column { - partialComplying := make(map[string][]bundles.Column) - for key := range mapPackagesWithBundles { - if !(len(complying[key]) > 0 || len(notComplying[key]) > 0) { - partialComplying[key] = mapPackagesWithBundles[key] - } - } - return partialComplying -} - // (Green) Complying // If is not using deprecated API(s) at all in the head channels // If has at least one channel head which is compatible with 4.9 (migrated) @@ -39,8 +26,6 @@ func MapPkgsComplyingWithDeprecateAPI122( mapPackagesWithBundles map[string][]bundles.Column) map[string][]bundles.Column { complying := make(map[string][]bundles.Column) for key, bundlesPerPkg := range mapPackagesWithBundles { - headOfChannels := GetHeadOfChannels(bundlesPerPkg) - foundOK, foundConfiguredAccordingly := GetHeadOfChannelState(headOfChannels) // has bundlesPerPkg that we cannot find the package // some inconsistency in the index db. // So, this scenario can only be added to the complying if all is migrated @@ -51,41 +36,13 @@ func MapPkgsComplyingWithDeprecateAPI122( continue } - qtdHeads := len(headOfChannels) - if qtdHeads == foundOK || (foundOK > 0 && qtdHeads == foundOK+foundConfiguredAccordingly) { + if hasMigrated(bundlesPerPkg) { complying[key] = mapPackagesWithBundles[key] } } return complying } -// (Red) Not complying -// That are the packages which has none head channels compatible with 4.9 and/or configured accordingly -// with max ocp version set -func MapPkgsNotComplyingWithDeprecateAPI122( - mapPackagesWithBundles map[string][]bundles.Column) map[string][]bundles.Column { - notComplying := make(map[string][]bundles.Column) - - for key, bundlesPerPkg := range mapPackagesWithBundles { - headOfChannels := GetHeadOfChannels(bundlesPerPkg) - foundOK, foundConfiguredAccordingly := GetHeadOfChannelState(headOfChannels) - // has bundlesPerPkg that we cannot find the package - // some inconsistency in the index db. - // So, this scenario can only be added to the complying if all is migrated - if key == "" { - if hasNotMigrated(bundlesPerPkg) { - notComplying[key] = mapPackagesWithBundles[key] - } - continue - } - - if foundOK == 0 && foundConfiguredAccordingly == 0 { - notComplying[key] = mapPackagesWithBundles[key] - } - } - return notComplying -} - func hasNotMigrated(bundlesPerPkg []bundles.Column) bool { foundNotMigrated := false for _, v := range bundlesPerPkg { @@ -96,3 +53,12 @@ func hasNotMigrated(bundlesPerPkg []bundles.Column) bool { } return foundNotMigrated } + +func hasMigrated(bundlesPerPkg []bundles.Column) bool { + for _, v := range bundlesPerPkg { + if v.KindsDeprecateAPIs == nil || len(v.KindsDeprecateAPIs) < 1 { + return true + } + } + return false +} diff --git a/pkg/reports/custom/deprecated_api_report.go b/pkg/reports/custom/deprecated_api_report.go index 48b7a9bd..4a7c62ae 100644 --- a/pkg/reports/custom/deprecated_api_report.go +++ b/pkg/reports/custom/deprecated_api_report.go @@ -22,16 +22,7 @@ import ( "github.com/operator-framework/audit/pkg/reports/bundles" ) -type PartialComplying struct { - Name string - Kinds []string - Channels []string - Bundles []string - BundlesMigrated []string - AllBundles []bundles.Column -} - -type OK struct { +type Migrated struct { Name string Kinds []string Bundles []string @@ -40,7 +31,7 @@ type OK struct { AllBundles []bundles.Column } -type NotComplying struct { +type NotMigrated struct { Name string Kinds []string Channels []string @@ -50,17 +41,17 @@ type NotComplying struct { } type APIDashReport struct { - ImageName string - ImageID string - ImageHash string - ImageBuild string - NotComplying []NotComplying - PartialComplying []PartialComplying - GeneratedAt string - OK []OK + ImageName string + ImageID string + ImageHash string + ImageBuild string + Migrated []Migrated + NotMigrated []NotMigrated + GeneratedAt string } // NewAPIDashReport returns the structure to render the Deprecate API custom dashboard +// nolint:dupl func NewAPIDashReport(bundlesReport bundles.Report) *APIDashReport { apiDash := APIDashReport{} apiDash.ImageName = bundlesReport.Flags.IndexImage @@ -69,25 +60,17 @@ func NewAPIDashReport(bundlesReport bundles.Report) *APIDashReport { apiDash.GeneratedAt = bundlesReport.GenerateAt mapPackagesWithBundles := MapBundlesPerPackage(bundlesReport) - notComplying := MapPkgsNotComplyingWithDeprecateAPI122(mapPackagesWithBundles) - complying := MapPkgsComplyingWithDeprecateAPI122(mapPackagesWithBundles) - partialComplying := MapPkgsPartiallComplyingWithDeprecatedAPI122(mapPackagesWithBundles, complying, notComplying) - - for k, bundles := range complying { - kinds, channels, bundlesNotMigrated, bundlesMigrated := getReportValues(bundles) - apiDash.OK = append(apiDash.OK, OK{ - Name: k, - Kinds: pkg.GetUniqueValues(kinds), - Channels: pkg.GetUniqueValues(channels), - Bundles: bundlesNotMigrated, - BundlesMigrated: bundlesMigrated, - AllBundles: bundles, - }) + migrated := MapPkgsComplyingWithDeprecateAPI122(mapPackagesWithBundles) + notMigrated := make(map[string][]bundles.Column) + for key := range mapPackagesWithBundles { + if len(migrated[key]) == 0 { + notMigrated[key] = mapPackagesWithBundles[key] + } } - for k, bundles := range notComplying { + for k, bundles := range migrated { kinds, channels, bundlesNotMigrated, bundlesMigrated := getReportValues(bundles) - apiDash.NotComplying = append(apiDash.NotComplying, NotComplying{ + apiDash.Migrated = append(apiDash.Migrated, Migrated{ Name: k, Kinds: pkg.GetUniqueValues(kinds), Channels: pkg.GetUniqueValues(channels), @@ -97,9 +80,9 @@ func NewAPIDashReport(bundlesReport bundles.Report) *APIDashReport { }) } - for k, bundles := range partialComplying { + for k, bundles := range notMigrated { kinds, channels, bundlesNotMigrated, bundlesMigrated := getReportValues(bundles) - apiDash.PartialComplying = append(apiDash.PartialComplying, PartialComplying{ + apiDash.NotMigrated = append(apiDash.NotMigrated, NotMigrated{ Name: k, Kinds: pkg.GetUniqueValues(kinds), Channels: pkg.GetUniqueValues(channels), @@ -108,6 +91,7 @@ func NewAPIDashReport(bundlesReport bundles.Report) *APIDashReport { AllBundles: bundles, }) } + return &apiDash } diff --git a/pkg/reports/custom/flags.go b/pkg/reports/custom/flags.go index 1e20eede..e912c1e3 100644 --- a/pkg/reports/custom/flags.go +++ b/pkg/reports/custom/flags.go @@ -17,6 +17,7 @@ package custom // BindFlags define the Flags used to generate the bundle report type BindFlags struct { File string `json:"file"` + Template string `json:"template"` OutputPath string `json:"outputPath"` } diff --git a/pkg/reports/custom/grade_report.go b/pkg/reports/custom/grade_report.go index bc0e5eaa..54097c76 100644 --- a/pkg/reports/custom/grade_report.go +++ b/pkg/reports/custom/grade_report.go @@ -25,9 +25,6 @@ import ( // nolint:golint const DEPRECATED_API_NOT_COMPLY = "NOT COMPLY" -// nolint:golint -const DEPRECATED_API_PARTIAL_COMPLY = "PARTIAL COMPLY" - // nolint:golint const DEPRECATED_API_COMPLY = "COMPLY" @@ -58,14 +55,13 @@ const ERRORS = "ONLY ERRORS" // DisconnectedAnnotation and SDK USAGE max total : 100 // total : 1100 var scoreMap = map[string]int{ - DEPRECATED_API_COMPLY: 400, - DEPRECATED_API_PARTIAL_COMPLY: 100, - DEPRECATED_API_NOT_COMPLY: 0, - PASS: 200, - WARNINGS: 100, - FOUND: 100, - USED: 100, - NOT_USED: 0, + DEPRECATED_API_COMPLY: 400, + DEPRECATED_API_NOT_COMPLY: 0, + PASS: 200, + WARNINGS: 100, + FOUND: 100, + USED: 100, + NOT_USED: 0, } const RED = "red" @@ -147,15 +143,19 @@ func NewGradeReport(bundlesReport bundles.Report) *GradeReport { gradeReport.GeneratedAt = bundlesReport.GenerateAt mapPackagesWithBundles := MapBundlesPerPackage(bundlesReport) - notComplying := MapPkgsNotComplyingWithDeprecateAPI122(mapPackagesWithBundles) - complying := MapPkgsComplyingWithDeprecateAPI122(mapPackagesWithBundles) - partialComplying := MapPkgsPartiallComplyingWithDeprecatedAPI122(mapPackagesWithBundles, complying, notComplying) + migrated := MapPkgsComplyingWithDeprecateAPI122(mapPackagesWithBundles) + notMigrated := make(map[string][]bundles.Column) + for key := range mapPackagesWithBundles { + if len(migrated[key]) == 0 { + notMigrated[key] = mapPackagesWithBundles[key] + } + } for key, bds := range mapPackagesWithBundles { if len(key) == 0 { continue } - pkgGrade := NewPkgGrade(key, bds, notComplying, partialComplying, complying) + pkgGrade := NewPkgGrade(key, bds, notMigrated, migrated) gradeReport.PackageGrade = append(gradeReport.PackageGrade, pkgGrade) } @@ -163,7 +163,7 @@ func NewGradeReport(bundlesReport bundles.Report) *GradeReport { } func NewPkgGrade(pkgName string, bundlesOfPkg []bundles.Column, - notComplying, partialComplying, complying map[string][]bundles.Column) PackageGrade { + notMigrated, migrated map[string][]bundles.Column) PackageGrade { pkgGrade := PackageGrade{PackageName: pkgName} @@ -177,7 +177,7 @@ func NewPkgGrade(pkgName string, bundlesOfPkg []bundles.Column, pkgGrade.HeadOfChannels = GetHeadOfChannels(bundlesOfPkg) - pkgGrade.checkDeprecatedAPIScore(notComplying, partialComplying, complying) + pkgGrade.checkDeprecatedAPIScore(notMigrated, migrated) pkgGrade.checkDisconnectAnnotationScore() pkgGrade.checkScorecardScore() pkgGrade.checkValidatorsScore() @@ -197,18 +197,13 @@ func NewPkgGrade(pkgName string, bundlesOfPkg []bundles.Column, return pkgGrade } -func (p *PackageGrade) checkDeprecatedAPIScore(notComplying map[string][]bundles.Column, - partialComplying map[string][]bundles.Column, - complying map[string][]bundles.Column) { - if notComplying[p.PackageName] != nil { +func (p *PackageGrade) checkDeprecatedAPIScore(notMigrated map[string][]bundles.Column, + migrated map[string][]bundles.Column) { + if notMigrated[p.PackageName] != nil { p.DeprecateAPI = DEPRECATED_API_NOT_COMPLY - p.DeprecateAPIColor = RED - p.Score += scoreMap[DEPRECATED_API_NOT_COMPLY] - } else if partialComplying[p.PackageName] != nil { - p.DeprecateAPI = DEPRECATED_API_PARTIAL_COMPLY p.DeprecateAPIColor = YELLOW - p.Score += scoreMap[DEPRECATED_API_PARTIAL_COMPLY] - } else if complying[p.PackageName] != nil { + p.Score += scoreMap[DEPRECATED_API_NOT_COMPLY] + } else if migrated[p.PackageName] != nil { p.DeprecateAPI = DEPRECATED_API_COMPLY p.DeprecateAPIColor = GREEN p.Score += scoreMap[DEPRECATED_API_COMPLY] diff --git a/pkg/reports/custom/maxocp_api_report.go b/pkg/reports/custom/maxocp_api_report.go new file mode 100644 index 00000000..39def9b8 --- /dev/null +++ b/pkg/reports/custom/maxocp_api_report.go @@ -0,0 +1,123 @@ +// 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 custom + +import ( + "github.com/operator-framework/audit/pkg" + "github.com/operator-framework/audit/pkg/reports/bundles" +) + +type OK struct { + Name string + Kinds []string + Bundles []string + Channels []string + BundlesMigrated []string + AllBundles []bundles.Column +} + +type NotOK struct { + Name string + Kinds []string + Channels []string + Bundles []string + BundlesMigrated []string + AllBundles []bundles.Column +} + +type MaxDashReport struct { + ImageName string + ImageID string + ImageHash string + ImageBuild string + OK []OK + NotOK []NotOK + GeneratedAt string +} + +// NewAPIDashReport returns the structure to render the Deprecate API custom dashboard +// nolint:dupl +func NewMaxDashReport(bundlesReport bundles.Report) *MaxDashReport { + apiDash := MaxDashReport{} + apiDash.ImageName = bundlesReport.Flags.IndexImage + apiDash.ImageID = bundlesReport.IndexImageInspect.ID + apiDash.ImageBuild = bundlesReport.IndexImageInspect.Created + apiDash.GeneratedAt = bundlesReport.GenerateAt + + mapPackagesWithBundles := MapBundlesPerPackage(bundlesReport) + isOK := mapPkgsComplyingMaxOcpVersion(mapPackagesWithBundles) + isNotOK := make(map[string][]bundles.Column) + for key := range mapPackagesWithBundles { + if len(isOK[key]) == 0 { + isNotOK[key] = mapPackagesWithBundles[key] + } + } + + for k, bundles := range isOK { + kinds, channels, bundlesNotMigrated, bundlesMigrated := getReportValues(bundles) + apiDash.OK = append(apiDash.OK, OK{ + Name: k, + Kinds: pkg.GetUniqueValues(kinds), + Channels: pkg.GetUniqueValues(channels), + Bundles: bundlesNotMigrated, + BundlesMigrated: bundlesMigrated, + AllBundles: bundles, + }) + } + + for k, bundles := range isNotOK { + kinds, channels, bundlesNotMigrated, bundlesMigrated := getReportValues(bundles) + apiDash.NotOK = append(apiDash.NotOK, NotOK{ + Name: k, + Kinds: pkg.GetUniqueValues(kinds), + Channels: pkg.GetUniqueValues(channels), + Bundles: bundlesNotMigrated, + BundlesMigrated: bundlesMigrated, + AllBundles: bundles, + }) + } + + return &apiDash + +} + +// (Green) Complying +// Return all pkgs that has all bundles using the removed APIs set with max ocp version +func mapPkgsComplyingMaxOcpVersion( + mapPackagesWithBundles map[string][]bundles.Column) map[string][]bundles.Column { + complying := make(map[string][]bundles.Column) + for key, bundlesPerPkg := range mapPackagesWithBundles { + // has bundlesPerPkg that we cannot find the package + // some inconsistency in the index db. + // So, we will ignore this cases + if key == "" { + continue + } + + if !hasWrongMaxOcpVersion(bundlesPerPkg) { + complying[key] = mapPackagesWithBundles[key] + } + } + return complying +} + +func hasWrongMaxOcpVersion(bundlesPerPkg []bundles.Column) bool { + for _, v := range bundlesPerPkg { + if v.KindsDeprecateAPIs != nil && len(v.KindsDeprecateAPIs) > 0 && !pkg.IsMaxOCPVersionLowerThan49(v.MaxOCPVersion) { + return true + } + } + return false +} diff --git a/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2021-09-06.html b/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2021-09-06.html index ee1d1787..ee59918e 100644 --- a/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2021-09-06.html +++ b/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2021-09-06.html @@ -102,15 +102,14 @@

    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
    - +
    -
    Not complying with the recommendations
    - +
    Using deprecated APIs
    +
    @@ -124,14 +123,46 @@
    Not complying with the recommendations
    - + + + + + + + + + + + + + + + + + - + + + + + + + + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + + + + + + + + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + + - - + - + + - - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + + - - + - + + - - + - - + + - + - - + + - + - - + + - + - - + + - + - + + + + + + + + + - + - - + + - + - + + - - + - - + + - + - + + - - + - - + + - + - + + - - + - - + + - + - + + - - + - - + + - - - - - - - - - - + + - + - - + + - - - - - - - - - - + + - - - - - - - - - - + + - + - + + - - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - - - - - - - - - - + + - + - - + + - + - - + + - + - + + + + + + + + + - + - + + - - + - + + + + + + + + + - + - + + + + + + + + + - + - + + + + + + + + + - + - + + - - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + + - - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + + - - + - - + + - + - + + - - + - - + + - + - - + + - + - + + + + + + + + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + + - - + - - + + - + - - + + - + - - + + - + - - + + - + - + + - - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + + - - - - - - - - - - - - - - - - - - - - - - - - -
    Package Name
    event-streams-topicprometheus-exporter-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • 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)
    • + +
    +
    +
      + +
    +
    radanalytics-spark +
      + +
    • CRD
    • + +
    +
      @@ -139,31 +170,119 @@
      Not complying with the recommendations
    +
      + +
    • sparkoperator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    appsody-operator +
      + +
    • CRD
    • + +
    +
    -
      - -
    • 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)
    • - -
    +
      + +
    • 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)
    • + +
    +
    +
      +
    couchdb-operatoropen-liberty +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • beta
    • + +
    • alpha
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    couchdb-operator +
      + +
    • CRD
    • + +
    +
      @@ -183,25 +302,25 @@
      Not complying with the recommendations
    -
      - -
    • 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.2 - (label=,max=not set,channels=[beta stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.3 - (label=,max=not set,channels=[beta stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.4 - (label=,max=not set,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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.2 - (label=,max=not set,channels=[beta stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.3 - (label=,max=not set,channels=[beta stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.4 - (label=,max=not set,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -210,14 +329,14 @@
      Not complying with the recommendations
    falco -
      - -
    • CRD
    • - -
    -
    minio-operator +
      + +
    • CRD
    • + +
    +
      @@ -225,15 +344,13 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • minio-operator.v1.0.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -242,42 +359,28 @@
      Not complying with the recommendations
    apicast-community-operator -
      - -
    • CRD
    • - -
    -
    ibm-quantum-operator +
      + +
    • CRD
    • + +
    +
    • 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)
    • - -
    -
    +
      + +
    • ibm-quantum-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -286,28 +389,32 @@
      Not complying with the recommendations
    portworx-essentials -
      - -
    • CRD
    • - -
    -
    ember-csi-operator +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • beta
    -
      - -
    • portworx-essentials.v1.3.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -316,14 +423,16 @@
      Not complying with the recommendations
    argocd-operator -
      - -
    • CRD
    • - -
    -
    qserv-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
      @@ -331,35 +440,19 @@
      Not complying with the recommendations
    -
      - -
    • 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:YES,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)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -368,14 +461,44 @@
      Not complying with the recommendations
    vault-helmkube-arangodb +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • stable
    +
      + +
    • kube-arangodb.v1.0.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cassandra-operator +
      + +
    • CRD
    • + +
    +
      @@ -383,15 +506,13 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • cassandra-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -400,32 +521,28 @@
      Not complying with the recommendations
    tidb-operator -
      - -
    • CRD
    • - -
    -
    postgresql-operator-dev4devs-com +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • postgresql-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -434,28 +551,28 @@
      Not complying with the recommendations
    robin-operator -
      - -
    • CRD
    • - -
    -
    chaosblade-operator +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • alpha
    -
      - -
    • robin-operator.v5.3.2-59 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • chaosblade-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -464,14 +581,14 @@
      Not complying with the recommendations
    instana-agent -
      - -
    • CRD
    • - -
    -
    kom-operator +
      + +
    • CRD
    • + +
    +
      @@ -479,57 +596,13 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -538,36 +611,40 @@
      Not complying with the recommendations
    traefikee-operator -
      - -
    • CRD
    • - -
    -
    kubeturbo +
      + +
    • CRD
    • + +
    +
    • stable
    • +
    • alpha
    • +
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • kubeturbo-operator.v6.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v6.4.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.21.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.22.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -576,44 +653,48 @@
      Not complying with the recommendations
    appsody-operatoraqua +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • 5.3.0
    • -
    -
    -
      +
    • alpha
    • -
    • beta
    • +
    • 6.0.0
    • + +
    • 6.2.0
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • aqua-operator.v0.0.1 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v0.0.2 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.0 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.1 - (label=,max=not set,channels=[5.3.0 alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -622,48 +703,28 @@
      Not complying with the recommendations
    snyk-operatorkubefed-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • alpha
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • kubefed-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -672,14 +733,14 @@
      Not complying with the recommendations
    project-quay -
      - -
    • CRD
    • - -
    -
    postgres-operator +
      + +
    • CRD
    • + +
    +
      @@ -687,13 +748,17 @@
      Not complying with the recommendations
    -
      - -
    • project-quay.v1.1.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -702,32 +767,32 @@
      Not complying with the recommendations
    appranix -
      - -
    • CRD
    • - -
    -
    tf-operator +
      + +
    • CRD
    • + +
    +
      -
    • deprecated
    • -
    • stable
    • +
    • alpha
    • +
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -736,42 +801,50 @@
      Not complying with the recommendations
    open-liberty -
      - -
    • CRD
    • - -
    -
    argocd-operator +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • -
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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:YES,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)
    • + +
    +
      @@ -780,14 +853,14 @@
      Not complying with the recommendations
    kubefed-operator -
      - -
    • CRD
    • - -
    -
    esindex-operator +
      + +
    • CRD
    • + +
    +
      @@ -795,13 +868,13 @@
      Not complying with the recommendations
    -
      - -
    • kubefed-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • esindex-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -810,28 +883,56 @@
      Not complying with the recommendations
    steerd-presto-operator -
      - -
    • CRD
    • - -
    -
    portworx +
      + +
    • CRD
    • + +
    +
    • alpha
    • +
    • stable
    • +
    -
      - -
    • steerd-presto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -840,28 +941,42 @@
      Not complying with the recommendations
    elastic-phenix-operatoretcd +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • singlenamespace-alpha
    • -
    -
    -
      +
    • clusterwide-alpha
    • alpha
    -
      - -
    • elastic-phenix-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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=[clusterwide-alpha singlenamespace-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)
    • + +
    +
      @@ -870,32 +985,36 @@
      Not complying with the recommendations
    hpe-ezmeral-csi-operatorkubemq-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • alpha
    • -
    • stable
    • +
    • original
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -904,58 +1023,80 @@
      Not complying with the recommendations
    hazelcast-operator -
      - -
    • CRD
    • - -
    -
    storageos +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
      -
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    ditto-operator -
      - -
    • CRD
    • - -
    -
    ham-deploy +
      + +
    • CRD
    • + +
    +
      @@ -963,17 +1104,13 @@
      Not complying with the recommendations
    -
      - -
    • ditto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ditto-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ditto-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • ham-deploy.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -982,14 +1119,14 @@
      Not complying with the recommendations
    radanalytics-spark -
      - -
    • CRD
    • - -
    -
    nsm-operator-registry +
      + +
    • CRD
    • + +
    +
      @@ -997,13 +1134,13 @@
      Not complying with the recommendations
    -
      - -
    • sparkoperator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • nsm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1012,28 +1149,36 @@
      Not complying with the recommendations
    credstash-operator -
      - -
    • CRD
    • - -
    -
    runtime-component-operator +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • beta
    -
      - -
    • credstash-operator.v1.13.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -1042,14 +1187,52 @@
      Not complying with the recommendations
    ibm-quantum-operatortraefikee-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • 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)
    • + +
    +
    +
      + +
    +
    iot-simulator +
      + +
    • CRD
    • + +
    +
      @@ -1057,13 +1240,13 @@
      Not complying with the recommendations
    -
      - -
    • ibm-quantum-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • iot-simulator.0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1072,14 +1255,14 @@
      Not complying with the recommendations
    portworx -
      - -
    • CRD
    • - -
    -
    apicast-community-operator +
      + +
    • CRD
    • + +
    +
      @@ -1089,39 +1272,25 @@
      Not complying with the recommendations
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -1130,28 +1299,72 @@
      Not complying with the recommendations
    redis-enterpriseinstana-agent +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • beta
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • redis-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -1160,14 +1373,14 @@
      Not complying with the recommendations
    hazelcast-jet-operator -
      - -
    • CRD
    • - -
    -
    hazelcast-jet-enterprise-operator +
      + +
    • CRD
    • + +
    +
      @@ -1175,27 +1388,27 @@
      Not complying with the recommendations
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1204,64 +1417,58 @@
      Not complying with the recommendations
    storageosibmcloud-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • alpha
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1270,14 +1477,14 @@
      Not complying with the recommendations
    yugabyte-operator -
      - -
    • CRD
    • - -
    -
    steerd-presto-operator +
      + +
    • CRD
    • + +
    +
      @@ -1285,13 +1492,13 @@
      Not complying with the recommendations
    -
      - -
    • yugabyte-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • steerd-presto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1300,28 +1507,42 @@
      Not complying with the recommendations
    chaosblade-operatorapi-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • stable
    • -
    • alpha
    • +
    • 2.x-stable
    -
      - -
    • chaosblade-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -1330,36 +1551,28 @@
      Not complying with the recommendations
    runtime-component-operator -
      - -
    • CRD
    • - -
    -
    redis-enterprise +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • redis-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1368,32 +1581,42 @@
      Not complying with the recommendations
    ext-postgres-operatort8c +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • alpha
    • + +
    • stable
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1402,14 +1625,14 @@
      Not complying with the recommendations
    sysdig -
      - -
    • CRD
    • - -
    -
    portworx-essentials +
      + +
    • CRD
    • + +
    +
      @@ -1417,53 +1640,13 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
      +
    • portworx-essentials.v1.3.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    akka-cluster-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • 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)
    • - -
    -
      @@ -1472,14 +1655,14 @@
      Not complying with the recommendations
    ripsaw -
      - -
    • CRD
    • - -
    -
    enc-key-sync +
      + +
    • CRD
    • + +
    +
      @@ -1487,13 +1670,13 @@
      Not complying with the recommendations
    -
      - -
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • enc-key-sync-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1502,14 +1685,14 @@
      Not complying with the recommendations
    enmasse -
      - -
    • CRD
    • - -
    -
    kong +
      + +
    • CRD
    • + +
    +
      @@ -1517,61 +1700,27 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
      +
    • kong.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kong.v0.2.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kong.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kong.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kong.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kong.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kong.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kong.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    hedvig-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • 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)
    • - -
    -
      @@ -1580,14 +1729,14 @@
      Not complying with the recommendations
    postgresql-operator-dev4devs-com -
      - -
    • CRD
    • - -
    -
    enmasse +
      + +
    • CRD
    • + +
    +
      @@ -1595,43 +1744,29 @@
      Not complying with the recommendations
    -
      - -
    • postgresql-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
      +
    • 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)
    • +
    mcad-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • mcad-operator.v0.1.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
      @@ -1640,14 +1775,14 @@
      Not complying with the recommendations
    rook-edgefs -
      - -
    • CRD
    • - -
    -
    rook-ceph +
      + +
    • CRD
    • + +
    +
      @@ -1655,13 +1790,17 @@
      Not complying with the recommendations
    -
      - -
    • rook-edgefs.v1.0.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -1670,46 +1809,78 @@
      Not complying with the recommendations
    microcksinfinispan +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • 2.0.x
    • -
    -
    -
      +
    • dev-preview
    • -
    • alpha
    • +
    • 2.1.x
    • + +
    • 1.1.x
    • stable
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • infinispan-operator.v0.2.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.3 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.4 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.5 - (label=,max=not set,channels=[2.0.x 2.1.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],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.1 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.2 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.3 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.4 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1718,14 +1889,14 @@
      Not complying with the recommendations
    halkyon -
      - -
    • CRD
    • - -
    -
    wavefront +
      + +
    • CRD
    • + +
    +
      @@ -1733,17 +1904,13 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • wavefront-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1752,46 +1919,48 @@
      Not complying with the recommendations
    datadog-operator -
      - -
    • CRD
    • - -
    -
    federatorai +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -1800,14 +1969,14 @@
      Not complying with the recommendations
    metering-upstream -
      - -
    • CRD
    • - -
    -
    rocketmq-operator +
      + +
    • CRD
    • + +
    +
      @@ -1815,13 +1984,13 @@
      Not complying with the recommendations
    -
      - -
    • metering-operator-upstream.v4.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • rocketmq-operator.0.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1830,28 +1999,28 @@
      Not complying with the recommendations
    vault -
      - -
    • CRD
    • - -
    -
    spark-gcp +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • +
    • alpha
    -
      - -
    • vaultoperator.v0.4.10 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • sparkoperator.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1860,48 +2029,38 @@
      Not complying with the recommendations
    federatorai -
      - -
    • CRD
    • - -
    -
    nexus-operator-m88i +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
      -
    • stable
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1910,14 +2069,14 @@
      Not complying with the recommendations
    prometheus-exporter-operator -
      - -
    • CRD
    • - -
    -
    hawkbit-operator +
      + +
    • CRD
    • + +
    +
      @@ -1925,15 +2084,19 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • hawkbit-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1942,14 +2105,16 @@
      Not complying with the recommendations
    kubeflow -
      - -
    • CRD
    • - -
    -
    integrity-shield-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
      @@ -1957,17 +2122,19 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • integrity-shield-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -1976,42 +2143,28 @@
      Not complying with the recommendations
    hazelcast-jet-enterprise-operator -
      - -
    • CRD
    • - -
    -
    robin-operator +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • robin-operator.v5.3.2-59 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2020,42 +2173,60 @@
      Not complying with the recommendations
    etcd -
      - -
    • CRD
    • - -
    -
    oneagent +
      + +
    • CRD
    • + +
    +
      -
    • 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=[clusterwide-alpha singlenamespace-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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2064,30 +2235,30 @@
      Not complying with the recommendations
    anchore-engine -
      - -
    • CRD
    • - -
    -
    hedvig-operator +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2096,34 +2267,28 @@
      Not complying with the recommendations
    mariadb-operator-app -
      - -
    • CRD
    • - -
    -
    vault +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • beta
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • vaultoperator.v0.4.10 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2132,14 +2297,14 @@
      Not complying with the recommendations
    t8c -
      - -
    • CRD
    • - -
    -
    microcks +
      + +
    • CRD
    • + +
    +
      @@ -2149,25 +2314,29 @@
      Not complying with the recommendations
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2176,42 +2345,36 @@
      Not complying with the recommendations
    api-operator -
      - -
    • CRD
    • - -
    -
    ibm-application-gateway-operator +
      + +
    • CRD
    • + +
    +
    • 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)
    • - -
    -
    +
      + +
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2220,14 +2383,14 @@
      Not complying with the recommendations
    oneagent -
      - -
    • CRD
    • - -
    -
    hazelcast-jet-operator +
      + +
    • CRD
    • + +
    +
      @@ -2235,45 +2398,27 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2282,14 +2427,14 @@
      Not complying with the recommendations
    nsm-operator-registry -
      - -
    • CRD
    • - -
    -
    spinnaker-operator +
      + +
    • CRD
    • + +
    +
      @@ -2297,13 +2442,19 @@
      Not complying with the recommendations
    -
      - -
    • nsm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2312,14 +2463,14 @@
      Not complying with the recommendations
    argocd-operator-helm -
      - -
    • CRD
    • - -
    -
    openebs +
      + +
    • CRD
    • + +
    +
      @@ -2327,23 +2478,21 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • openebsoperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v2.10.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2352,14 +2501,14 @@
      Not complying with the recommendations
    jenkins-operator -
      - -
    • CRD
    • - -
    -
    kubeflow +
      + +
    • CRD
    • + +
    +
      @@ -2367,55 +2516,17 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
      +
    • 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)
    • +
    percona-xtradb-cluster-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
      @@ -2424,14 +2535,14 @@
      Not complying with the recommendations
    rocketmq-operator -
      - -
    • CRD
    • - -
    -
    sematext +
      + +
    • CRD
    • + +
    +
      @@ -2439,13 +2550,17 @@
      Not complying with the recommendations
    -
      - -
    • rocketmq-operator.0.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2454,42 +2569,28 @@
      Not complying with the recommendations
    couchbase-enterprise -
      - -
    • CRD
    • - -
    -
    kubemod +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • beta
    -
      - -
    • couchbase-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 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)
    • - -
    -
    +
      + +
    • kubemod.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2498,14 +2599,14 @@
      Not complying with the recommendations
    seldon-operator -
      - -
    • CRD
    • - -
    -
    seldon-operator +
      + +
    • CRD
    • + +
    +
      @@ -2515,33 +2616,33 @@
      Not complying with the recommendations
    -
      - -
    • seldon-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.2 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • seldon-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2550,32 +2651,58 @@
      Not complying with the recommendations
    sematextcomposable-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • alpha
    +
      + +
    • composable-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    siddhi-operator +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • siddhi-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2584,28 +2711,32 @@
      Not complying with the recommendations
    kubemodappranix +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • deprecated
    • -
    • beta
    • +
    • stable
    -
      - -
    • kubemod.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2614,14 +2745,48 @@
      Not complying with the recommendations
    iot-simulatorhalkyon +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • 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)
    • + +
    +
    +
      + +
    +
    credstash-operator +
      + +
    • CRD
    • + +
    +
      @@ -2629,13 +2794,13 @@
      Not complying with the recommendations
    -
      - -
    • iot-simulator.0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • credstash-operator.v1.13.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2644,32 +2809,58 @@
      Not complying with the recommendations
    wso2am-operatorrook-edgefs +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • beta
    +
      + +
    • rook-edgefs.v1.0.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ripsaw +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2678,32 +2869,68 @@
      Not complying with the recommendations
    tf-operatormariadb-operator-app +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • 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)
    • + +
    +
    +
      + +
    +
    atlasmap-operator +
      + +
    • CRD
    • + +
    +
      -
    • 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)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2712,60 +2939,46 @@
      Not complying with the recommendations
    hazelcast-enterprise-operatorplanetscale +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • beta
    -
      - -
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
      -
    • hazelcast-enterprise-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    • + +
    +
    +
    nexus-operator-m88i -
      - -
    • CRD
    • - -
    • ClusterRole
    • - -
    -
    appdynamics-operator +
      + +
    • CRD
    • + +
    +
      @@ -2773,21 +2986,15 @@
      Not complying with the recommendations
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2796,14 +3003,14 @@
      Not complying with the recommendations
    minio-operator -
      - -
    • CRD
    • - -
    -
    metering-upstream +
      + +
    • CRD
    • + +
    +
      @@ -2811,13 +3018,13 @@
      Not complying with the recommendations
    -
      - -
    • minio-operator.v1.0.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • metering-operator-upstream.v4.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2826,14 +3033,14 @@
      Not complying with the recommendations
    hawkbit-operator -
      - -
    • CRD
    • - -
    -
    project-quay-container-security-operator +
      + +
    • CRD
    • + +
    +
      @@ -2841,19 +3048,13 @@
      Not complying with the recommendations
    -
      - -
    • hawkbit-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawkbit-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawkbit-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawkbit-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • project-quay-container-security-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2862,28 +3063,46 @@
      Not complying with the recommendations
    istio -
      - -
    • CRD
    • - -
    -
    datadog-operator +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • +
    • alpha
    -
      - -
    • istio-operator.0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2892,30 +3111,28 @@
      Not complying with the recommendations
    planetscale -
      - -
    • CRD
    • - -
    -
    lib-bucket-provisioner +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • lib-bucket-provisioner.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -2924,16 +3141,14 @@
      Not complying with the recommendations
    integrity-shield-operator -
      - -
    • CRD
    • - -
    • ClusterRole
    • - -
    -
    vault-helm +
      + +
    • CRD
    • + +
    +
      @@ -2941,19 +3156,15 @@
      Not complying with the recommendations
    -
      - -
    • integrity-shield-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integrity-shield-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integrity-shield-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integrity-shield-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2962,28 +3173,32 @@
      Not complying with the recommendations
    mattermost-operator -
      - -
    • CRD
    • - -
    -
    tidb-operator +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • mattermost-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -2992,66 +3207,28 @@
      Not complying with the recommendations
    clickhouseibmcloud-iam-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      - -
    • latest
    • +
    • alpha
    -
      - -
    • 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: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)
    • - -
    -
    +
      + +
    • ibmcloud-iam-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3060,40 +3237,36 @@
      Not complying with the recommendations
    kubeturbo -
      - -
    • CRD
    • - -
    -
    eunomia +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • -
    • alpha
    -
      - -
    • kubeturbo-operator.v6.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v6.4.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v7.21.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v7.22.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v8.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v8.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3102,14 +3275,14 @@
      Not complying with the recommendations
    spark-gcp -
      - -
    • CRD
    • - -
    -
    opsmx-spinnaker-operator +
      + +
    • CRD
    • + +
    +
      @@ -3117,13 +3290,19 @@
      Not complying with the recommendations
    -
      - -
    • sparkoperator.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3132,14 +3311,14 @@
      Not complying with the recommendations
    kube-arangodb -
      - -
    • CRD
    • - -
    -
    couchbase-enterprise +
      + +
    • CRD
    • + +
    +
      @@ -3147,13 +3326,27 @@
      Not complying with the recommendations
    -
      - -
    • kube-arangodb.v1.0.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • couchbase-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 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)
    • + +
    +
      @@ -3162,14 +3355,14 @@
      Not complying with the recommendations
    atlasmap-operator -
      - -
    • CRD
    • - -
    -
    logging-operator +
      + +
    • CRD
    • + +
    +
      @@ -3177,17 +3370,15 @@
      Not complying with the recommendations
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3196,14 +3387,14 @@
      Not complying with the recommendations
    ibmcloud-iam-operator -
      - -
    • CRD
    • - -
    -
    ext-postgres-operator +
      + +
    • CRD
    • + +
    +
      @@ -3211,13 +3402,17 @@
      Not complying with the recommendations
    -
      - -
    • ibmcloud-iam-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3226,30 +3421,66 @@
      Not complying with the recommendations
    appdynamics-operator -
      - -
    • CRD
    • - -
    -
    clickhouse +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • latest
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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: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)
    • + +
    +
      @@ -3258,46 +3489,30 @@
      Not complying with the recommendations
    litmuschaosfalco +
      + +
    • CRD
    • + +
    +
      -
    • UNKNOWN
    • - -
    • CRD
    • +
    • stable
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3306,14 +3521,14 @@
      Not complying with the recommendations
    esindex-operator -
      - -
    • CRD
    • - -
    -
    postgresql-operator +
      + +
    • CRD
    • + +
    +
      @@ -3321,13 +3536,13 @@
      Not complying with the recommendations
    -
      - -
    • esindex-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • postgresql-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3336,28 +3551,48 @@
      Not complying with the recommendations
    ham-deploypercona-server-mongodb-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • original
    • -
    • alpha
    • +
    • stable
    -
      - -
    • ham-deploy.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3366,14 +3601,14 @@
      Not complying with the recommendations
    enc-key-sync -
      - -
    • CRD
    • - -
    -
    mattermost-operator +
      + +
    • CRD
    • + +
    +
      @@ -3381,13 +3616,13 @@
      Not complying with the recommendations
    -
      - -
    • enc-key-sync-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • mattermost-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3396,14 +3631,14 @@
      Not complying with the recommendations
    splunk -
      - -
    • CRD
    • - -
    -
    sealed-secrets-operator-helm +
      + +
    • CRD
    • + +
    +
      @@ -3411,13 +3646,15 @@
      Not complying with the recommendations
    -
      - -
    • splunk.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3426,14 +3663,60 @@
      Not complying with the recommendations
    openebscloud-native-postgresql +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • stable
    +
      + +
    • cloud-native-postgresql.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    zoperator +
      + +
    • CRD
    • + +
    +
      @@ -3441,21 +3724,13 @@
      Not complying with the recommendations
    -
      - -
    • openebsoperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v2.10.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • zoperator.v0.3.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3464,32 +3739,32 @@
      Not complying with the recommendations
    ember-csi-operator -
      - -
    • CRD
    • - -
    -
    wso2am-operator +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • +
    • stable
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3498,14 +3773,14 @@
      Not complying with the recommendations
    kom-operator -
      - -
    • CRD
    • - -
    -
    myvirtualdirectory +
      + +
    • CRD
    • + +
    +
      @@ -3513,13 +3788,13 @@
      Not complying with the recommendations
    -
      - -
    • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • myvirtualdirectory.1.0.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3528,32 +3803,30 @@
      Not complying with the recommendations
    banzaicloud-kafka-operator -
      - -
    • CRD
    • - -
    -
    jenkins-operator +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • - -
    • original
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3562,28 +3835,38 @@
      Not complying with the recommendations
    kubestone -
      - -
    • CRD
    • - -
    -
    percona-xtradb-cluster-operator +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • kubestone.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3592,14 +3875,14 @@
      Not complying with the recommendations
    cassandra-operator -
      - -
    • CRD
    • - -
    -
    yugabyte-operator +
      + +
    • CRD
    • + +
    +
      @@ -3607,13 +3890,13 @@
      Not complying with the recommendations
    -
      - -
    • cassandra-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • yugabyte-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3622,14 +3905,14 @@
      Not complying with the recommendations
    wavefront -
      - -
    • CRD
    • - -
    -
    anchore-engine +
      + +
    • CRD
    • + +
    +
      @@ -3637,13 +3920,15 @@
      Not complying with the recommendations
    -
      - -
    • wavefront-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3652,28 +3937,48 @@
      Not complying with the recommendations
    cos-bucket-operator -
      - -
    • CRD
    • - -
    -
    snyk-operator +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • cos-bucket-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3682,16 +3987,14 @@
      Not complying with the recommendations
    qserv-operator -
      - -
    • CRD
    • - -
    • ClusterRole
    • - -
    -
    splunk +
      + +
    • CRD
    • + +
    +
      @@ -3699,19 +4002,13 @@
      Not complying with the recommendations
    -
      - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • splunk.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3720,14 +4017,14 @@
      Not complying with the recommendations
    opsmx-spinnaker-operator -
      - -
    • CRD
    • - -
    -
    cos-bucket-operator +
      + +
    • CRD
    • + +
    +
      @@ -3735,19 +4032,13 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • cos-bucket-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3756,48 +4047,28 @@
      Not complying with the recommendations
    aquaproject-quay +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • stable
    -
      - -
    • 5.3.0
    • - -
    • alpha
    • - -
    • 6.0.0
    • - -
    • 6.2.0
    • - -
    -
    -
      - -
    • aqua-operator.v0.0.1 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v0.0.2 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.0 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.1 - (label=,max=not set,channels=[5.3.0 alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • project-quay.v1.1.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3806,14 +4077,14 @@
      Not complying with the recommendations
    postgresql-operator -
      - -
    • CRD
    • - -
    -
    kubestone +
      + +
    • CRD
    • + +
    +
      @@ -3821,13 +4092,13 @@
      Not complying with the recommendations
    -
      - -
    • postgresql-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • kubestone.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3836,14 +4107,14 @@
      Not complying with the recommendations
    composable-operator -
      - -
    • CRD
    • - -
    -
    pystol +
      + +
    • CRD
    • + +
    +
      @@ -3851,13 +4122,13 @@
      Not complying with the recommendations
    -
      - -
    • composable-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • pystol.v0.8.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3866,14 +4137,14 @@
      Not complying with the recommendations
    kong -
      - -
    • CRD
    • - -
    -
    event-streams-topic +
      + +
    • CRD
    • + +
    +
      @@ -3881,27 +4152,15 @@
      Not complying with the recommendations
    -
      - -
    • kong.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kong.v0.2.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kong.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kong.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kong.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kong.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kong.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kong.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3910,14 +4169,14 @@
      Not complying with the recommendations
    logging-operator -
      - -
    • CRD
    • - -
    -
    mysql +
      + +
    • CRD
    • + +
    +
      @@ -3925,15 +4184,13 @@
      Not complying with the recommendations
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • mysqloperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -3942,34 +4199,32 @@
      Not complying with the recommendations
    spinnaker-operatorbanzaicloud-kafka-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • beta
    • -
    • alpha
    • +
    • original
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -3978,32 +4233,28 @@
      Not complying with the recommendations
    rook-ceph -
      - -
    • CRD
    • - -
    -
    elastic-phenix-operator +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • elastic-phenix-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -4012,28 +4263,28 @@
      Not complying with the recommendations
    lightbend-console-operator -
      - -
    • CRD
    • - -
    -
    istio +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • beta
    -
      - -
    • lightbend-console-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • istio-operator.0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -4042,14 +4293,14 @@
      Not complying with the recommendations
    mysql -
      - -
    • CRD
    • - -
    -
    akka-cluster-operator +
      + +
    • CRD
    • + +
    +
      @@ -4057,13 +4308,19 @@
      Not complying with the recommendations
    -
      - -
    • mysqloperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -4072,36 +4329,32 @@
      Not complying with the recommendations
    eunomia -
      - -
    • CRD
    • - -
    -
    hpe-ezmeral-csi-operator +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -4110,30 +4363,32 @@
      Not complying with the recommendations
    sealed-secrets-operator-helm -
      - -
    • CRD
    • - -
    -
    sysdig +
      + +
    • CRD
    • + +
    +
      -
    • alpha
    • +
    • stable
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -4142,36 +4397,28 @@
      Not complying with the recommendations
    ibm-application-gateway-operator -
      - -
    • CRD
    • - -
    -
    lightbend-console-operator +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • alpha
    -
      - -
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • lightbend-console-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -4180,28 +4427,46 @@
      Not complying with the recommendations
    pystol -
      - -
    • CRD
    • - -
    -
    litmuschaos +
      + +
    • UNKNOWN
    • + +
    • CRD
    • + +
    +
    • alpha
    • +
    • original
    • +
    -
      - -
    • pystol.v0.8.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -4210,32 +4475,38 @@
      Not complying with the recommendations
    postgres-operator -
      - -
    • CRD
    • - -
    -
    argocd-operator-helm +
      + +
    • CRD
    • + +
    +
      -
    • stable
    • +
    • alpha
    -
      - -
    • 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)
    • - -
    -
    +
      + +
    • 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)
    • + +
    +
      @@ -4244,14 +4515,14 @@
      Not complying with the recommendations
    zoperator -
      - -
    • CRD
    • - -
    -
    mcad-operator +
      + +
    • CRD
    • + +
    +
      @@ -4259,13 +4530,13 @@
      Not complying with the recommendations
    -
      - -
    • zoperator.v0.3.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • mcad-operator.v0.1.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -4274,28 +4545,28 @@
      Not complying with the recommendations
    myvirtualdirectory -
      - -
    • CRD
    • - -
    -
    nuxeo-operator +
      + +
    • CRD
    • + +
    +
      -
    • beta
    • +
    • stable
    -
      - -
    • myvirtualdirectory.1.0.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • nuxeo-operator.v0.7.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -4304,14 +4575,14 @@
      Not complying with the recommendations
    siddhi-operator -
      - -
    • CRD
    • - -
    -
    ditto-operator +
      + +
    • CRD
    • + +
    +
      @@ -4319,13 +4590,17 @@
      Not complying with the recommendations
    -
      - -
    • siddhi-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    +
      + +
    • ditto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
      @@ -4334,126 +4609,32 @@
      Not complying with the recommendations
    nuxeo-operatorneuvector-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • beta
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • nuxeo-operator.v0.7.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
      -
    -
    kubemq-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • 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)
    • - -
    -
    -
      +
    • neuvector-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    project-quay-container-security-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • project-quay-container-security-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    lib-bucket-provisioner -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • lib-bucket-provisioner.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
      @@ -4467,8 +4648,8 @@
      Not complying with the recommendations
      -
      Partially complying with the recommendations
      - +
      Has a bundle that we could not find the deprecate APIs
      +
      @@ -4477,1016 +4658,968 @@
      Partially complying with the recommendations
      - - - + + - - - - + + + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - -
      Package Name Bundles uses API(s) Bundles Migrated
      multicluster-operators-subscription -
        - -
      • CRD
      • - -
      -
      -
        + +
      hpa-operator +
        -
      • release-2.3
      • +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      +
      +
        + +
      • hpa-operator.v0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      opentelemetry-operator +
        -
      • alpha
      • +
      • CRD
      • -
      -
      -
        - -
      • 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)
      • - -
      -
      cloud-native-postgresql -
        - -
      • CRD
      • - -
      -
      -
        +
      • ClusterRole
      • -
      • stable
      • +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      varnish-operator +
        -
      -
      -
        - -
      • cloud-native-postgresql.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      -
      grafana-operator -
        - -
      • CRD
      • - -
      -
      -
        - -
      • original
      • - -
      • alpha
      • - -
      • v4
      • - -
      -
      -
        - -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      ibm-block-csi-operator-community -
        - -
      • CRD
      • - -
      -
      -
        - -
      • stable
      • +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      deployment-validation-operator +
        -
      • maintenance-1.5
      • +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • deployment-validation-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      universal-crossplane +
        -
      -
      -
        - -
      • ibm-block-csi-operator.v1.3.0 - (label=,max=not set,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • ibm-block-csi-operator.v1.4.0 - (label=,max=not set,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • ibm-block-csi-operator.v1.5.0 - (label=,max=not set,channels=[stable maintenance-1.5],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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      apicurio-registry -
        - -
      • CRD
      • - -
      -
      -
        +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      ovms-operator +
        -
      • alpha
      • +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • ovms-operator.v0.1.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      noobaa-operator +
        -
      • 2.x
      • +
      • CRD
      • -
      -
      -
        - -
      • 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)
      • - -
      -
      -
        - -
      • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      camel-k -
        - -
      • CRD
      • - -
      -
      -
        +
      +
      +
        + +
      • 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)
      • + +
      +
      submariner +
        -
      • stable
      • +
      • CRD
      • -
      • stable-1.5
      • - -
      • stable-1.4
      • - -
      • stable-1.3
      • +
      +
      +
        + +
      • alpha
      • + +
      • alpha-0.10
      • + +
      +
      +
        + +
      • submariner-operator.v0.5.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.6.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.7.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • submariner.v0.10.1 - (label=,max=not set,channels=[alpha-0.10],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.8.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.8.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.9.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.9.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      redis-operator +
        -
      -
      -
        - -
      • camel-k-operator.v0.3.3 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v0.3.4 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.0-m1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.0-m2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.0-m3 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.0-m4 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.0-rc1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.0-rc2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.0.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.1.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.1.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.2.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.2.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.3.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.3.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.3.2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      noobaa-operator -
        - -
      • CRD
      • - -
      -
      -
        +
      • CRD
      • -
      • alpha
      • +
      +
      +
        + +
      • stable
      • + +
      • preview
      • + +
      +
      +
        + +
      • redis-operator.v0.0.1 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-operator.v0.2.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • redis-operator.v0.3.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-operator.v0.4.0 - (label=,max=not set,channels=[stable preview],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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      dell-csi-operator +
        -
      • original
      • +
      • CRD
      • -
      -
      -
        - -
      • 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)
      • - -
      -
      awss3-operator-registry -
        - -
      • CRD
      • - -
      -
      -
        +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      machine-deletion-operator +
        -
      • original
      • +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      jaeger +
        -
      • alpha
      • +
      • CRD
      • -
      -
      -
        - -
      • 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)
      • - -
      -
      ibmcloud-operator -
        - -
      • CRD
      • - -
      -
      -
        - -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      -
      neuvector-operator -
        - -
      • CRD
      • - -
      -
      -
        - -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      -
      postgresql -
        - -
      • CRD
      • - -
      -
      -
        - -
      • stable
      • - -
      • original_43
      • - -
      • original_42
      • - -
      • original_41
      • - -
      • v5
      • - -
      • original_40
      • - -
      -
      -
        - -
      • 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=[stable original_43 original_42],head:NO,defaultChannel:NO, deprecated:NO)
      • - -
      • postgresoperator.v4.2.1 - (label=,max=not set,channels=[stable original_43 original_42],head:NO,defaultChannel:NO, deprecated:NO)
      • - -
      • postgresoperator.v4.2.2 - (label=,max=not set,channels=[stable original_43 original_42],head:YES,defaultChannel:NO, deprecated:NO)
      • - -
      • postgresoperator.v4.3.2 - (label=,max=not set,channels=[stable original_43],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:YES,defaultChannel:NO, deprecated:NO)
      • - -
      -
      -
        - -
      • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      nfd-operator -
        - -
      • CRD
      • - -
      -
      -
        - -
      • stable
      • - -
      • alpha
      • - -
      -
      -
        - -
      • nfd-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
      • - -
      -
      -
        - -
      • nfd-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      hive-operator -
        - -
      • CRD
      • - -
      -
      -
        - -
      • alpha
      • - -
      • ocm-2.4
      • - -
      • ocm-2.2
      • - -
      • ocm-2.3
      • - -
      • ocm-2.1
      • - -
      -
      -
        - -
      • hive-operator.v1.0.10 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.11 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.12 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.13 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.14 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.16 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.17 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.18 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.19 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.6 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.7 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.8 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.0.9 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.0 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.1 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.2 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.3 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.4 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.5 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.6 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.7 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • hive-operator.v1.1.8 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],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:YES,defaultChannel:NO, deprecated:NO)
      • - -
      -
      strimzi-kafka-operator -
        - -
      • CRD
      • - -
      -
      -
        - -
      • strimzi-0.21.x
      • - -
      • strimzi-0.22.x
      • - -
      • strimzi-0.23.x
      • - -
      • strimzi-0.24.x
      • - -
      • strimzi-0.25.x
      • - -
      • stable
      • - -
      • strimzi-0.19.x
      • - -
      • strimzi-0.20.x
      • +
      +
      +
        + +
      • 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.8.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      grafana-operator +
        -
      -
      -
        - -
      • strimzi-cluster-operator.v0.11.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.11.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.12.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.12.2 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.13.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.14.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.15.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.16.2 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.17.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.18.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.19.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.20.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.20.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.21.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.22.1 - (label=,max=not set,channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      infinispan -
        - -
      • CRD
      • - -
      -
      -
        +
      • CRD
      • -
      • 2.0.x
      • +
      +
      +
        + +
      • original
      • + +
      • alpha
      • + +
      • v4
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      virt-gateway-operator +
        -
      • dev-preview
      • +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • virt-gateway-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      victoriametrics-operator +
        -
      • 2.1.x
      • +
      • CRD
      • -
      • 1.1.x
      • +
      +
      +
        + +
      • 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.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)
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      kubernetes-imagepuller-operator +
        -
      • stable
      • +
      • CRD
      • -
      -
      -
        - -
      • infinispan-operator.v0.2.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v0.3.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v0.3.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v0.3.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v1.0.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v1.0.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v1.1.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v1.1.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v1.1.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.0.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.0.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.0.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.0.3 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.0.4 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.0.5 - (label=,max=not set,channels=[2.0.x 2.1.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],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.1.1 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.1.2 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.1.3 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.1.4 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      -
      elastic-cloud-eck -
        - -
      • CRD
      • - -
      -
      -
        +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      hive-operator +
        -
      • stable
      • +
      • CRD
      • -
      • beta
      • +
      +
      +
        + +
      • alpha
      • + +
      • ocm-2.4
      • + +
      • ocm-2.2
      • + +
      • ocm-2.3
      • + +
      • ocm-2.1
      • + +
      +
      +
        + +
      • hive-operator.v1.0.10 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.11 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.12 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.13 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.14 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.16 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.17 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.18 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.19 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.6 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.7 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.8 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.9 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.0 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.1 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.2 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.3 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.4 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.5 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.6 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.7 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.8 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      kogito-operator +
        -
      -
      -
        - -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      cockroachdb -
        - -
      • CRD
      • - -
      -
      -
        +
      • CRD
      • -
      • stable-3.x
      • +
      +
      +
        + +
      • 1.x
      • + +
      • alpha
      • + +
      +
      +
        + +
      • kogito-operator.v0.11.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.12.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.13.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.14.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.15.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.16.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.17.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.0.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.1.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.2.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.3.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      elastic-cloud-eck +
        -
      • stable-5.x
      • +
      • CRD
      • -
      • stable
      • +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      tektoncd-operator +
        -
      -
      -
        - -
      • 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)
      • - -
      -
      percona-server-mongodb-operator -
        - -
      • CRD
      • - -
      -
      -
        +
      • CRD
      • -
      • original
      • +
      +
      +
        + +
      • 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)
      • + +
      +
      yaks +
        -
      • stable
      • +
      • CRD
      • -
      -
      -
        - -
      • 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.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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      -
      -
      - -
      -
      Fully complying with the recommendations
      - - - - - - - - - - - - + + + + + + - + @@ -5507,50 +5640,56 @@
      Fully complying with the recommendations
      - + - + - + - + - + - + + + + + + + + + - + + + + + + + + + - + @@ -5861,16 +6040,14 @@
      Fully complying with the recommendations
      - + - + @@ -5919,24 +6098,28 @@
      Fully complying with the recommendations
      - + - + - + @@ -6035,14 +6212,34 @@
      Fully complying with the recommendations
      - + + + + + + + + + - + - + - + @@ -6246,7 +6475,7 @@
      Fully complying with the recommendations
      - + @@ -6428,360 +6681,64 @@
      Fully complying with the recommendations
    • eclipse-che.v7.29.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.29.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -6824,12 +6781,10 @@
      Fully complying with the recommendations
      - + - + - - - - - - - - - + - - - - - - - - - + - + - + - + - + - + - + @@ -7260,7 +7205,7 @@
      Fully complying with the recommendations
      - + - + - + @@ -7343,17 +7282,19 @@
      Fully complying with the recommendations
      - + - + - + - + - + - + - + - + - + @@ -7657,46 +7596,52 @@
      Fully complying with the recommendations
      - + - + - + - + - + - + + + + + + + + + - + - + - + - + - + @@ -8097,7 +8076,7 @@
      Fully complying with the recommendations
      diff --git a/testdata/reports/operatorhubio_catalog/dashboards/grade_quay.io_operatorhubio_catalog_latest_2021-09-06.html b/testdata/reports/operatorhubio_catalog/dashboards/grade_quay.io_operatorhubio_catalog_latest_2021-09-06.html index e6d80191..532e2db2 100644 --- a/testdata/reports/operatorhubio_catalog/dashboards/grade_quay.io_operatorhubio_catalog_latest_2021-09-06.html +++ b/testdata/reports/operatorhubio_catalog/dashboards/grade_quay.io_operatorhubio_catalog_latest_2021-09-06.html @@ -143,24 +143,24 @@
      Grade
      - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + @@ -13421,24 +12697,24 @@
      Grade
      - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - - + - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + diff --git a/testdata/reports/operatorhubio_catalog/dashboards/maxocp_quay.io_operatorhubio_catalog_latest_2021-09-06.html b/testdata/reports/operatorhubio_catalog/dashboards/maxocp_quay.io_operatorhubio_catalog_latest_2021-09-06.html new file mode 100644 index 00000000..1d9760f0 --- /dev/null +++ b/testdata/reports/operatorhubio_catalog/dashboards/maxocp_quay.io_operatorhubio_catalog_latest_2021-09-06.html @@ -0,0 +1,8092 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
      + +

      Max OCP version for 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
      +
        +
      • Image name: quay.io/operatorhubio/catalog:latest
      • +
      • Image ID: sha256:c62dbaacf5ce0c48cd6fc165955d3c527e0e0716e27be83bb899b78c22921e1a
      • +
      • Image Created at: 2021-09-05T09:44:00.636191299Z
      • +
      • From JSON report generated at: 2021-09-05
      • +
      +
      + +
      +
      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?
      +
        +
      • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
      • +
      • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
      • +
      • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
      • +
      +
      3. What does it mean for a package to be in red, amber or green?
      +
        +
      • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
      • +
      • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
      • +
      +
      + +
      +
      Missing Max OCP Version
      +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      flagsmithskydive-operator
        @@ -5495,7 +5628,7 @@
        Fully complying with the recommendations
        -
      • stable
      • +
      • alpha
        -
      • flagsmith-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • skydive-operator.v0.0.49 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • flagsmith-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • skydive-operator.v0.0.50 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      mongodb-atlas-kubernetesibm-block-csi-operator-community
        +
      • CRD
      • +
        -
      • beta
      • +
      • stable
      • -
      • alpha
      • +
      • maintenance-1.5
        +
      • ibm-block-csi-operator.v1.3.0 - (label=,max=not set,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.4.0 - (label=,max=not set,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.5.0 - (label=,max=not set,channels=[stable maintenance-1.5],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)
      • +
        -
      • 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)
      • +
      • ibm-block-csi-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      mongodb-enterpriseazure-service-operator
        @@ -5568,84 +5707,30 @@
        Fully complying with the recommendations
        -
      • 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.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)
      • +
      • azure-service-operator.v0.37.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)
      • +
      • azure-service-operator.v1.0.24492 - (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)
      • +
      • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • mongodb-enterprise.v1.12.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • azure-service-operator.v1.0.28631 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      universal-crossplaneibm-spectrum-scale-csi-operator
        +
      • CRD
      • +
      @@ -5658,25 +5743,29 @@
      Fully complying with the recommendations
        +
      • 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)
      • +
        -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • +
      • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      openshift-qiskit-operatorawss3-operator-registry
        @@ -5687,6 +5776,8 @@
        Fully complying with the recommendations
        +
      • original
      • +
      • alpha
      @@ -5694,21 +5785,21 @@
      Fully complying with the recommendations
        -
      • openshift-qiskit-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • awss3operator.v1.0.0 - (label=,max=not set,channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
        -
      • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • awss3operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      klusterlethpe-csi-operator
        @@ -5726,25 +5817,65 @@
        Fully complying with the recommendations
        -
      • klusterlet.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • hpe-csi-driver-operator.v1.0.0 - (label=v4.4,v4.6,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)
      • +
      • hpe-csi-operator.v1.1.0 - (label=v4.4,v4.6,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)
      • +
      • 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)
        -
      • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • hpe-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      keycloak-operatornode-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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      knative-operator
        @@ -5762,47 +5893,53 @@
        Fully complying with the recommendations
        -
      • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • knative-operator.v0.15.1 - (label=,max=not set,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)
      • +
      • knative-operator.v0.15.2 - (label=,max=not set,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)
      • +
      • knative-operator.v0.15.3 - (label=,max=not set,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)
      • +
      • knative-operator.v0.16.0 - (label=,max=not set,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)
      • +
      • knative-operator.v0.17.0 - (label=,max=not set,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)
      • +
      • knative-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,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)
      • +
      • knative-operator.v0.17.2 - (label=,max=not set,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)
      • +
      • knative-operator.v0.18.0 - (label=,max=not set,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)
      • +
      • knative-operator.v0.18.1 - (label=,max=not set,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)
      • +
      • knative-operator.v0.19.0 - (label=,max=not set,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)
      • +
      • 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)
        -
      • keycloak-operator.v14.0.0 - (label=v4.6,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)
      • -
      • keycloak-operator.v15.0.0 - (label=v4.6,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)
      • -
      • keycloak-operator.v15.0.1 - (label=v4.6,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)
      • -
      • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      tackle-operatorcert-manager
        @@ -5811,8 +5948,6 @@
        Fully complying with the recommendations
        -
      • alpha
      • -
      • stable
      @@ -5825,22 +5960,66 @@
      Fully complying with the recommendations
        -
      • tackle-operator.v0.0.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • cert-manager.v1.4.0 - (label=,max=not set,channels=[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)
      • +
      • cert-manager.v1.4.1 - (label=,max=not set,channels=[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)
      • +
      • cert-manager.v1.4.2 - (label=,max=not set,channels=[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)
      • +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      prometheus +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        -
      • tackle-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      pcc-operatorxrootd-operator
        @@ -5849,7 +6028,7 @@
        Fully complying with the recommendations
        -
      • stable
      • +
      • alpha
        -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • +
      • xrootd-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      druid-operatortopolvm-operator
        @@ -5881,6 +6058,8 @@
        Fully complying with the recommendations
      • alpha
      • +
      • v1.0
      • +
      @@ -5891,14 +6070,14 @@
      Fully complying with the recommendations
        -
      • druid-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • topolvm-operator.v1.0.0 - (label=,max=not set,channels=[alpha v1.0],head:YES,defaultChannel:YES, deprecated:NO)
      cert-manageristio-workspace-operator
        @@ -5907,7 +6086,7 @@
        Fully complying with the recommendations
        -
      • stable
      • +
      • alpha
        -
      • cert-manager.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • istio-workspace-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • cert-manager.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • istio-workspace-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • cert-manager.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • istio-workspace-operator.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • cert-manager.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • istio-workspace-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • cert-manager.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • istio-workspace-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • cert-manager.v1.5.3 - (label=,max=not set,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      ibm-spectrum-scale-csi-operatordynatrace-operator
        @@ -5947,36 +6130,30 @@
        Fully complying with the recommendations
        -
      • stable
      • +
      • alpha
        -
      • 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)
      • +
      • dynatrace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],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)
      • +
      • dynatrace-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
        -
      • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • dynatrace-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      dell-csi-operatorapicurio-registry
        @@ -5987,34 +6164,34 @@
        Fully complying with the recommendations
        -
      • stable
      • +
      • alpha
      • + +
      • 2.x
        -
      • 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)
      • +
      • apicurio-registry.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
      • -
      • dell-csi-operator.v1.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
      • -
      • dell-csi-operator.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
        -
      • dell-csi-operator.v1.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
      shipwright-operatorflux
        @@ -6023,7 +6200,7 @@
        Fully complying with the recommendations
        -
      • alpha
      • +
      • stable
        -
      • shipwright-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      prometheusservice-binding-operator
        @@ -6060,31 +6257,61 @@
        Fully complying with the recommendations
        -
      • prometheusoperator.0.14.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • service-binding-operator.v0.4.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)
      • +
      • service-binding-operator.v0.5.0 - (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)
      • +
      • service-binding-operator.v0.6.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)
      • +
      • service-binding-operator.v0.7.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)
      • +
      • service-binding-operator.v0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.8.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      apimatic-kubernetes-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        -
      • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      kubernetes-imagepuller-operatorhazelcast-enterprise-operator
        @@ -6095,42 +6322,40 @@
        Fully complying with the recommendations
        -
      • stable
      • +
      • alpha
        -
      • kubernetes-imagepuller-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • hazelcast-enterprise-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kubernetes-imagepuller-operator.v0.0.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • hazelcast-enterprise-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kubernetes-imagepuller-operator.v0.0.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • hazelcast-enterprise-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kubernetes-imagepuller-operator.v0.0.4 - (label=,max=not set,channels=[stable],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.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:YES,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:YES,defaultChannel:YES, deprecated:NO)
      • +
      • hazelcast-enterprise-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      kialimongodb-enterprise
        @@ -6141,8 +6366,6 @@
        Fully complying with the recommendations
        -
      • alpha
      • -
      • stable
      @@ -6150,68 +6373,74 @@
      Fully complying with the recommendations
        -
      • kiali-operator.v0.18.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v0.3.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v0.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.10.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.11.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.2.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.13.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.2.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.15.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.2.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.19.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.2.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.22.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.24.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.25.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.26.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.27.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.28.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.29.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.3.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.4.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.4.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.6.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.5.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.7.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.5.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.9.1 - (label=,max=not set,channels=[alpha 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)
      • -
      • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.6.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.8.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.9.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-enterprise.v1.9.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      knative-operatorkiali
        @@ -6259,51 +6488,75 @@
        Fully complying with the recommendations
      • alpha
      • +
      • stable
      • +
        -
      • knative-operator.v0.15.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v0.18.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.10.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.11.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.13.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.15.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.19.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.22.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.15.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.24.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.15.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.25.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.16.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.26.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.17.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.27.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.17.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.28.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.17.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.29.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.18.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.3.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.18.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.4.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.6.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.19.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.7.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.20.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.9.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
        -
      • knative-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.22.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.23.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.23.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.24.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • knative-operator.v0.25.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      -
        - -
      • 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: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)
      • - -
      -
      sigstore-helm-operator -
        - -
      -
      -
        - -
      • alpha
      • - -
      -
      -
        - -
      -
      -
        - -
      • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      jaeger -
        - -
      • CRD
      • - -
      -
      -
        - -
      • 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.8.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      keda -
        - -
      • CRD
      • - -
      -
      -
        - -
      • 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)
      • +
      • eclipse-che.v7.29.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • eclipse-che.v7.29.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • eclipse-che.v7.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • eclipse-che.v7.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • eclipse-che.v7.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      -
      apimatic-kubernetes-operator -
        - -
      -
      -
        - -
      • alpha
      • - -
      -
      -
        +
      • eclipse-che.v7.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      -
      -
        +
      • eclipse-che.v7.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • eclipse-che.v7.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      -
      tagger -
        - -
      -
      -
        - -
      • alpha
      • - -
      -
      -
        +
      • eclipse-che.v7.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      -
      -
        +
      • eclipse-che.v7.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • tagger.v2.1.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • eclipse-che.v7.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      flux -
        - -
      -
      -
        - -
      • stable
      • - -
      -
        -
      -
      -
        +
      • eclipse-che.v7.30.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • flux.v0.13.4 - (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)
      • -
      • flux.v0.14.0 - (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)
      • -
      • flux.v0.14.1 - (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)
      • -
      • flux.v0.14.2 - (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)
      • -
      • flux.v0.15.0 - (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)
      • -
      • flux.v0.15.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)
      • -
      • flux.v0.15.3 - (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)
      • -
      • flux.v0.16.0 - (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)
      • -
      • flux.v0.16.1 - (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)
      • -
      • flux.v0.16.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)
      • -
      • flux.v0.17.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      -
      cluster-impairment-operator -
        - -
      -
      -
        - -
      • beta
      • - -
      -
      -
        +
      • 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)
      • -
      • cluster-impairment-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      pmem-csi-operatortagger
        -
      • CRD
      • -
      @@ -6837,41 +6792,29 @@
      Fully complying with the recommendations
    • 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:YES,defaultChannel:YES, deprecated:NO)
      • +
      • tagger.v2.1.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      opentelemetry-operatoropenshift-qiskit-operator
      • CRD
      • -
      • ClusterRole
      • -
      @@ -6884,69 +6827,21 @@
      Fully complying with the recommendations
        -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • - -
      -
      hpe-csi-operator -
        - -
      • CRD
      • - -
      -
      -
        - -
      • 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)
      • +
      • openshift-qiskit-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
        -
      • hpe-csi-operator.v2.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      submarinerhazelcast-operator
        @@ -6959,70 +6854,38 @@
        Fully complying with the recommendations
      • alpha
      • -
      • alpha-0.10
      • -
        -
      • submariner-operator.v0.5.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • submariner.v0.6.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • submariner.v0.7.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      -
      -
        - -
      • submariner.v0.10.1 - (label=,max=not set,channels=[alpha-0.10],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • submariner.v0.8.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • submariner.v0.8.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • submariner.v0.9.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • hazelcast-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • submariner.v0.9.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • hazelcast-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      -
      skydive-operator -
        - -
      -
      -
        - -
      • alpha
      • - -
      -
      -
        +
      • 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.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:YES,defaultChannel:YES, deprecated:NO)
        -
      • 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)
      • +
      • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      varnish-operatorsigstore-helm-operator
        @@ -7043,14 +6906,14 @@
        Fully complying with the recommendations
        -
      • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      redis-operatorpostgresql
        @@ -7063,38 +6926,60 @@
        Fully complying with the recommendations
      • stable
      • -
      • preview
      • +
      • original_43
      • + +
      • original_42
      • + +
      • original_41
      • + +
      • v5
      • + +
      • original_40
        -
      • redis-operator.v0.0.1 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • postgresoperator.v4.0.1 - (label=,max=not set,channels=[original_40],head:YES,defaultChannel:NO, deprecated:NO)
      • -
      • redis-operator.v0.2.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, 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=[stable original_43 original_42],head:NO,defaultChannel:NO, deprecated:NO)
      • -
      • redis-operator.v0.3.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • postgresoperator.v4.2.1 - (label=,max=not set,channels=[stable original_43 original_42],head:NO,defaultChannel:NO, deprecated:NO)
      • -
      • redis-operator.v0.4.0 - (label=,max=not set,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • postgresoperator.v4.2.2 - (label=,max=not set,channels=[stable original_43 original_42],head:YES,defaultChannel:NO, deprecated:NO)
      • -
      • redis-operator.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • postgresoperator.v4.3.2 - (label=,max=not set,channels=[stable original_43],head:YES,defaultChannel:NO, deprecated:NO)
      • -
      • redis-operator.v0.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • postgresoperator.v4.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
      • -
      • redis-operator.v0.8.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
      node-healthcheck-operatortackle-operator
        @@ -7105,6 +6990,8 @@
        Fully complying with the recommendations
      • alpha
      • +
      • stable
      • +
      @@ -7115,23 +7002,27 @@
      Fully complying with the recommendations
        -
      • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • tackle-operator.v0.0.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • node-healthcheck-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • tackle-operator.v0.0.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • node-healthcheck-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • tackle-operator.v0.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • node-healthcheck-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      alvearie-imaging-ingestionpmem-csi-operator
        +
      • CRD
      • +
      @@ -7139,24 +7030,34 @@
      Fully complying with the recommendations
    • 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)
      • +
        -
      • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      dynatrace-operatorstrimzi-kafka-operator
        @@ -7167,30 +7068,74 @@
        Fully complying with the recommendations
        -
      • alpha
      • +
      • strimzi-0.21.x
      • + +
      • strimzi-0.22.x
      • + +
      • strimzi-0.23.x
      • + +
      • strimzi-0.24.x
      • + +
      • strimzi-0.25.x
      • + +
      • stable
      • + +
      • strimzi-0.19.x
      • + +
      • strimzi-0.20.x
        -
      • dynatrace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • strimzi-cluster-operator.v0.11.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • dynatrace-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • strimzi-cluster-operator.v0.11.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.12.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.12.2 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.13.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.14.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.15.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.16.2 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.17.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.18.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.19.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.20.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.20.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.21.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.22.1 - (label=,max=not set,channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
        -
      • dynatrace-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      pulp-operatormetallb-operator
        @@ -7211,7 +7156,7 @@
        Fully complying with the recommendations
        -
      • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • metallb-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      ovms-operatordruid-operator
        @@ -7281,48 +7226,42 @@
        Fully complying with the recommendations
        -
      • ovms-operator.v0.1.0 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • druid-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      snapschedulershipwright-operator
        -
      • CRD
      • -
        -
      • stable
      • - -
      • candidate
      • +
      • alpha
        -
      • 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=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • shipwright-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      hpa-operatoralvearie-imaging-ingestion
        @@ -7331,7 +7270,7 @@
        Fully complying with the recommendations
        -
      • beta
      • +
      • alpha
        -
      • hpa-operator.v0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      datatrucker-operatorintel-device-plugins-operator
        +
      • CRD
      • +
      @@ -7366,55 +7307,55 @@
      Fully complying with the recommendations
        +
      • intel-device-plugins-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
        -
      • datatrucker-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      azure-service-operatorkubernetes-nmstate-operator
        -
      • CRD
      • -
        -
      • stable
      • +
      • alpha
        -
      • 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)
      • +
      • kubernetes-nmstate-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • kubernetes-nmstate-operator.v0.37.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • azure-service-operator.v1.0.28631 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • kubernetes-nmstate-operator.v0.47.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      intel-device-plugins-operatorkeda
        @@ -7432,26 +7373,36 @@
        Fully complying with the recommendations
        -
      • intel-device-plugins-operator.v0.19.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • 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)
        -
      • intel-device-plugins-operator.v0.20.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)
      • -
      • intel-device-plugins-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
      topolvm-operatorstarboard-operator
        +
      • CRD
      • +
      @@ -7459,75 +7410,77 @@
      Fully complying with the recommendations
    • alpha
    • -
    • v1.0
    • -
        +
      • 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)
      • +
        -
      • topolvm-operator.v1.0.0 - (label=,max=not set,channels=[alpha v1.0],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      service-binding-operatorflagsmith
        -
      • CRD
      • -
        -
      • beta
      • +
      • stable
        -
      • service-binding-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • -
        -
      • service-binding-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • service-binding-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • service-binding-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • service-binding-operator.v0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • service-binding-operator.v0.8.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • service-binding-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • flagsmith-operator.v0.0.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • service-binding-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • flagsmith-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      tektoncd-operatorpulp-operator
        -
      • CRD
      • -
      @@ -7540,25 +7493,19 @@
      Fully complying with the recommendations
        -
      • 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)
      • +
      • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      starboard-operatorcluster-manager
        @@ -7569,54 +7516,44 @@
        Fully complying with the recommendations
        -
      • alpha
      • +
      • stable
        -
      • 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)
      • +
      • cluster-manager.v0.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • starboard-operator.v0.9.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • cluster-manager.v0.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • starboard-operator.v0.9.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • cluster-manager.v0.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
        -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • +
      • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      xrootd-operatormulticluster-operators-subscription
        +
      • CRD
      • +
        +
      • release-2.3
      • +
      • alpha
      @@ -7624,19 +7561,21 @@
      Fully complying with the recommendations
        +
      • multicluster-operators-subscription.v0.1.2 - (label=,max=not set,channels=[alpha release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
      • +
        -
      • xrootd-operator.v0.2.1 - (label=,max=not set,channels=[alpha],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)
      deployment-validation-operatorpcc-operator
        @@ -7645,7 +7584,7 @@
        Fully complying with the recommendations
        -
      • alpha
      • +
      • stable
        -
      • deployment-validation-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      kubernetes-nmstate-operatorklusterlet
        +
      • CRD
      • +
        -
      • alpha
      • +
      • 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)
      • +
        -
      • 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)
      • +
      • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      kogito-operatorkeycloak-operator
        @@ -7707,8 +7652,6 @@
        Fully complying with the recommendations
        -
      • 1.x
      • -
      • alpha
      @@ -7716,55 +7659,47 @@
      Fully complying with the recommendations
        -
      • kogito-operator.v0.11.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • kogito-operator.v0.12.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v0.13.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v0.14.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v0.15.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v0.16.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v0.17.0 - (label=,max=not set,channels=[1.x alpha],head:NO,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)
      • -
      • kogito-operator.v1.0.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v1.1.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v1.2.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v1.3.0 - (label=,max=not set,channels=[1.x 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)
        -
      • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • - -
      • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • - -
      • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x 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)
      • -
      • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      cluster-managernfd-operator
        @@ -7777,30 +7712,28 @@
        Fully complying with the recommendations
      • stable
      • +
      • alpha
      • +
        -
      • 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)
      • +
      • nfd-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
        -
      • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • nfd-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      virt-gateway-operatorsap-btp-operator
        @@ -7821,14 +7754,18 @@
        Fully complying with the recommendations
        -
      • virt-gateway-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • 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)
      istio-workspace-operatordatatrucker-operator
        @@ -7849,136 +7786,122 @@
        Fully complying with the recommendations
        -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • +
      • datatrucker-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      victoriametrics-operatorpoison-pill-operator
        -
      • CRD
      • -
        -
      • beta
      • +
      • alpha
        -
      • 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)
      • +
      • poison-pill.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.15.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.16.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.17.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.17.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.6.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.7.3 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.8.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • victoriametrics-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • poison-pill.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      synapse-helm +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
        -
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • +
      • synapse-helm.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      poison-pill-operatorsnapscheduler
        +
      • CRD
      • +
        -
      • alpha
      • +
      • stable
      • + +
      • candidate
        +
      • snapscheduler.v1.1.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • +
        -
      • 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)
      • +
      • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
      sap-btp-operatormongodb-atlas-kubernetes
        @@ -7987,6 +7910,8 @@
        Fully complying with the recommendations
        +
      • beta
      • +
      • alpha
      @@ -7999,46 +7924,62 @@
      Fully complying with the recommendations
        -
      • sap-btp-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-atlas-kubernetes.v0.4.0 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
      • -
      • sap-btp-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-atlas-kubernetes.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • sap-btp-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      machine-deletion-operatorcockroachdb
        +
      • CRD
      • +
        -
      • alpha
      • +
      • stable-3.x
      • + +
      • stable-5.x
      • + +
      • stable
        +
      • 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)
      • +
        -
      • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, 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)
      yakscamel-k
        @@ -8049,34 +7990,72 @@
        Fully complying with the recommendations
        -
      • alpha
      • +
      • stable
      • + +
      • stable-1.5
      • + +
      • stable-1.4
      • + +
      • stable-1.3
        -
      • yaks-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • camel-k-operator.v0.3.3 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • yaks-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • camel-k-operator.v0.3.4 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • yaks-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • camel-k-operator.v1.0.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m3 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m4 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-rc1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-rc2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.1.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.1.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.2.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.2.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.3.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.3.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.3.2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
        -
      • yaks-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • -
      • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      metallb-operatorcluster-impairment-operator
        @@ -8085,7 +8064,7 @@
        Fully complying with the recommendations
        -
      • alpha
      • +
      • beta
        -
      • metallb-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • cluster-impairment-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      ext-postgres-operatorpoison-pill-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -173,75 +173,49 @@
        Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For ext-postgres-operator.v0.4.1:

        - -

      • "ERROR" postgres.db.movetokube.com does not have a status descriptor
      • - -
      • "ERROR" postgresusers.db.movetokube.com does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" masterRole does not have a spec descriptor
      • - -
      • "ERROR" schemas does not have a spec descriptor
      • - -
      • "ERROR" database does not have a spec descriptor
      • - -
      • "ERROR" dropOnDelete does not have a spec descriptor
      • - -
      • "ERROR" secretName does not have a spec descriptor
      • - -
      • "ERROR" database does not have a spec descriptor
      • - -
      • "ERROR" privileges does not have a spec descriptor
      • - -
      • "ERROR" role does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for masterRole
      • +

        For poison-pill.v0.1.4:

        -

      • "WARNING" Add a spec descriptor for schemas
      • +
      • "ERROR" poisonpillconfigs.poison-pill.medik8s.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for database
      • +
      • "ERROR" poisonpillremediations.poison-pill.medik8s.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for dropOnDelete
      • +
      • "ERROR" poisonpillremediationtemplates.poison-pill.medik8s.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for secretName
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for database
      • +
      • "ERROR" template does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for privileges
      • -
      • "WARNING" Add a spec descriptor for role
      • +
      • "WARNING" Add a spec descriptor for template
      • @@ -252,29 +226,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ext-postgres-operator.v0.4.1:

        - - -

      • "WARNING" (ext-postgres-operator.v0.4.1) csv.Spec.Icon not specified
      • +

        For poison-pill.v0.1.4:

        -

      • "WARNING" (ext-postgres-operator.v0.4.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["postgres.db.movetokube.com" "postgresusers.db.movetokube.com"])
      • +
      • "WARNING" (poison-pill.v0.1.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -284,165 +254,87 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      metering-upstreamtagger -

      NOT COMPLY

      +

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For metering-operator-upstream.v4.2.0:

        - -

      • "ERROR" storage does not have a spec descriptor
      • - -
      • "ERROR" query does not have a spec descriptor
      • - -
      • "ERROR" schedule does not have a spec descriptor
      • - -
      • "ERROR" columns does not have a spec descriptor
      • - -
      • "ERROR" inputs does not have a spec descriptor
      • - -
      • "ERROR" query does not have a spec descriptor
      • - -
      • "ERROR" prometheusMetricsImporter does not have a spec descriptor
      • - -
      • "ERROR" hive does not have a spec descriptor
      • - -
      • "ERROR" catalog does not have a spec descriptor
      • - -
      • "ERROR" unmanaged does not have a spec descriptor
      • - -
      • "ERROR" columns does not have a spec descriptor
      • - -
      • "ERROR" createTableAs does not have a spec descriptor
      • - -
      • "ERROR" query does not have a spec descriptor
      • - -
      • "ERROR" schema does not have a spec descriptor
      • - -
      • "ERROR" tableName does not have a spec descriptor
      • - -
      • "ERROR" columns does not have a spec descriptor
      • - -
      • "ERROR" databaseName does not have a spec descriptor
      • - -
      • "ERROR" external does not have a spec descriptor
      • - -
      • "ERROR" fileFormat does not have a spec descriptor
      • - -
      • "ERROR" location does not have a spec descriptor
      • - -
      • "ERROR" rowFormat does not have a spec descriptor
      • - -
      • "ERROR" tableName does not have a spec descriptor
      • - -
      • "ERROR" meteringconfigs.metering.openshift.io does not have a status descriptor
      • - -
      • "ERROR" reports.metering.openshift.io does not have a status descriptor
      • - -
      • "ERROR" reportqueries.metering.openshift.io does not have a status descriptor
      • - -
      • "ERROR" reportdatasources.metering.openshift.io does not have a status descriptor
      • - -
      • "ERROR" storagelocations.metering.openshift.io does not have a status descriptor
      • - -
      • "ERROR" prestotables.metering.openshift.io does not have a status descriptor
      • - -
      • "ERROR" hivetables.metering.openshift.io does not have a status descriptor
      • +

        For tagger.v2.1.17:

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" from does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for storage
      • - -
      • "WARNING" Add a spec descriptor for query
      • - -
      • "WARNING" Add a spec descriptor for schedule
      • - -
      • "WARNING" Add a spec descriptor for columns
      • - -
      • "WARNING" Add a spec descriptor for inputs
      • - -
      • "WARNING" Add a spec descriptor for query
      • - -
      • "WARNING" Add a spec descriptor for prometheusMetricsImporter
      • - -
      • "WARNING" Add a spec descriptor for hive
      • - -
      • "WARNING" Add a spec descriptor for catalog
      • - -
      • "WARNING" Add a spec descriptor for unmanaged
      • - -
      • "WARNING" Add a spec descriptor for columns
      • - -
      • "WARNING" Add a spec descriptor for createTableAs
      • - -
      • "WARNING" Add a spec descriptor for query
      • - -
      • "WARNING" Add a spec descriptor for schema
      • - -
      • "WARNING" Add a spec descriptor for tableName
      • - -
      • "WARNING" Add a spec descriptor for columns
      • +
      • "ERROR" generation does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for databaseName
      • +
      • "ERROR" mirror does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for external
      • +
      • "ERROR" tags.tagger.dev does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for fileFormat
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for from
      • -
      • "WARNING" Add a spec descriptor for rowFormat
      • +
      • "WARNING" Add a spec descriptor for generation
      • -
      • "WARNING" Add a spec descriptor for tableName
      • +
      • "WARNING" Add a spec descriptor for mirror
      • @@ -453,25 +345,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For metering-operator-upstream.v4.2.0:

        +

        For tagger.v2.1.17:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hivetables.metering.openshift.io" "meteringconfigs.metering.openshift.io" "prestotables.metering.openshift.io" "reportdatasources.metering.openshift.io" "reportqueries.metering.openshift.io" "reports.metering.openshift.io" "storagelocations.metering.openshift.io"])
      • +
      • "WARNING" (tagger.v2.1.17) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -481,122 +373,76 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (600)
      skydive-operatorhpe-ezmeral-csi-operator -

      COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      USED

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For skydive-operator.v0.0.50:

        - -

      • "ERROR" skydives.skydive-group.example.com does not have a status descriptor
      • - -
      • "ERROR" agents does not have a spec descriptor
      • - -
      • "ERROR" analyzer does not have a spec descriptor
      • - -
      • "ERROR" enable does not have a spec descriptor
      • - -
      • "ERROR" flowExporter does not have a spec descriptor
      • - -
      • "ERROR" prometheusConnector does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for agents
      • - -
      • "WARNING" Add a spec descriptor for analyzer
      • - -
      • "WARNING" Add a spec descriptor for enable
      • - -
      • "WARNING" Add a spec descriptor for flowExporter
      • - -
      • "WARNING" Add a spec descriptor for prometheusConnector
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For skydive-operator.v0.0.50:

        +

        For hpe-ezmeral-csi-operator.v1.0.4:

        -

      • "WARNING" (skydive-operator.v0.0.50) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hpeezmeralcsidrivers.ezmeral.hpe.com" "hpeezmeralnfscsidrivers.ezmeral.hpe.com"])
      • @@ -606,32 +452,32 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade C
      (400)
      vaultibm-quantum-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • alpha
      @@ -640,11 +486,11 @@
      Grade

      NOT USED

      @@ -652,67 +498,31 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      ONLY ERRORS

      - +Info -
      + +Info +

        -

        For vaultoperator.v0.4.10:

        - -

      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" bankVaultsImage does not have a spec descriptor
      • - -
      • "ERROR" annotations does not have a spec descriptor
      • - -
      • "ERROR" serviceAccount does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" serviceType does not have a spec descriptor
      • - -
      • "ERROR" ingress does not have a spec descriptor
      • - -
      • "ERROR" unsealConfig does not have a spec descriptor
      • - -
      • "ERROR" externalConfig does not have a spec descriptor
      • - -
      • "ERROR" vaultEnvsConfig does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for Vault/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for bankVaultsImage
      • - -
      • "WARNING" Add a spec descriptor for annotations
      • - -
      • "WARNING" Add a spec descriptor for serviceAccount
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for serviceType
      • +

        For ibm-quantum-operator.v0.1.0:

        -

      • "WARNING" Add a spec descriptor for ingress
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for unsealConfig
      • +
      • "ERROR" ibmqs.singhp11.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for externalConfig
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for vaultEnvsConfig
      • @@ -723,27 +533,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For vaultoperator.v0.4.10:

        +

        For ibm-quantum-operator.v0.1.0:

        -

      • "WARNING" (vaultoperator.v0.4.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (ibm-quantum-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vaults.vault.banzaicloud.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmqs.singhp11.io"])
      • @@ -757,28 +567,28 @@
        Grade
      poison-pill-operatoristio -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      @@ -787,236 +597,151 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For poison-pill.v0.1.4:

        +

        For istio-operator.0.1.6:

        -

      • "ERROR" poisonpillconfigs.poison-pill.medik8s.io does not have a status descriptor
      • +
      • "ERROR" istios.istio.banzaicloud.io does not have a status descriptor
      • -
      • "ERROR" poisonpillremediations.poison-pill.medik8s.io does not have a status descriptor
      • +
      • "ERROR" remoteistios.istio.banzaicloud.io does not have a status descriptor
      • -
      • "ERROR" poisonpillremediationtemplates.poison-pill.medik8s.io does not have a status descriptor
      • +
      • "ERROR" gateways does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" outboundTrafficPolicy does not have a spec descriptor
      • -
      • "ERROR" template does not have a spec descriptor
      • +
      • "ERROR" proxy does not have a spec descriptor
      • +
      • "ERROR" tracing does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for template
      • +
      • "ERROR" nodeAgent does not have a spec descriptor
      • +
      • "ERROR" autoInjectionNamespaces does not have a spec descriptor
      • +
      • "ERROR" citadel does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" defaultPodDisruptionBudget does not have a spec descriptor
      • +
      • "ERROR" galley does not have a spec descriptor
      • -
        -

        For poison-pill.v0.1.4:

        +

      • "ERROR" includeIPRanges does not have a spec descriptor
      • +
      • "ERROR" mtls does not have a spec descriptor
      • -
      • "WARNING" (poison-pill.v0.1.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" imageHub does not have a spec descriptor
      • +
      • "ERROR" proxyInit does not have a spec descriptor
      • +
      • "ERROR" sds does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade B
      (600)
      rook-edgefs -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        - - -
        -

        For rook-edgefs.v1.0.1:

        - -

      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=ISGW: example must have a provided API
      • - -
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=NFS: example must have a provided API
      • +
      • "ERROR" version does not have a spec descriptor
      • -
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=S3: example must have a provided API
      • +
      • "ERROR" imageTag does not have a spec descriptor
      • -
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=S3X: example must have a provided API
      • +
      • "ERROR" mixer does not have a spec descriptor
      • -
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=SWIFT: example must have a provided API
      • +
      • "ERROR" pilot does not have a spec descriptor
      • -
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=ISCSI: example must have a provided API
      • +
      • "ERROR" sidecarInjector does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" enabledServices does not have a spec descriptor
      • -
      • "ERROR" edgefsImageName does not have a spec descriptor
      • +
      • "ERROR" includeIPRanges does not have a spec descriptor
      • -
      • "ERROR" serviceAccount does not have a spec descriptor
      • +
      • "ERROR" proxy does not have a spec descriptor
      • -
      • "ERROR" dataDirHostPath does not have a spec descriptor
      • +
      • "ERROR" proxyInit does not have a spec descriptor
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "ERROR" sidecarInjector does not have a spec descriptor
      • -
      • "ERROR" annotations does not have a spec descriptor
      • +
      • "ERROR" autoInjectionNamespaces does not have a spec descriptor
      • -
      • "ERROR" remoteURL does not have a spec descriptor
      • +
      • "ERROR" citadel does not have a spec descriptor
      • -
      • "ERROR" direction does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" instances does not have a spec descriptor
      • -
      • "ERROR" instances does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `imageTag` in Istio/v1beta1
      • -
      • "ERROR" instances does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `imageHub` in Istio/v1beta1
      • -
      • "ERROR" instances does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for gateways
      • -
      • "ERROR" clusters.edgefs.rook.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for outboundTrafficPolicy
      • -
      • "ERROR" iscsis.edgefs.rook.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for proxy
      • -
      • "ERROR" isgws.edgefs.rook.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for tracing
      • -
      • "ERROR" nfss.edgefs.rook.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for nodeAgent
      • -
      • "ERROR" s3s.edgefs.rook.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for autoInjectionNamespaces
      • -
      • "ERROR" s3xs.edgefs.rook.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for citadel
      • -
      • "ERROR" swifts.edgefs.rook.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for defaultPodDisruptionBudget
      • +
      • "WARNING" Add a spec descriptor for galley
      • -
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=ISGW: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for includeIPRanges
      • -
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=S3: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for mtls
      • -
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=S3X: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for imageHub
      • -
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=SWIFT: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for proxyInit
      • -
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=NFS: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for sds
      • -
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=ISCSI: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for version
      • -
      • "WARNING" Add a spec descriptor for edgefsImageName
      • +
      • "WARNING" Add a spec descriptor for imageTag
      • -
      • "WARNING" Add a spec descriptor for serviceAccount
      • +
      • "WARNING" Add a spec descriptor for mixer
      • -
      • "WARNING" Add a spec descriptor for dataDirHostPath
      • +
      • "WARNING" Add a spec descriptor for pilot
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "WARNING" Add a spec descriptor for sidecarInjector
      • -
      • "WARNING" Add a spec descriptor for annotations
      • +
      • "WARNING" Add a spec descriptor for enabledServices
      • -
      • "WARNING" Add a spec descriptor for remoteURL
      • +
      • "WARNING" Add a spec descriptor for includeIPRanges
      • -
      • "WARNING" Add a spec descriptor for direction
      • +
      • "WARNING" Add a spec descriptor for proxy
      • -
      • "WARNING" Add a spec descriptor for instances
      • +
      • "WARNING" Add a spec descriptor for proxyInit
      • -
      • "WARNING" Add a spec descriptor for instances
      • +
      • "WARNING" Add a spec descriptor for sidecarInjector
      • -
      • "WARNING" Add a spec descriptor for instances
      • +
      • "WARNING" Add a spec descriptor for autoInjectionNamespaces
      • -
      • "WARNING" Add a spec descriptor for instances
      • +
      • "WARNING" Add a spec descriptor for citadel
      • @@ -1025,51 +750,29 @@
        Grade
      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For rook-edgefs.v1.0.1:

        - -

      • "ERROR" example must have a provided API
      • - -
      • "ERROR" example must have a provided API
      • - -
      • "ERROR" example must have a provided API
      • - -
      • "ERROR" example must have a provided API
      • - -
      • "ERROR" example must have a provided API
      • - -
      • "ERROR" example must have a provided API
      • - - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusters.edgefs.rook.io" "iscsis.edgefs.rook.io" "isgws.edgefs.rook.io" "nfss.edgefs.rook.io" "s3s.edgefs.rook.io" "s3xs.edgefs.rook.io" "swifts.edgefs.rook.io"])
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For istio-operator.0.1.6:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (istio-operator.0.1.6) csv.metadata.Name istio-operator.0.1.6 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["istios.istio.banzaicloud.io" "remoteistios.istio.banzaicloud.io"])
      • @@ -1079,35 +782,45 @@
        Grade

      NOT USED

      Grade D
      (0)
      Grade D
      (100)
      tidb-operatoropenebs -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -1117,37 +830,41 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For tidb-operator.v1.1.6:

        +

        For openebsoperator.v2.10.0:

        -

      • "ERROR" tidbclusters.pingcap.com does not have a status descriptor
      • +
      • "ERROR" varDirectoryPath does not have a spec descriptor
      • +
      • "ERROR" crd does not have a spec descriptor
      • -
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=TidbInitializer: provided API should have an example annotation
      • +
      • "ERROR" helper does not have a spec descriptor
      • -
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=TidbClusterAutoScaler: provided API should have an example annotation
      • +
      • "ERROR" featureGates does not have a spec descriptor
      • -
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=Backup: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=Restore: provided API should have an example annotation
      • +
      • "WARNING" Add CRD validation for OpenEBSInstallTemplate/v1alpha1
      • -
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=BackupSchedule: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for varDirectoryPath
      • -
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=TidbMonitor: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for crd
      • + +
      • "WARNING" Add a spec descriptor for helper
      • + +
      • "WARNING" Add a spec descriptor for featureGates
      • @@ -1158,37 +875,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For tidb-operator.v1.1.6:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated 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.pingcap.com" "backupschedules.pingcap.com" "restores.pingcap.com" "tidbclusterautoscalers.pingcap.com" "tidbclusters.pingcap.com" "tidbinitializers.pingcap.com" "tidbmonitors.pingcap.com"])
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For openebsoperator.v2.10.0:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openebsinstalltemplates.openebs.io"])
      • @@ -1198,75 +903,77 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      akka-cluster-operatorcluster-manager -

      NOT COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      NOT USED

      USED

      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For akka-cluster-operator.v1.0.0:

        +

        For cluster-manager.v0.4.0:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" placementImagePullSpec does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `replicas` in AkkaCluster/v1alpha1
      • +
      • "ERROR" registrationImagePullSpec does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `template` in AkkaCluster/v1alpha1
      • +
      • "ERROR" workImagePullSpec does not have a spec descriptor
      • + +
      • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for placementImagePullSpec
      • + +
      • "WARNING" Add a spec descriptor for registrationImagePullSpec
      • + +
      • "WARNING" Add a spec descriptor for workImagePullSpec
      • @@ -1277,25 +984,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For akka-cluster-operator.v1.0.0:

        +

        For cluster-manager.v0.4.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" (cluster-manager.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -1305,28 +1012,28 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (700)
      elastic-phenix-operatorkong -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -1339,11 +1046,11 @@
        Grade

      NOT USED

      @@ -1351,40 +1058,78 @@
      Grade

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For kong.v0.8.0:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" proxy does not have a spec descriptor
      • + +
      • "ERROR" env does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" ingressController does not have a spec descriptor
      • + +
      • "ERROR" kongs.charts.helm.k8s.io does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for Kong/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for proxy
      • + +
      • "WARNING" Add a spec descriptor for env
      • + +
      • "WARNING" Add a spec descriptor for resources
      • + +
      • "WARNING" Add a spec descriptor for ingressController
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For elastic-phenix-operator.v0.1.0:

        +

        For kong.v0.8.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["elasticindices.elastic.carrefour.com" "elastictemplates.elastic.carrefour.com"])
      • +
      • "WARNING" (kong.v0.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kongs.charts.helm.k8s.io"])
      • @@ -1394,45 +1139,35 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade D
      (100)
      iot-simulatortidb-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -1442,39 +1177,37 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For iot-simulator.0.1.0:

        - -

      • "ERROR" endpoint does not have a spec descriptor
      • +

        For tidb-operator.v1.1.6:

        -

      • "ERROR" simulators.iot.dentrassi.de does not have a status descriptor
      • +
      • "ERROR" tidbclusters.pingcap.com does not have a status descriptor
      • -
      • "ERROR" simulatorconsumers.iot.dentrassi.de does not have a status descriptor
      • -
      • "ERROR" simulatorproducers.iot.dentrassi.de does not have a status descriptor
      • +
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=TidbInitializer: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=TidbClusterAutoScaler: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for endpoint
      • +
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=Backup: provided API should have an example annotation
      • -
      • "WARNING" Add CRD validation for Simulator/v1alpha1
      • +
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=Restore: provided API should have an example annotation
      • -
      • "WARNING" Add CRD validation for SimulatorConsumer/v1alpha1
      • +
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=BackupSchedule: provided API should have an example annotation
      • -
      • "WARNING" Add CRD validation for SimulatorProducer/v1alpha1
      • +
      • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=TidbMonitor: provided API should have an example annotation
      • @@ -1485,27 +1218,37 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For iot-simulator.0.1.0:

        +

        For tidb-operator.v1.1.6:

        -

      • "WARNING" (iot-simulator.0.1.0) csv.metadata.Name iot-simulator.0.1.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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.pingcap.com" "backupschedules.pingcap.com" "restores.pingcap.com" "tidbclusterautoscalers.pingcap.com" "tidbclusters.pingcap.com" "tidbinitializers.pingcap.com" "tidbmonitors.pingcap.com"])
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["simulatorconsumers.iot.dentrassi.de" "simulatorproducers.iot.dentrassi.de" "simulators.iot.dentrassi.de"])
      • +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -1515,28 +1258,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (200)
      kubestonekubeflow -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -1549,11 +1292,11 @@
        Grade

      NOT USED

      @@ -1563,141 +1306,45 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kubestone.v0.4.0:

        - -

      • "ERROR" drills.perf.kubestone.xridge.io does not have a status descriptor
      • - -
      • "ERROR" fios.perf.kubestone.xridge.io does not have a status descriptor
      • - -
      • "ERROR" iopings.perf.kubestone.xridge.io does not have a status descriptor
      • - -
      • "ERROR" iperf3s.perf.kubestone.xridge.io does not have a status descriptor
      • - -
      • "ERROR" pgbenches.perf.kubestone.xridge.io does not have a status descriptor
      • - -
      • "ERROR" qperves.perf.kubestone.xridge.io does not have a status descriptor
      • +

        For kubeflow.v1.2.0:

        -

      • "ERROR" sysbenches.perf.kubestone.xridge.io does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" benchmarkFile does not have a spec descriptor
      • +
      • "ERROR" applications does not have a spec descriptor
      • -
      • "ERROR" benchmarksVolume does not have a spec descriptor
      • +
      • "ERROR" repos does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" version does not have a spec descriptor
      • -
      • "ERROR" options does not have a spec descriptor
      • +
      • "ERROR" kfdefs.kfdef.apps.kubeflow.org does not have a status descriptor
      • -
      • "ERROR" cmdLineArgs does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `applications` in KfDef/v1
      • -
      • "ERROR" volume does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `repos` in KfDef/v1
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `version` in KfDef/v1
      • -
      • "ERROR" volume does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for applications
      • -
      • "ERROR" args does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for repos
      • -
      • "ERROR" clientConfiguration does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" serverConfiguration does not have a spec descriptor
      • - -
      • "ERROR" udp does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" initArgs does not have a spec descriptor
      • - -
      • "ERROR" postgres does not have a spec descriptor
      • - -
      • "ERROR" serverConfiguration does not have a spec descriptor
      • - -
      • "ERROR" tests does not have a spec descriptor
      • - -
      • "ERROR" clientConfiguration does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" options does not have a spec descriptor
      • - -
      • "ERROR" testName does not have a spec descriptor
      • - -
      • "ERROR" command does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" options does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for benchmarkFile
      • - -
      • "WARNING" Add a spec descriptor for benchmarksVolume
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for options
      • - -
      • "WARNING" Add a spec descriptor for cmdLineArgs
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for volume
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for volume
      • - -
      • "WARNING" Add a spec descriptor for args
      • - -
      • "WARNING" Add a spec descriptor for clientConfiguration
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for serverConfiguration
      • - -
      • "WARNING" Add a spec descriptor for udp
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for initArgs
      • - -
      • "WARNING" Add a spec descriptor for postgres
      • - -
      • "WARNING" Add a spec descriptor for serverConfiguration
      • - -
      • "WARNING" Add a spec descriptor for tests
      • - -
      • "WARNING" Add a spec descriptor for clientConfiguration
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for options
      • - -
      • "WARNING" Add a spec descriptor for testName
      • - -
      • "WARNING" Add a spec descriptor for command
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for options
      • +
      • "WARNING" Add a spec descriptor for version
      • @@ -1708,25 +1355,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubestone.v0.4.0:

        +

        For kubeflow.v1.2.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["drills.perf.kubestone.xridge.io" "fios.perf.kubestone.xridge.io" "iopings.perf.kubestone.xridge.io" "iperf3s.perf.kubestone.xridge.io" "pgbenches.perf.kubestone.xridge.io" "qperves.perf.kubestone.xridge.io" "sysbenches.perf.kubestone.xridge.io"])
      • +
      • "WARNING" (kubeflow.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kfdefs.kfdef.apps.kubeflow.org"])
      • @@ -1740,24 +1389,24 @@
        Grade
      ibmcloud-operatorspark-gcp -

      PARTIAL COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -1770,11 +1419,11 @@
        Grade

      NOT USED

      @@ -1782,51 +1431,112 @@
      Grade

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For sparkoperator.v2.4.0:

        + +

      • "ERROR" scheduledsparkapplications.sparkoperator.k8s.io does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" executor does not have a spec descriptor
      • + +
      • "ERROR" type does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" mainApplicationFile does not have a spec descriptor
      • + +
      • "ERROR" sparkVersion does not have a spec descriptor
      • + +
      • "ERROR" restartPolicy does not have a spec descriptor
      • + +
      • "ERROR" driver does not have a spec descriptor
      • + +
      • "ERROR" pythonVersion does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" schedule does not have a spec descriptor
      • + +
      • "ERROR" concurrencyPolicy does not have a spec descriptor
      • + +
      • "ERROR" template does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for executor
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for mainApplicationFile
      • + +
      • "WARNING" Add a spec descriptor for sparkVersion
      • + +
      • "WARNING" Add a spec descriptor for restartPolicy
      • + +
      • "WARNING" Add a spec descriptor for driver
      • + +
      • "WARNING" Add a spec descriptor for pythonVersion
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for schedule
      • + +
      • "WARNING" Add a spec descriptor for concurrencyPolicy
      • + +
      • "WARNING" Add a spec descriptor for template
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ibmcloud-operator.v0.1.11:

        - - -

      • "WARNING" (ibmcloud-operator.v0.1.11) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bindings.ibmcloud.ibm.com" "services.ibmcloud.ibm.com"])
      • - - -
        -

        For ibmcloud-operator.v1.0.11:

        +

        For sparkoperator.v2.4.0:

        -

      • "WARNING" (ibmcloud-operator.v1.0.11) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (sparkoperator.v2.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bindings.ibmcloud.ibm.com" "services.ibmcloud.ibm.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["scheduledsparkapplications.sparkoperator.k8s.io" "sparkapplications.sparkoperator.k8s.io"])
      • @@ -1836,35 +1546,45 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade D
      (100)
      klusterletxrootd-operator

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -1874,47 +1594,41 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For klusterlet.v0.4.0:

        +

        For xrootd-operator.v0.2.1:

        -

      • "ERROR" klusterlets.operator.open-cluster-management.io does not have a status descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" redirector does not have a spec descriptor
      • -
      • "ERROR" externalServerURLs does not have a spec descriptor
      • +
      • "ERROR" worker does not have a spec descriptor
      • -
      • "ERROR" namespace does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" registrationImagePullSpec does not have a spec descriptor
      • +
      • "ERROR" xrootdversions.catalog.xrootd.org does not have a status descriptor
      • -
      • "ERROR" workImagePullSpec does not have a spec descriptor
      • +
      • "ERROR" xrootdclusters.xrootd.xrootd.org does not have a status descriptor
      • -
      • "ERROR" clusterName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for externalServerURLs
      • - -
      • "WARNING" Add a spec descriptor for namespace
      • - -
      • "WARNING" Add a spec descriptor for registrationImagePullSpec
      • - -
      • "WARNING" Add a spec descriptor for workImagePullSpec
      • +
      • "WARNING" Add a spec descriptor for redirector
      • -
      • "WARNING" Add a spec descriptor for clusterName
      • +
      • "WARNING" Add a spec descriptor for worker
      • @@ -1925,25 +1639,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For klusterlet.v0.4.0:

        +

        For xrootd-operator.v0.2.1:

        -

      • "WARNING" (klusterlet.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (xrootd-operator.v0.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -1953,28 +1667,28 @@
        Grade

      NOT USED

      Grade B
      (700)
      Grade B
      (600)
      mysqlyugabyte-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -1987,11 +1701,11 @@
        Grade

      NOT USED

      @@ -2001,43 +1715,45 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For mysqloperator.v1.0.0:

        +

        For yugabyte-operator.v0.0.1:

        -

      • "ERROR" clusterSpec does not have a spec descriptor
      • +
      • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
      • -
      • "ERROR" databaseResource does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" master does not have a spec descriptor
      • -
      • "ERROR" slaveReplicas does not have a spec descriptor
      • +
      • "ERROR" replicationFactor does not have a spec descriptor
      • -
      • "ERROR" mysqlclusters.mysql.grds.cloud does not have a status descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" tserver does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for clusterSpec
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for databaseResource
      • +
      • "WARNING" Add a spec descriptor for master
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "WARNING" Add a spec descriptor for replicationFactor
      • -
      • "WARNING" Add a spec descriptor for slaveReplicas
      • +
      • "WARNING" Add a spec descriptor for tls
      • + +
      • "WARNING" Add a spec descriptor for tserver
      • @@ -2048,25 +1764,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For mysqloperator.v1.0.0:

        +

        For yugabyte-operator.v0.0.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mysqlclusters.mysql.grds.cloud"])
      • +
      • "WARNING" (yugabyte-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -2080,40 +1798,28 @@
        Grade
      strimzi-kafka-operatordynatrace-operator -

      PARTIAL COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • strimzi-0.24.x
      • - -
      • strimzi-0.25.x
      • - -
      • strimzi-0.21.x
      • - -
      • strimzi-0.22.x
      • - -
      • strimzi-0.23.x
      • - -
      • strimzi-0.19.x
      • - -
      • strimzi-0.20.x
      • +
      • alpha
      @@ -2122,1487 +1828,440 @@
      Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For strimzi-cluster-operator.v0.24.0:

        +

        For dynatrace-operator.v0.2.2:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" oneAgent does not have a spec descriptor
      • -
      • "ERROR" kafka does not have a spec descriptor
      • +
      • "ERROR" routing does not have a spec descriptor
      • -
      • "ERROR" zookeeper does not have a spec descriptor
      • +
      • "ERROR" activeGate does not have a spec descriptor
      • -
      • "ERROR" entityOperator does not have a spec descriptor
      • +
      • "ERROR" classicFullStack does not have a spec descriptor
      • -
      • "ERROR" tls does not have a spec descriptor
      • +
      • "ERROR" kubernetesMonitoring does not have a spec descriptor
      • -
      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" consumer does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for oneAgent
      • -
      • "ERROR" producer does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for routing
      • -
      • "ERROR" http does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for activeGate
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for classicFullStack
      • -
      • "ERROR" authentication does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for kubernetesMonitoring
      • -
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" clusters does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" mirrors does not have a spec descriptor
      • -
      • "ERROR" goals does not have a spec descriptor
      • +
        +

        For dynatrace-operator.v0.2.2:

        -

      • "WARNING" Add a spec descriptor for kafka
      • +
      • "WARNING" (dynatrace-operator.v0.2.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "WARNING" Add a spec descriptor for entityOperator
      • -
      • "WARNING" Add a spec descriptor for tls
      • +
      +
      + +

      NOT USED

      Grade B
      (600)
      ext-postgres-operator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for tls
      • + +
        +

        For ext-postgres-operator.v0.4.1:

        -

      • "WARNING" Add a spec descriptor for consumer
      • +
      • "ERROR" postgres.db.movetokube.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for producer
      • +
      • "ERROR" postgresusers.db.movetokube.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for http
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "ERROR" masterRole does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for authentication
      • +
      • "ERROR" schemas does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for authorization
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "ERROR" dropOnDelete does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for clusters
      • +
      • "ERROR" secretName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for mirrors
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for goals
      • +
      • "ERROR" privileges does not have a spec descriptor
      • +
      • "ERROR" role does not have a spec descriptor
      • -
        -

        For strimzi-cluster-operator.v0.25.0:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for masterRole
      • -
      • "ERROR" kafka does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for schemas
      • -
      • "ERROR" zookeeper does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for database
      • -
      • "ERROR" entityOperator does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for dropOnDelete
      • -
      • "ERROR" tls does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for secretName
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for database
      • -
      • "ERROR" consumer does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for privileges
      • -
      • "ERROR" producer does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for role
      • -
      • "ERROR" http does not have a spec descriptor
      • -
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" authentication does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "ERROR" config does not have a spec descriptor
      • +
        +

        For ext-postgres-operator.v0.4.1:

        -

      • "ERROR" clusters does not have a spec descriptor
      • -
      • "ERROR" mirrors does not have a spec descriptor
      • +
      • "WARNING" (ext-postgres-operator.v0.4.1) csv.Spec.Icon not specified
      • -
      • "ERROR" goals does not have a spec descriptor
      • +
      • "WARNING" (ext-postgres-operator.v0.4.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["postgres.db.movetokube.com" "postgresusers.db.movetokube.com"])
      • -
      • "WARNING" Add a spec descriptor for kafka
      • -
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "WARNING" Add a spec descriptor for entityOperator
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      hazelcast-enterprise-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for tls
      • + +
        +

        For hazelcast-enterprise-operator.v0.3.7:

        -

      • "WARNING" Add a spec descriptor for config
      • +
      • "ERROR" hazelcastenterprises.hazelcast.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for consumer
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for producer
      • +
      • "ERROR" hazelcast does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for http
      • +
      • "ERROR" securityContext does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for authentication
      • +
      • "WARNING" Add CRD validation for HazelcastEnterprise/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for authorization
      • +
      • "WARNING" Add a spec descriptor for hazelcast
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "WARNING" Add a spec descriptor for securityContext
      • -
      • "WARNING" Add a spec descriptor for clusters
      • -
      • "WARNING" Add a spec descriptor for mirrors
      • -
      • "WARNING" Add a spec descriptor for goals
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
        -

        For strimzi-cluster-operator.v0.25.0:

        +
        +

        For hazelcast-enterprise-operator.v0.3.7:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" kafka does not have a spec descriptor
      • +
      • "WARNING" (hazelcast-enterprise-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" zookeeper does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" entityOperator does not have a spec descriptor
      • -
      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade C
      (500)
      iot-simulator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" consumer does not have a spec descriptor
      • + +
        +

        For iot-simulator.0.1.0:

        -

      • "ERROR" producer does not have a spec descriptor
      • - -
      • "ERROR" http does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" authentication does not have a spec descriptor
      • - -
      • "ERROR" authorization does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" clusters does not have a spec descriptor
      • - -
      • "ERROR" mirrors does not have a spec descriptor
      • - -
      • "ERROR" goals does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for kafka
      • - -
      • "WARNING" Add a spec descriptor for zookeeper
      • - -
      • "WARNING" Add a spec descriptor for entityOperator
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for consumer
      • - -
      • "WARNING" Add a spec descriptor for producer
      • - -
      • "WARNING" Add a spec descriptor for http
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for authentication
      • - -
      • "WARNING" Add a spec descriptor for authorization
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for clusters
      • - -
      • "WARNING" Add a spec descriptor for mirrors
      • - -
      • "WARNING" Add a spec descriptor for goals
      • - - -
        -

        For strimzi-cluster-operator.v0.19.0:

        - -

      • "ERROR" kafka does not have a spec descriptor
      • - -
      • "ERROR" zookeeper does not have a spec descriptor
      • - -
      • "ERROR" entityOperator does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" consumer does not have a spec descriptor
      • - -
      • "ERROR" producer does not have a spec descriptor
      • - -
      • "ERROR" http does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" authentication does not have a spec descriptor
      • - -
      • "ERROR" authorization does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" clusters does not have a spec descriptor
      • - -
      • "ERROR" mirrors does not have a spec descriptor
      • - -
      • "ERROR" goals does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for kafka
      • - -
      • "WARNING" Add a spec descriptor for zookeeper
      • - -
      • "WARNING" Add a spec descriptor for entityOperator
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for consumer
      • - -
      • "WARNING" Add a spec descriptor for producer
      • - -
      • "WARNING" Add a spec descriptor for http
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for authentication
      • - -
      • "WARNING" Add a spec descriptor for authorization
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for clusters
      • - -
      • "WARNING" Add a spec descriptor for mirrors
      • - -
      • "WARNING" Add a spec descriptor for goals
      • - - -
        -

        For strimzi-cluster-operator.v0.20.1:

        - -

      • "ERROR" kafka does not have a spec descriptor
      • - -
      • "ERROR" zookeeper does not have a spec descriptor
      • - -
      • "ERROR" entityOperator does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" consumer does not have a spec descriptor
      • - -
      • "ERROR" producer does not have a spec descriptor
      • - -
      • "ERROR" http does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" authentication does not have a spec descriptor
      • - -
      • "ERROR" authorization does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" mirrors does not have a spec descriptor
      • - -
      • "ERROR" clusters does not have a spec descriptor
      • - -
      • "ERROR" goals does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for kafka
      • - -
      • "WARNING" Add a spec descriptor for zookeeper
      • - -
      • "WARNING" Add a spec descriptor for entityOperator
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for consumer
      • - -
      • "WARNING" Add a spec descriptor for producer
      • - -
      • "WARNING" Add a spec descriptor for http
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for authentication
      • - -
      • "WARNING" Add a spec descriptor for authorization
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for mirrors
      • - -
      • "WARNING" Add a spec descriptor for clusters
      • - -
      • "WARNING" Add a spec descriptor for goals
      • - - -
        -

        For strimzi-cluster-operator.v0.21.1:

        - -

      • "ERROR" kafka does not have a spec descriptor
      • - -
      • "ERROR" zookeeper does not have a spec descriptor
      • - -
      • "ERROR" entityOperator does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" consumer does not have a spec descriptor
      • - -
      • "ERROR" producer does not have a spec descriptor
      • - -
      • "ERROR" http does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" authentication does not have a spec descriptor
      • - -
      • "ERROR" authorization does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" clusters does not have a spec descriptor
      • - -
      • "ERROR" mirrors does not have a spec descriptor
      • - -
      • "ERROR" goals does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for kafka
      • - -
      • "WARNING" Add a spec descriptor for zookeeper
      • - -
      • "WARNING" Add a spec descriptor for entityOperator
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for consumer
      • - -
      • "WARNING" Add a spec descriptor for producer
      • - -
      • "WARNING" Add a spec descriptor for http
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for authentication
      • - -
      • "WARNING" Add a spec descriptor for authorization
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for clusters
      • - -
      • "WARNING" Add a spec descriptor for mirrors
      • - -
      • "WARNING" Add a spec descriptor for goals
      • - - -
        -

        For strimzi-cluster-operator.v0.22.1:

        - -

      • "ERROR" kafka does not have a spec descriptor
      • - -
      • "ERROR" zookeeper does not have a spec descriptor
      • - -
      • "ERROR" entityOperator does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" consumer does not have a spec descriptor
      • - -
      • "ERROR" producer does not have a spec descriptor
      • - -
      • "ERROR" http does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" authentication does not have a spec descriptor
      • - -
      • "ERROR" authorization does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" mirrors does not have a spec descriptor
      • - -
      • "ERROR" clusters does not have a spec descriptor
      • - -
      • "ERROR" goals does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for kafka
      • - -
      • "WARNING" Add a spec descriptor for zookeeper
      • - -
      • "WARNING" Add a spec descriptor for entityOperator
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for consumer
      • - -
      • "WARNING" Add a spec descriptor for producer
      • - -
      • "WARNING" Add a spec descriptor for http
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for authentication
      • - -
      • "WARNING" Add a spec descriptor for authorization
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for mirrors
      • - -
      • "WARNING" Add a spec descriptor for clusters
      • - -
      • "WARNING" Add a spec descriptor for goals
      • - - -
        -

        For strimzi-cluster-operator.v0.23.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" kafka does not have a spec descriptor
      • - -
      • "ERROR" zookeeper does not have a spec descriptor
      • - -
      • "ERROR" entityOperator does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" consumer does not have a spec descriptor
      • - -
      • "ERROR" producer does not have a spec descriptor
      • - -
      • "ERROR" http does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" authorization does not have a spec descriptor
      • - -
      • "ERROR" authentication does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" clusters does not have a spec descriptor
      • - -
      • "ERROR" mirrors does not have a spec descriptor
      • - -
      • "ERROR" goals does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for kafka
      • - -
      • "WARNING" Add a spec descriptor for zookeeper
      • - -
      • "WARNING" Add a spec descriptor for entityOperator
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for consumer
      • - -
      • "WARNING" Add a spec descriptor for producer
      • - -
      • "WARNING" Add a spec descriptor for http
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for authorization
      • - -
      • "WARNING" Add a spec descriptor for authentication
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for clusters
      • - -
      • "WARNING" Add a spec descriptor for mirrors
      • - -
      • "WARNING" Add a spec descriptor for goals
      • - - - -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        - - -
        -

        For strimzi-cluster-operator.v0.24.0:

        - - - -
        -

        For strimzi-cluster-operator.v0.25.0:

        - - - -
        -

        For strimzi-cluster-operator.v0.25.0:

        - - - -
        -

        For strimzi-cluster-operator.v0.19.0:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • - - -
        -

        For strimzi-cluster-operator.v0.20.1:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • - - -
        -

        For strimzi-cluster-operator.v0.21.1:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • - - -
        -

        For strimzi-cluster-operator.v0.22.1:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • - - -
        -

        For strimzi-cluster-operator.v0.23.0:

        - - - - -

      -
      - -

      NOT USED

      Grade D
      (200)
      aqua -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • 6.0.0
      • - -
      • 6.2.0
      • - -
      • alpha
      • - -
      • 5.3.0
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        - - -
        -

        For aqua-operator.v6.0.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" route does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" database does not have a spec descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" diskSize does not have a spec descriptor
      • - -
      • "ERROR" token does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" token does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" login does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for route
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for database
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for server
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for diskSize
      • - -
      • "WARNING" Add a spec descriptor for token
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for token
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for externalDb
      • - -
      • "WARNING" Add a spec descriptor for login
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for externalDb
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • - - -
        -

        For aqua-operator.v6.2.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" route does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" database does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" diskSize does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" token does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" token does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" login does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for server
      • - -
      • "WARNING" Add a spec descriptor for route
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for database
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for diskSize
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for token
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for token
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for externalDb
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for login
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for externalDb
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - - -
        -

        For aqua-operator.v1.0.2:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" adminPassword does not have a spec descriptor
      • - -
      • "ERROR" licenseToken does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" registry does not have a spec descriptor
      • - -
      • "ERROR" database does not have a spec descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" diskSize does not have a spec descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" token does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" login does not have a spec descriptor
      • - -
      • "ERROR" adminPassword does not have a spec descriptor
      • - -
      • "ERROR" licenseToken does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `registry` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for server
      • - -
      • "WARNING" Add a spec descriptor for adminPassword
      • - -
      • "WARNING" Add a spec descriptor for licenseToken
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for registry
      • - -
      • "WARNING" Add a spec descriptor for database
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for diskSize
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for token
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for externalDb
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for login
      • - -
      • "WARNING" Add a spec descriptor for adminPassword
      • - -
      • "WARNING" Add a spec descriptor for licenseToken
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for externalDb
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - - -
        -

        For aqua-operator.v5.3.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" route does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" database does not have a spec descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" diskSize does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" gateway does not have a spec descriptor
      • - -
      • "ERROR" token does not have a spec descriptor
      • - -
      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" token does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" login does not have a spec descriptor
      • - -
      • "ERROR" infra does not have a spec descriptor
      • - -
      • "ERROR" common does not have a spec descriptor
      • - -
      • "ERROR" externalDb does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for server
      • - -
      • "WARNING" Add a spec descriptor for route
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for database
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for diskSize
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for gateway
      • - -
      • "WARNING" Add a spec descriptor for token
      • - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for token
      • - -
      • "WARNING" Add a spec descriptor for externalDb
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • - -
      • "WARNING" Add a spec descriptor for infra
      • - -
      • "WARNING" Add a spec descriptor for common
      • +
      • "ERROR" endpoint does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for infra
      • +
      • "ERROR" simulators.iot.dentrassi.de does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for common
      • +
      • "ERROR" simulatorconsumers.iot.dentrassi.de does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for deploy
      • +
      • "ERROR" simulatorproducers.iot.dentrassi.de does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for login
      • -
      • "WARNING" Add a spec descriptor for infra
      • +
      • "WARNING" Add a spec descriptor for endpoint
      • -
      • "WARNING" Add a spec descriptor for common
      • +
      • "WARNING" Add CRD validation for Simulator/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for externalDb
      • +
      • "WARNING" Add CRD validation for SimulatorConsumer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for deploy
      • +
      • "WARNING" Add CRD validation for SimulatorProducer/v1alpha1
      • @@ -3613,54 +2272,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For aqua-operator.v6.0.0:

        - - -

      • "WARNING" (aqua-operator.v6.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - - -
        -

        For aqua-operator.v6.2.0:

        - - -

      • "WARNING" (aqua-operator.v6.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - - -
        -

        For aqua-operator.v1.0.2:

        - - -

      • "WARNING" (aqua-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - - -
        -

        For aqua-operator.v5.3.0:

        +

        For iot-simulator.0.1.0:

        -

      • "WARNING" (aqua-operator.v5.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (iot-simulator.0.1.0) csv.metadata.Name iot-simulator.0.1.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["simulatorconsumers.iot.dentrassi.de" "simulatorproducers.iot.dentrassi.de" "simulators.iot.dentrassi.de"])
      • @@ -3674,24 +2306,24 @@
        Grade
      argocd-operator-helmzoperator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -3704,11 +2336,11 @@
        Grade

      NOT USED

      @@ -3716,110 +2348,133 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For argocd-operator-helm.v0.0.7:

        - -

      • "ERROR" argocds.argoproj.io does not have a status descriptor
      • - -
      • "ERROR" nameOverride does not have a spec descriptor
      • - -
      • "ERROR" installCRDs does not have a spec descriptor
      • - -
      • "ERROR" dex does not have a spec descriptor
      • - -
      • "ERROR" redis does not have a spec descriptor
      • - -
      • "ERROR" redis-ha does not have a spec descriptor
      • - -
      • "ERROR" repoServer does not have a spec descriptor
      • - -
      • "ERROR" fullnameOverride does not have a spec descriptor
      • - -
      • "ERROR" global does not have a spec descriptor
      • - -
      • "ERROR" controller does not have a spec descriptor
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" configs does not have a spec descriptor
      • - -
      • "ERROR" openshift does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for nameOverride
      • - -
      • "WARNING" Add a spec descriptor for installCRDs
      • - -
      • "WARNING" Add a spec descriptor for dex
      • - -
      • "WARNING" Add a spec descriptor for redis
      • - -
      • "WARNING" Add a spec descriptor for redis-ha
      • - -
      • "WARNING" Add a spec descriptor for repoServer
      • - -
      • "WARNING" Add a spec descriptor for fullnameOverride
      • - -
      • "WARNING" Add a spec descriptor for global
      • +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for controller
      • -
      • "WARNING" Add a spec descriptor for server
      • +
        +

        For zoperator.v0.3.6:

        -

      • "WARNING" Add a spec descriptor for configs
      • -
      • "WARNING" Add a spec descriptor for openshift
      • +
      • "WARNING" (zoperator.v0.3.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add CRD validation for ArgoCD/v1alpha1
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      +

      NOT USED

      Grade D
      (300)
      event-streams-topic +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      PASS

      + +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For argocd-operator-helm.v0.0.7:

        +

        For event-streams-topic.v0.1.1:

        -

      • "WARNING" (argocd-operator-helm.v0.0.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (event-streams-topic.v0.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["argocds.argoproj.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["topics.ibmcloud.ibm.com"])
      • @@ -3829,35 +2484,45 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (300)
      community-kubevirt-hyperconvergedhpa-operator

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • beta
      • + +
      +
      +
      -

      USED

      +

      NOT USED

      @@ -3865,111 +2530,27 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubevirt-hyperconverged-operator.v1.4.1:

        - -

      • "ERROR" multus does not have a spec descriptor
      • - -
      • "ERROR" nmstate does not have a spec descriptor
      • - -
      • "ERROR" ovs does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" kubeMacPool does not have a spec descriptor
      • - -
      • "ERROR" linuxBridge does not have a spec descriptor
      • - -
      • "ERROR" macvtap does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" commonTemplates does not have a spec descriptor
      • - -
      • "ERROR" templateValidator does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" nodeName does not have a spec descriptor
      • - -
      • "ERROR" reason does not have a spec descriptor
      • - -
      • "ERROR" pathConfig does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" hyperconvergeds.hco.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" kubevirts.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" ssps.ssp.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" cdis.cdi.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" nodemaintenances.nodemaintenance.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" hostpathprovisioners.hostpathprovisioner.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" vmimportconfigs.v2v.kubevirt.io does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for multus
      • - -
      • "WARNING" Add a spec descriptor for nmstate
      • - -
      • "WARNING" Add a spec descriptor for ovs
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for kubeMacPool
      • - -
      • "WARNING" Add a spec descriptor for linuxBridge
      • - -
      • "WARNING" Add a spec descriptor for macvtap
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for commonTemplates
      • - -
      • "WARNING" Add a spec descriptor for templateValidator
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for nodeName
      • - -
      • "WARNING" Add a spec descriptor for reason
      • - -
      • "WARNING" Add a spec descriptor for pathConfig
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • +

        For hpa-operator.v0.1.6:

        -

      • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=OVirtProvider: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=V2VVmware: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value : (hpa-operator.v0.1.6) example annotations not found
      • @@ -3980,29 +2561,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubevirt-hyperconverged-operator.v1.4.1:

        - +

        For hpa-operator.v0.1.6:

        -

      • "WARNING" (kubevirt-hyperconverged-operator.v1.4.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (hpa-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (hpa-operator.v0.1.6) example annotations not found
      • @@ -4012,28 +2591,28 @@
        Grade

      NOT USED

      Grade B
      (700)
      Grade B
      (600)
      halkyonhazelcast-jet-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -4046,11 +2625,11 @@
        Grade

      NOT USED

      @@ -4060,65 +2639,39 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For halkyon.v0.1.8:

        - -

      • "ERROR" capabilities.halkyon.io does not have a status descriptor
      • - -
      • "ERROR" components.halkyon.io does not have a status descriptor
      • - -
      • "ERROR" links.halkyon.io does not have a status descriptor
      • - -
      • "ERROR" kind does not have a spec descriptor
      • - -
      • "ERROR" exposeService does not have a spec descriptor
      • +

        For hazelcast-jet-operator.v0.5.0:

        -

      • "ERROR" buildConfig does not have a spec descriptor
      • +
      • "ERROR" hazelcastjets.hazelcast.com does not have a status descriptor
      • -
      • "ERROR" port does not have a spec descriptor
      • +
      • "ERROR" securityContext does not have a spec descriptor
      • -
      • "ERROR" kind does not have a spec descriptor
      • +
      • "ERROR" cluster does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for Capability/v1beta1
      • - -
      • "WARNING" Add CRD validation for spec field `exposeService` in Component/v1beta1
      • - -
      • "WARNING" Add CRD validation for spec field `buildConfig` in Component/v1beta1
      • - -
      • "WARNING" Add CRD validation for spec field `port` in Component/v1beta1
      • - -
      • "WARNING" Add CRD validation for spec field `deploymentMode` in Component/v1beta1
      • - -
      • "WARNING" Add CRD validation for spec field `version` in Component/v1beta1
      • - -
      • "WARNING" Add CRD validation for Link/v1beta1
      • - -
      • "WARNING" Add a spec descriptor for kind
      • - -
      • "WARNING" Add a spec descriptor for exposeService
      • +
      • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJet/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for buildConfig
      • +
      • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJet/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for port
      • +
      • "WARNING" Add a spec descriptor for securityContext
      • -
      • "WARNING" Add a spec descriptor for kind
      • +
      • "WARNING" Add a spec descriptor for cluster
      • @@ -4129,27 +2682,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For halkyon.v0.1.8:

        +

        For hazelcast-jet-operator.v0.5.0:

        -

      • "WARNING" (halkyon.v0.1.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (hazelcast-jet-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["capabilities.halkyon.io" "components.halkyon.io" "links.halkyon.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastjets.hazelcast.com"])
      • @@ -4163,71 +2716,107 @@
        Grade
      ibm-application-gateway-operatormetallb-operator -

      NOT COMPLY

      +

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For ibm-application-gateway-operator.v21.6.0:

        + +
        +

        For metallb-operator.v0.10.2:

        + +

      • "ERROR" error spec does not exist
      • + +
      • "ERROR" addresspools.metallb.io does not have a status descriptor
      • + +
      • "ERROR" addresspools.metallb.io does not have a status descriptor
      • + +
      • "ERROR" addresspools.metallb.io does not have a status descriptor
      • -
      • "ERROR" configuration does not have a spec descriptor
      • +
      • "ERROR" metallbs.metallb.io does not have a status descriptor
      • -
      • "ERROR" deployment does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" addresses does not have a spec descriptor
      • -
      • "ERROR" ibmapplicationgateways.ibm.com does not have a status descriptor
      • +
      • "ERROR" protocol does not have a spec descriptor
      • +
      • "ERROR" addresses does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for configuration
      • +
      • "ERROR" autoAssign does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for deployment
      • +
      • "ERROR" protocol does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" addresses does not have a spec descriptor
      • + +
      • "ERROR" protocol does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for addresses
      • + +
      • "WARNING" Add a spec descriptor for protocol
      • + +
      • "WARNING" Add a spec descriptor for addresses
      • + +
      • "WARNING" Add a spec descriptor for autoAssign
      • + +
      • "WARNING" Add a spec descriptor for protocol
      • + +
      • "WARNING" Add a spec descriptor for addresses
      • + +
      • "WARNING" Add a spec descriptor for protocol
      • @@ -4238,27 +2827,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ibm-application-gateway-operator.v21.6.0:

        - +

        For metallb-operator.v0.10.2:

        -

      • "WARNING" (ibm-application-gateway-operator.v21.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmapplicationgateways.ibm.com"])
      • +
      • "WARNING" (metallb-operator.v0.10.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -4268,38 +2855,34 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (600)
      infinispanmulticluster-operators-subscription -

      PARTIAL COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • 2.0.x
      • - -
      • dev-preview
      • - -
      • 2.1.x
      • +
      • release-2.3
      • -
      • 1.1.x
      • +
      • alpha
      @@ -4308,11 +2891,11 @@
      Grade

      NOT USED

      @@ -4322,103 +2905,96 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For infinispan-operator.v1.1.2:

        - - -

      • "WARNING" Add CRD validation for Infinispan/v1
      • +

        For multicluster-operators-subscription.v0.2.8:

        +

      • "ERROR" type does not have a spec descriptor
      • -
        -

        For infinispan-operator.v2.0.6:

        +

      • "ERROR" pathname does not have a spec descriptor
      • -
      • "ERROR" adminAuth does not have a spec descriptor
      • +
      • "ERROR" placement does not have a spec descriptor
      • -
      • "ERROR" clusterName does not have a spec descriptor
      • +
      • "ERROR" packageFilter does not have a spec descriptor
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "ERROR" packageOverrides does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" caches.infinispan.org does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for adminAuth
      • - -
      • "WARNING" Add a spec descriptor for clusterName
      • - -
      • "WARNING" Add a spec descriptor for name
      • +
      • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
      • -
        -

        For infinispan-operator.v2.0.4:

        +

      • "WARNING" Add a spec descriptor for type
      • -
      • "ERROR" clusterName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for pathname
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for placement
      • -
      • "ERROR" adminAuth does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for packageFilter
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for packageOverrides
      • -
      • "ERROR" caches.infinispan.org does not have a status descriptor
      • +
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for clusterName
      • +
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for adminAuth
      • +
      • "WARNING" Add CRD validation for status field `state` in Channel/v1

      • -

        For infinispan-operator.v2.1.5:

        +

        For multicluster-operators-subscription.v0.1.2:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" container does not have a spec descriptor
      • +
      • "ERROR" pathname does not have a spec descriptor
      • -
      • "ERROR" adminAuth does not have a spec descriptor
      • +
      • "ERROR" packageFilter does not have a spec descriptor
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "ERROR" packageOverrides does not have a spec descriptor
      • -
      • "ERROR" container does not have a spec descriptor
      • +
      • "ERROR" placement does not have a spec descriptor
      • -
      • "ERROR" backups.infinispan.org does not have a status descriptor
      • +
      • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
      • -
      • "ERROR" caches.infinispan.org does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" restores.infinispan.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for container
      • +
      • "WARNING" Add a spec descriptor for pathname
      • -
      • "WARNING" Add a spec descriptor for adminAuth
      • +
      • "WARNING" Add a spec descriptor for packageFilter
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for packageOverrides
      • -
      • "WARNING" Add a spec descriptor for container
      • +
      • "WARNING" Add a spec descriptor for placement
      • +
      • "WARNING" Add CRD validation for status field `state` in Channel/v1
      • -
        -

        For infinispan-operator.v1.1.2:

        +

      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
      • -
      • "WARNING" Add CRD validation for Infinispan/v1
      • +
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
      • @@ -4429,53 +3005,139 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For infinispan-operator.v1.1.2:

        +

        For multicluster-operators-subscription.v0.2.8:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infinispans.infinispan.org"])
      • +
      • "WARNING" (multicluster-operators-subscription.v0.2.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" provided API should have an example annotation
      • -
        -

        For infinispan-operator.v2.0.6:

        +

      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["caches.infinispan.org" "infinispans.infinispan.org"])
      • +
      • "WARNING" provided API should have an example annotation

      • -

        For infinispan-operator.v2.0.4:

        +

        For multicluster-operators-subscription.v0.1.2:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["caches.infinispan.org" "infinispans.infinispan.org"])
      • +
      • "WARNING" (multicluster-operators-subscription.v0.1.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io"])
      • -
        -

        For infinispan-operator.v2.1.5:

        +

      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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.infinispan.org" "batches.infinispan.org" "caches.infinispan.org" "infinispans.infinispan.org" "restores.infinispan.org"])
      • +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + + + +
      +
      + +

      NOT USED

      Grade C
      (500)
      node-healthcheck-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      USED

      +

      PASS

      + + +
      +

      ONLY WARNINGS

      + + + +Info +
      +

        -

        For infinispan-operator.v1.1.2:

        +

        For node-healthcheck-operator.v0.1.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infinispans.infinispan.org"])
      • +
      • "WARNING" (node-healthcheck-operator.v0.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -4485,32 +3147,32 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (800)
      neuvector-operatorapi-operator -

      PARTIAL COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • 2.x-stable
      @@ -4519,11 +3181,11 @@
      Grade

      NOT USED

      @@ -4533,105 +3195,206 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For neuvector-operator.v1.2.7:

        +

        For api-operator.v2.0.0:

        -

      • "ERROR" admissionwebhook does not have a spec descriptor
      • +
      • "ERROR" apis.wso2.com does not have a status descriptor
      • -
      • "ERROR" crdwebhook does not have a spec descriptor
      • +
      • "ERROR" integrations.wso2.com does not have a status descriptor
      • -
      • "ERROR" enforcer does not have a spec descriptor
      • +
      • "ERROR" targetendpoints.wso2.com does not have a status descriptor
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "ERROR" swaggerConfigMapName does not have a spec descriptor
      • -
      • "ERROR" containerd does not have a spec descriptor
      • +
      • "ERROR" certsValues does not have a spec descriptor
      • -
      • "ERROR" openshift does not have a spec descriptor
      • +
      • "ERROR" paramsValues does not have a spec descriptor
      • -
      • "ERROR" cve does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" crio does not have a spec descriptor
      • +
      • "ERROR" autoScale does not have a spec descriptor
      • -
      • "ERROR" serviceAccount does not have a spec descriptor
      • +
      • "ERROR" deploySpec does not have a spec descriptor
      • -
      • "ERROR" bottlerocket does not have a spec descriptor
      • +
      • "ERROR" env does not have a spec descriptor
      • -
      • "ERROR" tag does not have a spec descriptor
      • +
      • "ERROR" expose does not have a spec descriptor
      • -
      • "ERROR" oem does not have a spec descriptor
      • +
      • "ERROR" applicationProtocol does not have a spec descriptor
      • -
      • "ERROR" psp does not have a spec descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "ERROR" manager does not have a spec descriptor
      • +
      • "ERROR" mode does not have a spec descriptor
      • -
      • "ERROR" docker does not have a spec descriptor
      • +
      • "ERROR" ports does not have a spec descriptor
      • -
      • "ERROR" k3s does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" registry does not have a spec descriptor
      • -
      • "ERROR" imagePullSecrets does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for swaggerConfigMapName
      • -
      • "ERROR" controller does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for certsValues
      • -
      • "ERROR" neuvectors.apm.neuvector.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for paramsValues
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for autoScale
      • + +
      • "WARNING" Add a spec descriptor for deploySpec
      • + +
      • "WARNING" Add a spec descriptor for env
      • + +
      • "WARNING" Add a spec descriptor for expose
      • + +
      • "WARNING" Add a spec descriptor for applicationProtocol
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for ports
      • + + +
        +

        For api-operator.v1.2.3:

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" securities.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for admissionwebhook
      • +
      • "ERROR" securities.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for crdwebhook
      • +
      • "ERROR" securities.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for enforcer
      • +
      • "ERROR" securities.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "ERROR" securities.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for containerd
      • +
      • "ERROR" apis.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for openshift
      • +
      • "ERROR" ratelimitings.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for cve
      • +
      • "ERROR" targetendpoints.wso2.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for crio
      • +
      • "ERROR" securityConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceAccount
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for bottlerocket
      • +
      • "ERROR" securityConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for tag
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for oem
      • +
      • "ERROR" securityConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for psp
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for manager
      • +
      • "ERROR" securityConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for docker
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for k3s
      • +
      • "ERROR" securityConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for registry
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for imagePullSecrets
      • +
      • "ERROR" definition does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for controller
      • +
      • "ERROR" mode does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Neuvector/v1alpha1
      • +
      • "ERROR" override does not have a spec descriptor
      • + +
      • "ERROR" replicas does not have a spec descriptor
      • + +
      • "ERROR" conditions does not have a spec descriptor
      • + +
      • "ERROR" description does not have a spec descriptor
      • + +
      • "ERROR" requestCount does not have a spec descriptor
      • + +
      • "ERROR" stopOnQuotaReach does not have a spec descriptor
      • + +
      • "ERROR" timeUnit does not have a spec descriptor
      • + +
      • "ERROR" type does not have a spec descriptor
      • + +
      • "ERROR" unitTime does not have a spec descriptor
      • + +
      • "ERROR" bandwidth does not have a spec descriptor
      • + +
      • "ERROR" applicationProtocol does not have a spec descriptor
      • + +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" ports does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for securityConfig
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for securityConfig
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for securityConfig
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for securityConfig
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for securityConfig
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for definition
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for override
      • + +
      • "WARNING" Add a spec descriptor for replicas
      • + +
      • "WARNING" Add a spec descriptor for conditions
      • + +
      • "WARNING" Add a spec descriptor for description
      • + +
      • "WARNING" Add a spec descriptor for requestCount
      • + +
      • "WARNING" Add a spec descriptor for stopOnQuotaReach
      • + +
      • "WARNING" Add a spec descriptor for timeUnit
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for unitTime
      • + +
      • "WARNING" Add a spec descriptor for bandwidth
      • + +
      • "WARNING" Add a spec descriptor for applicationProtocol
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for ports
      • @@ -4642,27 +3405,36 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For neuvector-operator.v1.2.7:

        +

        For api-operator.v2.0.0:

        -

      • "WARNING" (neuvector-operator.v1.2.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (api-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apis.wso2.com" "integrations.wso2.com" "targetendpoints.wso2.com"])
      • + + +
        +

        For api-operator.v1.2.3:

        + + +

      • "WARNING" (api-operator.v1.2.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apis.wso2.com" "ratelimitings.wso2.com" "securities.wso2.com" "targetendpoints.wso2.com"])
      • @@ -4672,32 +3444,32 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      percona-server-mongodb-operatorclickhouse -

      PARTIAL COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • original
      • +
      • latest
      @@ -4706,11 +3478,11 @@
      Grade

      NOT USED

      @@ -4720,168 +3492,97 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For percona-server-mongodb-operator.v1.9.0:

        - -

      • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
      • - -
      • "ERROR" pmm does not have a spec descriptor
      • - -
      • "ERROR" replsets does not have a spec descriptor
      • - -
      • "ERROR" sharding does not have a spec descriptor
      • - -
      • "ERROR" crVersion does not have a spec descriptor
      • - -
      • "ERROR" updateStrategy does not have a spec descriptor
      • - -
      • "ERROR" upgradeOptions does not have a spec descriptor
      • - -
      • "ERROR" secrets does not have a spec descriptor
      • - -
      • "ERROR" mongod does not have a spec descriptor
      • - -
      • "ERROR" backup does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" psmdbCluster does not have a spec descriptor
      • - -
      • "ERROR" storageName does not have a spec descriptor
      • - -
      • "ERROR" clusterName does not have a spec descriptor
      • - -
      • "ERROR" backupName does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-9-0
      • - -
      • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
      • - -
      • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
      • - -
      • "WARNING" Add a spec descriptor for pmm
      • - -
      • "WARNING" Add a spec descriptor for replsets
      • - -
      • "WARNING" Add a spec descriptor for sharding
      • - -
      • "WARNING" Add a spec descriptor for crVersion
      • - -
      • "WARNING" Add a spec descriptor for updateStrategy
      • - -
      • "WARNING" Add a spec descriptor for upgradeOptions
      • - -
      • "WARNING" Add a spec descriptor for secrets
      • - -
      • "WARNING" Add a spec descriptor for mongod
      • - -
      • "WARNING" Add a spec descriptor for backup
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for psmdbCluster
      • +

        For clickhouse-operator.v0.15.0:

        -

      • "WARNING" Add a spec descriptor for storageName
      • +
      • "ERROR" clickhouseinstallations.clickhouse.altinity.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for clusterName
      • +
      • "ERROR" clickhouseinstallationtemplates.clickhouse.altinity.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for backupName
      • +
      • "ERROR" clickhouseoperatorconfigurations.clickhouse.altinity.com does not have a status descriptor
      • +
      • "ERROR" configuration does not have a spec descriptor
      • -
        -

        For percona-server-mongodb-operator.v1.3.0:

        +

      • "ERROR" configuration does not have a spec descriptor
      • -
      • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
      • +
      • "ERROR" chiTemplatesPath does not have a spec descriptor
      • -
      • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
      • +
      • "ERROR" onStatefulSetCreateFailureAction does not have a spec descriptor
      • -
      • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
      • +
      • "ERROR" chConfigUserDefaultProfile does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" chConfigUserDefaultQuota does not have a spec descriptor
      • -
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • +
      • "ERROR" chConfigUserDefaultPassword does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" chUsername does not have a spec descriptor
      • -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • +
      • "ERROR" chCommonConfigsPath does not have a spec descriptor
      • -
      • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
      • +
      • "ERROR" chHostConfigsPath does not have a spec descriptor
      • -
      • "ERROR" secrets does not have a spec descriptor
      • +
      • "ERROR" statefulSetUpdatePollPeriod does not have a spec descriptor
      • -
      • "ERROR" pmm does not have a spec descriptor
      • +
      • "ERROR" onStatefulSetUpdateFailureAction does not have a spec descriptor
      • -
      • "ERROR" replsets does not have a spec descriptor
      • +
      • "ERROR" chConfigUserDefaultNetworksIP does not have a spec descriptor
      • -
      • "ERROR" mongod does not have a spec descriptor
      • +
      • "ERROR" chUsersConfigsPath does not have a spec descriptor
      • -
      • "ERROR" backup does not have a spec descriptor
      • +
      • "ERROR" chPort does not have a spec descriptor
      • -
      • "ERROR" backupName does not have a spec descriptor
      • +
      • "ERROR" statefulSetUpdateTimeout does not have a spec descriptor
      • -
      • "ERROR" clusterName does not have a spec descriptor
      • +
      • "ERROR" chPassword does not have a spec descriptor
      • -
      • "ERROR" psmdbCluster does not have a spec descriptor
      • -
      • "ERROR" storageName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for configuration
      • +
      • "WARNING" Add a spec descriptor for configuration
      • -
      • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-3-0
      • +
      • "WARNING" Add a spec descriptor for chiTemplatesPath
      • -
      • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
      • +
      • "WARNING" Add a spec descriptor for onStatefulSetCreateFailureAction
      • -
      • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
      • +
      • "WARNING" Add a spec descriptor for chConfigUserDefaultProfile
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for chConfigUserDefaultQuota
      • -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • +
      • "WARNING" Add a spec descriptor for chConfigUserDefaultPassword
      • -
      • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
      • +
      • "WARNING" Add a spec descriptor for chUsername
      • -
      • "WARNING" Add a spec descriptor for secrets
      • +
      • "WARNING" Add a spec descriptor for chCommonConfigsPath
      • -
      • "WARNING" Add a spec descriptor for pmm
      • +
      • "WARNING" Add a spec descriptor for chHostConfigsPath
      • -
      • "WARNING" Add a spec descriptor for replsets
      • +
      • "WARNING" Add a spec descriptor for statefulSetUpdatePollPeriod
      • -
      • "WARNING" Add a spec descriptor for mongod
      • +
      • "WARNING" Add a spec descriptor for onStatefulSetUpdateFailureAction
      • -
      • "WARNING" Add a spec descriptor for backup
      • +
      • "WARNING" Add a spec descriptor for chConfigUserDefaultNetworksIP
      • -
      • "WARNING" Add a spec descriptor for backupName
      • +
      • "WARNING" Add a spec descriptor for chUsersConfigsPath
      • -
      • "WARNING" Add a spec descriptor for clusterName
      • +
      • "WARNING" Add a spec descriptor for chPort
      • -
      • "WARNING" Add a spec descriptor for psmdbCluster
      • +
      • "WARNING" Add a spec descriptor for statefulSetUpdateTimeout
      • -
      • "WARNING" Add a spec descriptor for storageName
      • +
      • "WARNING" Add a spec descriptor for chPassword
      • @@ -4892,36 +3593,104 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For percona-server-mongodb-operator.v1.9.0:

        +

        For clickhouse-operator.v0.15.0:

        -

      • "WARNING" (percona-server-mongodb-operator.v1.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clickhouseinstallations.clickhouse.altinity.com" "clickhouseinstallationtemplates.clickhouse.altinity.com" "clickhouseoperatorconfigurations.clickhouse.altinity.com"])
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
      • + + +
      +
      + +

      NOT USED

      Grade D
      (100)
      flagsmith +

      COMPLY

      +
      +

      COMPLY

      + + +
      +

      NOT USED

      + + +

      USED

      +

      PASS

      + + +
      +

      ONLY WARNINGS

      + + + +Info +
      +

        -

        For percona-server-mongodb-operator.v1.3.0:

        - +

        For flagsmith-operator.v1.0.0:

        -

      • "WARNING" (percona-server-mongodb-operator.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
      • +
      • "WARNING" (flagsmith-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -4931,32 +3700,32 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade A
      (900)
      cluster-impairment-operatorhalkyon -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • alpha
      @@ -4965,137 +3734,79 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For cluster-impairment-operator.v1.0.0:

        - -

      • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
      • - -
      • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
      • - -
      • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
      • - -
      • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
      • - -
      • "ERROR" link_flapping does not have a spec descriptor
      • - -
      • "ERROR" start_delay does not have a spec descriptor
      • - -
      • "ERROR" duration does not have a spec descriptor
      • - -
      • "ERROR" egress does not have a spec descriptor
      • - -
      • "ERROR" ingress does not have a spec descriptor
      • - -
      • "ERROR" interfaces does not have a spec descriptor
      • - -
      • "ERROR" duration does not have a spec descriptor
      • - -
      • "ERROR" interfaces does not have a spec descriptor
      • - -
      • "ERROR" link_flapping does not have a spec descriptor
      • - -
      • "ERROR" start_delay does not have a spec descriptor
      • - -
      • "ERROR" duration does not have a spec descriptor
      • - -
      • "ERROR" egress does not have a spec descriptor
      • - -
      • "ERROR" ingress does not have a spec descriptor
      • - -
      • "ERROR" interfaces does not have a spec descriptor
      • +

        For halkyon.v0.1.8:

        -

      • "ERROR" loss does not have a spec descriptor
      • +
      • "ERROR" capabilities.halkyon.io does not have a status descriptor
      • -
      • "ERROR" start_delay does not have a spec descriptor
      • +
      • "ERROR" components.halkyon.io does not have a status descriptor
      • -
      • "ERROR" duration does not have a spec descriptor
      • +
      • "ERROR" links.halkyon.io does not have a status descriptor
      • -
      • "ERROR" egress does not have a spec descriptor
      • +
      • "ERROR" kind does not have a spec descriptor
      • -
      • "ERROR" ingress does not have a spec descriptor
      • +
      • "ERROR" exposeService does not have a spec descriptor
      • -
      • "ERROR" interfaces does not have a spec descriptor
      • +
      • "ERROR" buildConfig does not have a spec descriptor
      • -
      • "ERROR" node_selector does not have a spec descriptor
      • +
      • "ERROR" port does not have a spec descriptor
      • -
      • "ERROR" start_delay does not have a spec descriptor
      • +
      • "ERROR" kind does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for spec field `loss` in ClusterImpairment/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for link_flapping
      • - -
      • "WARNING" Add a spec descriptor for start_delay
      • - -
      • "WARNING" Add a spec descriptor for duration
      • - -
      • "WARNING" Add a spec descriptor for egress
      • - -
      • "WARNING" Add a spec descriptor for ingress
      • - -
      • "WARNING" Add a spec descriptor for interfaces
      • - -
      • "WARNING" Add a spec descriptor for duration
      • - -
      • "WARNING" Add a spec descriptor for interfaces
      • - -
      • "WARNING" Add a spec descriptor for link_flapping
      • - -
      • "WARNING" Add a spec descriptor for start_delay
      • - -
      • "WARNING" Add a spec descriptor for duration
      • +
      • "WARNING" Add CRD validation for Capability/v1beta1
      • -
      • "WARNING" Add a spec descriptor for egress
      • +
      • "WARNING" Add CRD validation for spec field `exposeService` in Component/v1beta1
      • -
      • "WARNING" Add a spec descriptor for ingress
      • +
      • "WARNING" Add CRD validation for spec field `buildConfig` in Component/v1beta1
      • -
      • "WARNING" Add a spec descriptor for interfaces
      • +
      • "WARNING" Add CRD validation for spec field `port` in Component/v1beta1
      • -
      • "WARNING" Add a spec descriptor for loss
      • +
      • "WARNING" Add CRD validation for spec field `deploymentMode` in Component/v1beta1
      • -
      • "WARNING" Add a spec descriptor for start_delay
      • +
      • "WARNING" Add CRD validation for spec field `version` in Component/v1beta1
      • -
      • "WARNING" Add a spec descriptor for duration
      • +
      • "WARNING" Add CRD validation for Link/v1beta1
      • -
      • "WARNING" Add a spec descriptor for egress
      • +
      • "WARNING" Add a spec descriptor for kind
      • -
      • "WARNING" Add a spec descriptor for ingress
      • +
      • "WARNING" Add a spec descriptor for exposeService
      • -
      • "WARNING" Add a spec descriptor for interfaces
      • +
      • "WARNING" Add a spec descriptor for buildConfig
      • -
      • "WARNING" Add a spec descriptor for node_selector
      • +
      • "WARNING" Add a spec descriptor for port
      • -
      • "WARNING" Add a spec descriptor for start_delay
      • +
      • "WARNING" Add a spec descriptor for kind
      • @@ -5104,120 +3815,128 @@
        Grade
      -

      PASS

      +

      ONLY WARNINGS

      + +Info +
      +
        + + +
        +

        For halkyon.v0.1.8:

        + + +

      • "WARNING" (halkyon.v0.1.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["capabilities.halkyon.io" "components.halkyon.io" "links.halkyon.io"])
      • + + + +
      +
      +

      NOT USED

      Grade B
      (700)
      Grade D
      (100)
      dell-csi-operatoropenshift-qiskit-operator

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +
      -

      NOT USED

      +

      REQUIRED

      + +Info +
      +

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      +
        + +
      • openshift-qiskit-operator.v0.2.0
      • + +
      +
      +

      USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For dell-csi-operator.v1.4.0:

        - -

      • "ERROR" config does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" tlsSecret does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for config
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for tlsSecret
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For dell-csi-operator.v1.4.0:

        +

        For openshift-qiskit-operator.v0.2.0:

        -

      • "WARNING" (dell-csi-operator.v1.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (openshift-qiskit-operator.v0.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -5227,28 +3946,28 @@
        Grade

      NOT USED

      Grade B
      (700)
      Grade B
      (800)
      druid-operatorprometheus-exporter-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -5261,11 +3980,11 @@
        Grade

      NOT USED

      @@ -5275,87 +3994,43 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For druid-operator.v0.0.6:

        - -

      • "ERROR" startScript does not have a spec descriptor
      • - -
      • "ERROR" securityContext does not have a spec descriptor
      • - -
      • "ERROR" jvm.options does not have a spec descriptor
      • - -
      • "ERROR" podLabels does not have a spec descriptor
      • - -
      • "ERROR" services does not have a spec descriptor
      • - -
      • "ERROR" log4j.config does not have a spec descriptor
      • - -
      • "ERROR" env does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" podAnnotations does not have a spec descriptor
      • - -
      • "ERROR" readinessProbe does not have a spec descriptor
      • - -
      • "ERROR" commonConfigMountPath does not have a spec descriptor
      • - -
      • "ERROR" volumeMounts does not have a spec descriptor
      • - -
      • "ERROR" common.runtime.properties does not have a spec descriptor
      • - -
      • "ERROR" volumes does not have a spec descriptor
      • - -
      • "ERROR" nodes does not have a spec descriptor
      • - -
      • "ERROR" druids.druid.apache.org does not have a status descriptor
      • +

        For prometheus-exporter-operator.v0.2.4:

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" grafanaDashboard does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for startScript
      • - -
      • "WARNING" Add a spec descriptor for securityContext
      • - -
      • "WARNING" Add a spec descriptor for jvm.options
      • - -
      • "WARNING" Add a spec descriptor for podLabels
      • - -
      • "WARNING" Add a spec descriptor for services
      • - -
      • "WARNING" Add a spec descriptor for log4j.config
      • - -
      • "WARNING" Add a spec descriptor for env
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "ERROR" dbHost does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for podAnnotations
      • +
      • "ERROR" dbPort does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for readinessProbe
      • +
      • "ERROR" prometheusexporters.monitoring.3scale.net does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for commonConfigMountPath
      • -
      • "WARNING" Add a spec descriptor for volumeMounts
      • +
      • "WARNING" Add a spec descriptor for grafanaDashboard
      • -
      • "WARNING" Add a spec descriptor for common.runtime.properties
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for volumes
      • +
      • "WARNING" Add a spec descriptor for dbHost
      • -
      • "WARNING" Add a spec descriptor for nodes
      • +
      • "WARNING" Add a spec descriptor for dbPort
      • @@ -5364,50 +4039,64 @@
        Grade
      -

      PASS

      +

      ONLY WARNINGS

      + +Info +
      +
        + + +
        +

        For prometheus-exporter-operator.v0.2.4:

        + + +

      • "WARNING" (prometheus-exporter-operator.v0.2.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["prometheusexporters.monitoring.3scale.net"])
      • + + + +
      +
      +

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      etcdservice-binding-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • - -
      • clusterwide-alpha
      • - -
      • singlenamespace-alpha
      • +
      • beta
      @@ -5416,117 +4105,59 @@
      Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For etcdoperator-community.v0.6.1:

        - -

      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • - - -
      • "WARNING" Warning: Value : (etcdoperator-community.v0.6.1) example annotations not found
      • - - -
        -

        For etcdoperator.v0.9.4-clusterwide:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" version does not have a spec descriptor
      • - -
      • "ERROR" etcdCluster does not have a spec descriptor
      • - -
      • "ERROR" backupStorageType does not have a spec descriptor
      • - -
      • "ERROR" s3 does not have a spec descriptor
      • - -
      • "ERROR" storageType does not have a spec descriptor
      • - -
      • "ERROR" s3 does not have a spec descriptor
      • - -
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • - - -
      • "WARNING" Add CRD validation for EtcdCluster/v1beta2
      • - -
      • "WARNING" Add CRD validation for EtcdRestore/v1beta2
      • - -
      • "WARNING" Add CRD validation for EtcdBackup/v1beta2
      • - -
      • "WARNING" Add a spec descriptor for version
      • - -
      • "WARNING" Add a spec descriptor for etcdCluster
      • - -
      • "WARNING" Add a spec descriptor for backupStorageType
      • - -
      • "WARNING" Add a spec descriptor for s3
      • - -
      • "WARNING" Add a spec descriptor for storageType
      • - -
      • "WARNING" Add a spec descriptor for s3
      • - - -
        -

        For etcdoperator.v0.9.4:

        - -

      • "ERROR" version does not have a spec descriptor
      • - -
      • "ERROR" etcdCluster does not have a spec descriptor
      • +

        For service-binding-operator.v0.9.1:

        -

      • "ERROR" backupStorageType does not have a spec descriptor
      • +
      • "ERROR" application does not have a spec descriptor
      • -
      • "ERROR" s3 does not have a spec descriptor
      • +
      • "ERROR" services does not have a spec descriptor
      • -
      • "ERROR" s3 does not have a spec descriptor
      • +
      • "ERROR" service does not have a spec descriptor
      • -
      • "ERROR" storageType does not have a spec descriptor
      • +
      • "ERROR" application does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for EtcdCluster/v1beta2
      • - -
      • "WARNING" Add CRD validation for EtcdRestore/v1beta2
      • - -
      • "WARNING" Add CRD validation for EtcdBackup/v1beta2
      • - -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for etcdCluster
      • -
      • "WARNING" Add a spec descriptor for backupStorageType
      • +
      • "WARNING" Add a spec descriptor for application
      • -
      • "WARNING" Add a spec descriptor for s3
      • +
      • "WARNING" Add a spec descriptor for services
      • -
      • "WARNING" Add a spec descriptor for s3
      • +
      • "WARNING" Add a spec descriptor for service
      • -
      • "WARNING" Add a spec descriptor for storageType
      • +
      • "WARNING" Add a spec descriptor for application
      • @@ -5537,47 +4168,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For etcdoperator-community.v0.6.1:

        - - -

      • "WARNING" (etcdoperator-community.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["etcdclusters.etcd.database.coreos.com"])
      • - -
      • "WARNING" (etcdoperator-community.v0.6.1) example annotations not found
      • - - -
        -

        For etcdoperator.v0.9.4-clusterwide:

        - - -

      • "WARNING" (etcdoperator.v0.9.4-clusterwide) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["etcdbackups.etcd.database.coreos.com" "etcdclusters.etcd.database.coreos.com" "etcdrestores.etcd.database.coreos.com"])
      • - - -
        -

        For etcdoperator.v0.9.4:

        - +

        For service-binding-operator.v0.9.1:

        -

      • "WARNING" (etcdoperator.v0.9.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["etcdbackups.etcd.database.coreos.com" "etcdclusters.etcd.database.coreos.com" "etcdrestores.etcd.database.coreos.com"])
      • +
      • "WARNING" (service-binding-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -5587,76 +4196,124 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      robin-operatorvarnish-operator -

      NOT COMPLY

      +

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      NOT USED

      USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For varnish-operator.v0.27.2:

        + +

      • "ERROR" varnishclusters.caching.ibm.com does not have a status descriptor
      • + +
      • "ERROR" varnish does not have a spec descriptor
      • + +
      • "ERROR" vcl does not have a spec descriptor
      • + +
      • "ERROR" backend does not have a spec descriptor
      • + +
      • "ERROR" replicas does not have a spec descriptor
      • + +
      • "ERROR" service does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for varnish
      • + +
      • "WARNING" Add a spec descriptor for vcl
      • + +
      • "WARNING" Add a spec descriptor for backend
      • + +
      • "WARNING" Add a spec descriptor for replicas
      • + +
      • "WARNING" Add a spec descriptor for service
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For robin-operator.v5.3.2-59:

        +

        For varnish-operator.v0.27.2:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" (varnish-operator.v0.27.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -5666,35 +4323,45 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade B
      (600)
      sematextcomposable-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -5702,66 +4369,42 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For sematext-operator.v1.0.33:

        - -

      • "ERROR" region does not have a spec descriptor
      • - -
      • "ERROR" sematextagents.sematext.com does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for region
      • - -
      • "WARNING" Add CRD validation for SematextAgent/v1alpha1
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For sematext-operator.v1.0.33:

        +

        For composable-operator.v0.1.3:

        -

      • "WARNING" (sematext-operator.v1.0.33) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (composable-operator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["composables.ibmcloud.ibm.com"])
      • @@ -5771,28 +4414,28 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (300)
      postgresql-operatordatatrucker-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -5805,51 +4448,87 @@
        Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For postgresql-operator.v0.0.1:

        +

        For datatrucker-operator.v1.3.0:

        -

      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" datatruckerconfigs.datatrucker.datatrucker.io does not have a status descriptor
      • -
      • "ERROR" size does not have a spec descriptor
      • +
      • "ERROR" datatruckerflows.datatrucker.datatrucker.io does not have a status descriptor
      • + +
      • "ERROR" API does not have a spec descriptor
      • + +
      • "ERROR" DB does not have a spec descriptor
      • + +
      • "ERROR" TempDB does not have a spec descriptor
      • + +
      • "ERROR" DatatruckerConfig does not have a spec descriptor
      • + +
      • "ERROR" JobDefinitions does not have a spec descriptor
      • + +
      • "ERROR" Keys does not have a spec descriptor
      • + +
      • "ERROR" Replicas does not have a spec descriptor
      • + +
      • "ERROR" Resources does not have a spec descriptor
      • + +
      • "ERROR" Scripts does not have a spec descriptor
      • + +
      • "ERROR" Type does not have a spec descriptor
      • + +
      • "ERROR" API does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" postgresqls.postgresql.example.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for API
      • -
      • "WARNING" Add CRD validation for Postgresql/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for DB
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for TempDB
      • -
      • "WARNING" Add a spec descriptor for size
      • +
      • "WARNING" Add a spec descriptor for DatatruckerConfig
      • + +
      • "WARNING" Add a spec descriptor for JobDefinitions
      • + +
      • "WARNING" Add a spec descriptor for Keys
      • + +
      • "WARNING" Add a spec descriptor for Replicas
      • + +
      • "WARNING" Add a spec descriptor for Resources
      • + +
      • "WARNING" Add a spec descriptor for Scripts
      • + +
      • "WARNING" Add a spec descriptor for Type
      • + +
      • "WARNING" Add a spec descriptor for API
      • @@ -5860,29 +4539,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For postgresql-operator.v0.0.1:

        - - -

      • "WARNING" (postgresql-operator.v0.0.1) csv.Spec.Icon not specified
      • +

        For datatrucker-operator.v1.3.0:

        -

      • "WARNING" (postgresql-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["postgresqls.postgresql.example.com"])
      • +
      • "WARNING" (datatrucker-operator.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -5892,33 +4567,37 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      shipwright-operatorgrafana-operator

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • +
      • original
      • + +
      • v4
      • +
      @@ -5926,77 +4605,161 @@
      Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For shipwright-operator.v0.1.0:

        +

        For grafana-operator.v3.10.3:

        -

      • "ERROR" buildSteps does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" buildSteps does not have a spec descriptor
      • +
      • "ERROR" dashboardLabelSelector does not have a spec descriptor
      • -
      • "ERROR" output does not have a spec descriptor
      • +
      • "ERROR" ingress does not have a spec descriptor
      • -
      • "ERROR" source does not have a spec descriptor
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "ERROR" strategy does not have a spec descriptor
      • +
      • "ERROR" json does not have a spec descriptor
      • -
      • "ERROR" dockerfile does not have a spec descriptor
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "ERROR" datasources does not have a spec descriptor
      • -
      • "ERROR" buildRef does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" grafanas.integreatly.org does not have a status descriptor
      • + +
      • "ERROR" grafanadashboards.integreatly.org does not have a status descriptor
      • + +
      • "ERROR" grafanadatasources.integreatly.org does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `dashboardLabelSelector` in Grafana/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for dashboardLabelSelector
      • + +
      • "WARNING" Add a spec descriptor for ingress
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add a spec descriptor for json
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add a spec descriptor for datasources
      • + + +
        +

        For grafana-operator.v2.0.0:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" buildstrategies.build.dev does not have a status descriptor
      • +
      • "ERROR" ingress does not have a spec descriptor
      • -
      • "ERROR" clusterbuildstrategies.build.dev does not have a status descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • +
      • "ERROR" dashboardLabelSelector does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for buildSteps
      • +
      • "ERROR" json does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for buildSteps
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for output
      • +
      • "ERROR" datasources does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for source
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for strategy
      • +
      • "ERROR" grafanas.integreatly.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for dockerfile
      • +
      • "ERROR" grafanadashboards.integreatly.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "ERROR" grafanadatasources.integreatly.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for buildRef
      • -
      • "WARNING" Add CRD validation for spec field `resources` in BuildRun/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for ingress
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for dashboardLabelSelector
      • + +
      • "WARNING" Add a spec descriptor for json
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add a spec descriptor for datasources
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add CRD validation for spec field `dashboardLabelSelector` in Grafana/v1alpha1
      • + + +
        +

        For grafana-operator.v4.0.0:

        + +

      • "ERROR" grafanas.integreatly.org does not have a status descriptor
      • + +
      • "ERROR" grafanadashboards.integreatly.org does not have a status descriptor
      • + +
      • "ERROR" grafanadatasources.integreatly.org does not have a status descriptor
      • + +
      • "ERROR" ingress does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" dashboardLabelSelector does not have a spec descriptor
      • + +
      • "ERROR" json does not have a spec descriptor
      • + +
      • "ERROR" name does not have a spec descriptor
      • + +
      • "ERROR" datasources does not have a spec descriptor
      • + +
      • "ERROR" name does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for ingress
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for dashboardLabelSelector
      • + +
      • "WARNING" Add a spec descriptor for json
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add a spec descriptor for datasources
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add CRD validation for spec field `name` in GrafanaDashboard/v1alpha1
      • @@ -6007,25 +4770,43 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For shipwright-operator.v0.1.0:

        +

        For grafana-operator.v3.10.3:

        -

      • "WARNING" (shipwright-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (grafana-operator.v3.10.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["grafanadashboards.integreatly.org" "grafanadatasources.integreatly.org" "grafanas.integreatly.org"])
      • + + +
        +

        For grafana-operator.v2.0.0:

        + + +

      • "WARNING" (grafana-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["grafanadashboards.integreatly.org" "grafanadatasources.integreatly.org" "grafanas.integreatly.org"])
      • + + +
        +

        For grafana-operator.v4.0.0:

        + + +

      • "WARNING" (grafana-operator.v4.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -6035,22 +4816,22 @@
        Grade

      NOT USED

      Grade C
      (500)
      Grade B
      (600)
      snyk-operatoruniversal-crossplane -

      NOT COMPLY

      +

      COMPLY

      COMPLY

      @@ -6059,11 +4840,11 @@
      Grade

      NOT USED

      @@ -6073,37 +4854,81 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For snyk-operator.v1.64.1:

        +

        For universal-crossplane.1.2.3-up.1:

        -

      • "ERROR" snykmonitors.charts.helm.k8s.io does not have a status descriptor
      • +
      • "ERROR" package does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" group does not have a spec descriptor
      • -
      • "ERROR" pvc does not have a spec descriptor
      • +
      • "ERROR" names does not have a spec descriptor
      • -
      • "ERROR" initContainerImage does not have a spec descriptor
      • +
      • "ERROR" claimNames does not have a spec descriptor
      • +
      • "ERROR" connectionSecretKeys does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "ERROR" versions does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for pvc
      • +
      • "ERROR" writeConnectionSecretsToNamespace does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for initContainerImage
      • +
      • "ERROR" compositeTypeRef does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" package does not have a spec descriptor
      • + +
      • "ERROR" configurations.pkg.crossplane.io does not have a status descriptor
      • + +
      • "ERROR" compositeresourcedefinitions.apiextensions.crossplane.io does not have a status descriptor
      • + +
      • "ERROR" compositions.apiextensions.crossplane.io does not have a status descriptor
      • + +
      • "ERROR" providers.pkg.crossplane.io does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for package
      • + +
      • "WARNING" Add a spec descriptor for group
      • + +
      • "WARNING" Add a spec descriptor for names
      • + +
      • "WARNING" Add a spec descriptor for claimNames
      • + +
      • "WARNING" Add a spec descriptor for connectionSecretKeys
      • + +
      • "WARNING" Add a spec descriptor for versions
      • + +
      • "WARNING" Add a spec descriptor for writeConnectionSecretsToNamespace
      • + +
      • "WARNING" Add a spec descriptor for compositeTypeRef
      • + +
      • "WARNING" Add a spec descriptor for resources
      • + +
      • "WARNING" Add a spec descriptor for package
      • + +
      • "WARNING" Warning: Value pkg.crossplane.io/v1, Kind=ConfigurationRevision: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value pkg.crossplane.io/v1alpha1, Kind=ControllerConfig: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value pkg.crossplane.io/v1alpha1, Kind=Lock: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value pkg.crossplane.io/v1, Kind=ProviderRevision: provided API should have an example annotation
      • @@ -6114,27 +4939,33 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For snyk-operator.v1.64.1:

        +

        For universal-crossplane.1.2.3-up.1:

        -

      • "WARNING" (snyk-operator.v1.64.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (universal-crossplane.1.2.3-up.1) csv.metadata.Name universal-crossplane.1.2.3-up.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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.helm.k8s.io"])
      • +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -6144,103 +4975,65 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (600)
      steerd-presto-operatoribm-spectrum-scale-csi-operator -

      NOT COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For steerd-presto-operator.v0.1.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" additionalPrestoPropFiles does not have a spec descriptor
      • - -
      • "ERROR" service does not have a spec descriptor
      • - -
      • "ERROR" catalogs does not have a spec descriptor
      • - -
      • "ERROR" volumes does not have a spec descriptor
      • - -
      • "ERROR" coordinator does not have a spec descriptor
      • - -
      • "ERROR" worker does not have a spec descriptor
      • - -
      • "ERROR" imageDetails does not have a spec descriptor
      • - -
      • "ERROR" prestos.falarica.io does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for additionalPrestoPropFiles
      • - -
      • "WARNING" Add a spec descriptor for service
      • - -
      • "WARNING" Add a spec descriptor for catalogs
      • - -
      • "WARNING" Add a spec descriptor for volumes
      • +

        For ibm-spectrum-scale-csi-operator.v2.3.0:

        -

      • "WARNING" Add a spec descriptor for coordinator
      • +
      • "ERROR" snapshotterNodeSelector does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for worker
      • -
      • "WARNING" Add a spec descriptor for imageDetails
      • +
      • "WARNING" Add a spec descriptor for snapshotterNodeSelector
      • @@ -6251,25 +5044,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For steerd-presto-operator.v0.1.0:

        +

        For ibm-spectrum-scale-csi-operator.v2.3.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["prestos.falarica.io"])
      • +
      • "WARNING" (ibm-spectrum-scale-csi-operator.v2.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -6279,32 +5072,32 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (700)
      argocd-operatorkom-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      @@ -6313,94 +5106,52 @@
      Grade

      NOT USED

      USED

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For argocd-operator.v0.0.15:

        - -

      • "ERROR" destination does not have a spec descriptor
      • - -
      • "ERROR" project does not have a spec descriptor
      • - -
      • "ERROR" source does not have a spec descriptor
      • - -
      • "ERROR" sourceRepos does not have a spec descriptor
      • - -
      • "ERROR" applications.argoproj.io does not have a status descriptor
      • - -
      • "ERROR" appprojects.argoproj.io does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for destination
      • - -
      • "WARNING" Add a spec descriptor for project
      • - -
      • "WARNING" Add a spec descriptor for source
      • - -
      • "WARNING" Add a spec descriptor for sourceRepos
      • - -
      • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=ApplicationSet: provided API should have an example annotation
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For argocd-operator.v0.0.15:

        - - -

      • "WARNING" (argocd-operator.v0.0.15) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +

        For kom-operator.v1.0.2:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["argocdexports.argoproj.io" "argocds.argoproj.io"])
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["microservices.kom.kaiso.github.io"])
      • @@ -6410,28 +5161,28 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (300)
      node-healthcheck-operatorlib-bucket-provisioner -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -6444,52 +5195,116 @@
        Grade

      NOT USED

      USED

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For lib-bucket-provisioner.v1.0.0:

        + +

      • "ERROR" objectbucketclaims.objectbucket.io does not have a status descriptor
      • + +
      • "ERROR" objectbuckets.objectbucket.io does not have a status descriptor
      • + +
      • "ERROR" storageClassName does not have a spec descriptor
      • + +
      • "ERROR" generateBucketName does not have a spec descriptor
      • + +
      • "ERROR" SSL does not have a spec descriptor
      • + +
      • "ERROR" versioned does not have a spec descriptor
      • + +
      • "ERROR" additionalConfig does not have a spec descriptor
      • + +
      • "ERROR" reclaimPolicy does not have a spec descriptor
      • + +
      • "ERROR" claimRef does not have a spec descriptor
      • + +
      • "ERROR" endpoint does not have a spec descriptor
      • + +
      • "ERROR" additionalState does not have a spec descriptor
      • + +
      • "ERROR" storageClassName does not have a spec descriptor
      • + + +
      • "WARNING" Add CRD validation for ObjectBucketClaim/v1alpha1
      • + +
      • "WARNING" Add CRD validation for ObjectBucket/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for storageClassName
      • + +
      • "WARNING" Add a spec descriptor for generateBucketName
      • + +
      • "WARNING" Add a spec descriptor for SSL
      • + +
      • "WARNING" Add a spec descriptor for versioned
      • + +
      • "WARNING" Add a spec descriptor for additionalConfig
      • + +
      • "WARNING" Add a spec descriptor for reclaimPolicy
      • + +
      • "WARNING" Add a spec descriptor for claimRef
      • + +
      • "WARNING" Add a spec descriptor for endpoint
      • + +
      • "WARNING" Add a spec descriptor for additionalState
      • + +
      • "WARNING" Add a spec descriptor for storageClassName
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For node-healthcheck-operator.v0.1.1:

        +

        For lib-bucket-provisioner.v1.0.0:

        -

      • "WARNING" (node-healthcheck-operator.v0.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (lib-bucket-provisioner.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["objectbucketclaims.objectbucket.io" "objectbuckets.objectbucket.io"])
      • @@ -6499,31 +5314,33 @@
        Grade

      NOT USED

      Grade B
      (800)
      Grade D
      (100)
      pmem-csi-operatorsubmariner

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        +
      • alpha-0.10
      • +
      • alpha
      @@ -6533,11 +5350,11 @@
      Grade

      NOT USED

      @@ -6547,151 +5364,232 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For pmem-csi-operator.v1.0.0:

        +

        For submariner.v0.10.1:

        -

      • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
      • +
      • "ERROR" components does not have a spec descriptor
      • -
      • "ERROR" deviceMode does not have a spec descriptor
      • +
      • "ERROR" defaultGlobalnetClusterSize does not have a spec descriptor
      • -
      • "ERROR" nodeSelector does not have a spec descriptor
      • +
      • "ERROR" globalnetEnabled does not have a spec descriptor
      • +
      • "ERROR" broker does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for deviceMode
      • +
      • "ERROR" clusterCIDR does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nodeSelector
      • +
      • "ERROR" globalCIDR does not have a spec descriptor
      • + +
      • "ERROR" namespace does not have a spec descriptor
      • + +
      • "ERROR" natEnabled does not have a spec descriptor
      • + +
      • "ERROR" serviceCIDR does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" debug does not have a spec descriptor
      • + +
      • "ERROR" repository does not have a spec descriptor
      • + +
      • "ERROR" brokerK8sApiServer does not have a spec descriptor
      • + +
      • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
      • + +
      • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
      • + +
      • "ERROR" ceIPSecNATTPort does not have a spec descriptor
      • + +
      • "ERROR" ceIPSecPSK does not have a spec descriptor
      • + +
      • "ERROR" connectionHealthCheck does not have a spec descriptor
      • + +
      • "ERROR" brokerK8sCA does not have a spec descriptor
      • + +
      • "ERROR" cableDriver does not have a spec descriptor
      • + +
      • "ERROR" ceIPSecDebug does not have a spec descriptor
      • + +
      • "ERROR" ceIPSecIKEPort does not have a spec descriptor
      • + +
      • "ERROR" clusterID does not have a spec descriptor
      • + +
      • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" brokers.submariner.io does not have a status descriptor
      • + +
      • "ERROR" submariners.submariner.io does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for components
      • + +
      • "WARNING" Add a spec descriptor for defaultGlobalnetClusterSize
      • + +
      • "WARNING" Add a spec descriptor for globalnetEnabled
      • + +
      • "WARNING" Add a spec descriptor for broker
      • + +
      • "WARNING" Add a spec descriptor for clusterCIDR
      • + +
      • "WARNING" Add a spec descriptor for globalCIDR
      • + +
      • "WARNING" Add a spec descriptor for namespace
      • + +
      • "WARNING" Add a spec descriptor for natEnabled
      • + +
      • "WARNING" Add a spec descriptor for serviceCIDR
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for debug
      • + +
      • "WARNING" Add a spec descriptor for repository
      • + +
      • "WARNING" Add a spec descriptor for brokerK8sApiServer
      • + +
      • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
      • + +
      • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecNATTPort
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecPSK
      • + +
      • "WARNING" Add a spec descriptor for connectionHealthCheck
      • + +
      • "WARNING" Add a spec descriptor for brokerK8sCA
      • + +
      • "WARNING" Add a spec descriptor for cableDriver
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecDebug
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecIKEPort
      • + +
      • "WARNING" Add a spec descriptor for clusterID
      • + +
      • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled

      • -

        For pmem-csi-operator.v1.0.0:

        +

        For submariner.v0.9.1:

        -

      • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
      • +
      • "ERROR" components does not have a spec descriptor
      • -
      • "ERROR" deviceMode does not have a spec descriptor
      • +
      • "ERROR" defaultGlobalnetClusterSize does not have a spec descriptor
      • -
      • "ERROR" nodeSelector does not have a spec descriptor
      • +
      • "ERROR" globalnetEnabled does not have a spec descriptor
      • +
      • "ERROR" broker does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for deviceMode
      • +
      • "ERROR" brokerK8sApiServer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nodeSelector
      • +
      • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
      • +
      • "ERROR" ceIPSecPSK does not have a spec descriptor
      • +
      • "ERROR" debug does not have a spec descriptor
      • -
      -
      - -
      -

      PASS

      - - -

      NOT USED

      Grade B
      (700)
      sysdig -

      NOT COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" globalCIDR does not have a spec descriptor
      • + +
      • "ERROR" clusterID does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" brokerK8sCA does not have a spec descriptor
      • + +
      • "ERROR" ceIPSecNATTPort does not have a spec descriptor
      • + +
      • "ERROR" serviceCIDR does not have a spec descriptor
      • + +
      • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
      • + +
      • "ERROR" namespace does not have a spec descriptor
      • + +
      • "ERROR" natEnabled does not have a spec descriptor
      • + +
      • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
      • + +
      • "ERROR" cableDriver does not have a spec descriptor
      • - -
        -

        For sysdig-operator.v1.7.2:

        +

      • "ERROR" ceIPSecDebug does not have a spec descriptor
      • -
      • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
      • +
      • "ERROR" ceIPSecIKEPort does not have a spec descriptor
      • -
      • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
      • +
      • "ERROR" clusterCIDR does not have a spec descriptor
      • -
      • "ERROR" sysdig does not have a spec descriptor
      • +
      • "ERROR" connectionHealthCheck does not have a spec descriptor
      • -
      • "ERROR" sysdig does not have a spec descriptor
      • +
      • "ERROR" repository does not have a spec descriptor
      • -
      • "ERROR" ebpf does not have a spec descriptor
      • +
      • "ERROR" brokers.submariner.io does not have a status descriptor
      • -
      • "ERROR" secure does not have a spec descriptor
      • +
      • "ERROR" submariners.submariner.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for sysdig
      • +
      • "WARNING" Add a spec descriptor for components
      • -
      • "WARNING" Add a spec descriptor for sysdig
      • +
      • "WARNING" Add a spec descriptor for defaultGlobalnetClusterSize
      • -
      • "WARNING" Add a spec descriptor for ebpf
      • +
      • "WARNING" Add a spec descriptor for globalnetEnabled
      • -
      • "WARNING" Add a spec descriptor for secure
      • +
      • "WARNING" Add a spec descriptor for broker
      • -
      • "WARNING" Add CRD validation for SysdigAgent/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for brokerK8sApiServer
      • -
      • "WARNING" Add CRD validation for SysdigAgent/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecPSK
      • + +
      • "WARNING" Add a spec descriptor for debug
      • + +
      • "WARNING" Add a spec descriptor for globalCIDR
      • + +
      • "WARNING" Add a spec descriptor for clusterID
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for brokerK8sCA
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecNATTPort
      • + +
      • "WARNING" Add a spec descriptor for serviceCIDR
      • + +
      • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled
      • + +
      • "WARNING" Add a spec descriptor for namespace
      • + +
      • "WARNING" Add a spec descriptor for natEnabled
      • + +
      • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
      • + +
      • "WARNING" Add a spec descriptor for cableDriver
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecDebug
      • + +
      • "WARNING" Add a spec descriptor for ceIPSecIKEPort
      • + +
      • "WARNING" Add a spec descriptor for clusterCIDR
      • + +
      • "WARNING" Add a spec descriptor for connectionHealthCheck
      • + +
      • "WARNING" Add a spec descriptor for repository
      • @@ -6702,27 +5600,32 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For sysdig-operator.v1.7.2:

        +

        For submariner.v0.10.1:

        -

      • "WARNING" (sysdig-operator.v1.7.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (submariner.v0.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sysdigagents.sysdig.com"])
      • + +
        +

        For submariner.v0.9.1:

        + + +

      • "WARNING" (submariner.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -6732,33 +5635,35 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (600)
      anchore-enginenoobaa-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • +
      • original
      • +
      @@ -6766,11 +5671,11 @@
      Grade

      NOT USED

      @@ -6780,97 +5685,106 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For anchore-engine-operator.v0.1.3:

        - -

      • "ERROR" anchoreengines.anchore.com does not have a status descriptor
      • - -
      • "ERROR" anchoreEnterpriseGlobal does not have a spec descriptor
      • +

        For noobaa-operator.v5.8.0:

        -

      • "ERROR" anchoreAnalyzer does not have a spec descriptor
      • +
      • "ERROR" noobaas.noobaa.io does not have a status descriptor
      • -
      • "ERROR" anchoreApi does not have a spec descriptor
      • +
      • "ERROR" backingstores.noobaa.io does not have a status descriptor
      • -
      • "ERROR" anchoreEnterpriseReports does not have a spec descriptor
      • +
      • "ERROR" namespacestores.noobaa.io does not have a status descriptor
      • -
      • "ERROR" anchoreEnterpriseUi does not have a spec descriptor
      • +
      • "ERROR" bucketclasses.noobaa.io does not have a status descriptor
      • -
      • "ERROR" anchorePolicyEngine does not have a spec descriptor
      • +
      • "ERROR" cleanupPolicy does not have a spec descriptor
      • -
      • "ERROR" postgresql does not have a spec descriptor
      • +
      • "ERROR" security does not have a spec descriptor
      • -
      • "ERROR" anchore-feeds-db does not have a spec descriptor
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" anchore-ui-redis does not have a spec descriptor
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" ingress does not have a spec descriptor
      • -
      • "ERROR" anchoreCatalog does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for cleanupPolicy
      • -
      • "ERROR" anchoreEnterpriseFeeds does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for security
      • -
      • "ERROR" anchoreGlobal does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "ERROR" anchoreSimpleQueue does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "ERROR" cloudsql does not have a spec descriptor
      • -
      • "ERROR" anchoreEnterpriseNotifications does not have a spec descriptor
      • +
        +

        For noobaa-operator.v2.1.1:

        -

      • "ERROR" anchoreEnterpriseRbac does not have a spec descriptor
      • +
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" noobaas.noobaa.io does not have a status descriptor
      • +
      • "ERROR" backingstores.noobaa.io does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for AnchoreEngine/v1alpha1
      • +
      • "ERROR" bucketclasses.noobaa.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for anchoreEnterpriseGlobal
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for anchoreAnalyzer
      • +
      • "ERROR" awsS3 does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for anchoreApi
      • +
      • "ERROR" placementPolicy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for anchoreEnterpriseReports
      • -
      • "WARNING" Add a spec descriptor for anchoreEnterpriseUi
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for anchorePolicyEngine
      • +
      • "WARNING" Add a spec descriptor for awsS3
      • -
      • "WARNING" Add a spec descriptor for postgresql
      • +
      • "WARNING" Add a spec descriptor for placementPolicy
      • -
      • "WARNING" Add a spec descriptor for anchore-feeds-db
      • -
      • "WARNING" Add a spec descriptor for anchore-ui-redis
      • -
      • "WARNING" Add a spec descriptor for ingress
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for anchoreCatalog
      • -
      • "WARNING" Add a spec descriptor for anchoreEnterpriseFeeds
      • +
        +

        For noobaa-operator.v5.8.0:

        -

      • "WARNING" Add a spec descriptor for anchoreGlobal
      • -
      • "WARNING" Add a spec descriptor for anchoreSimpleQueue
      • -
      • "WARNING" Add a spec descriptor for cloudsql
      • +
        +

        For noobaa-operator.v2.1.1:

        -

      • "WARNING" Add a spec descriptor for anchoreEnterpriseNotifications
      • -
      • "WARNING" Add a spec descriptor for anchoreEnterpriseRbac
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backingstores.noobaa.io" "bucketclasses.noobaa.io" "noobaas.noobaa.io"])
      • @@ -6878,30 +5792,78 @@
        Grade

      NOT USED

      Grade C
      (500)
      robin-operator -

      ONLY WARNINGS

      +

      NOT COMPLY

      +
      +

      COMPLY

      + + +
      +

      NOT USED

      - +Info -
      +

      NOT USED

      +

      PASS

      + + +
      +

      ONLY WARNINGS

      + + + +Info +

        -

        For anchore-engine-operator.v0.1.3:

        - +

        For robin-operator.v5.3.2-59:

        -

      • "WARNING" (anchore-engine-operator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anchoreengines.anchore.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -6911,35 +5873,45 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (400)
      federatoraivault -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • beta
      • + +
      +
      +

      NOT USED

      @@ -6949,45 +5921,65 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For federatorai.v4.3.958:

        +

        For vaultoperator.v0.4.10:

        -

      • "ERROR" keycode does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" selfDriving does not have a spec descriptor
      • +
      • "ERROR" bankVaultsImage does not have a spec descriptor
      • -
      • "ERROR" storages does not have a spec descriptor
      • +
      • "ERROR" annotations does not have a spec descriptor
      • +
      • "ERROR" serviceAccount does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `selfDriving` in AlamedaService/v1alpha1
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `enableExecution` in AlamedaService/v1alpha1
      • +
      • "ERROR" serviceType does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `version` in AlamedaService/v1alpha1
      • +
      • "ERROR" ingress does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `storages` in AlamedaService/v1alpha1
      • +
      • "ERROR" unsealConfig does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `keycode` in AlamedaService/v1alpha1
      • +
      • "ERROR" externalConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for keycode
      • +
      • "ERROR" vaultEnvsConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for selfDriving
      • -
      • "WARNING" Add a spec descriptor for storages
      • +
      • "WARNING" Add CRD validation for Vault/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for bankVaultsImage
      • + +
      • "WARNING" Add a spec descriptor for annotations
      • + +
      • "WARNING" Add a spec descriptor for serviceAccount
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for serviceType
      • + +
      • "WARNING" Add a spec descriptor for ingress
      • + +
      • "WARNING" Add a spec descriptor for unsealConfig
      • + +
      • "WARNING" Add a spec descriptor for externalConfig
      • + +
      • "WARNING" Add a spec descriptor for vaultEnvsConfig
      • @@ -6998,27 +5990,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For federatorai.v4.3.958:

        +

        For vaultoperator.v0.4.10:

        -

      • "WARNING" (federatorai.v4.3.958) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (vaultoperator.v0.4.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alamedaservices.federatorai.containers.ai"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vaults.vault.banzaicloud.com"])
      • @@ -7028,28 +6020,28 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      knative-operatorsealed-secrets-operator-helm -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -7062,120 +6054,107 @@
        Grade

      NOT USED

      - -

      NOT USED

      -

      PASS

      - - -
      -

      PASS

      -

      NOT USED

      Grade B
      (800)
      nuxeo-operator -

      NOT COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For nuxeo-operator.v0.7.1:

        - -

      • "ERROR" nuxeos.appzygy.net does not have a status descriptor
      • +

        For sealed-secrets-operator-helm.v0.0.2:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" nodeSets does not have a spec descriptor
      • +
      • "ERROR" affinity does not have a spec descriptor
      • -
      • "ERROR" nuxeoImage does not have a spec descriptor
      • +
      • "ERROR" secretName does not have a spec descriptor
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" access does not have a spec descriptor
      • +
      • "ERROR" nodeSelector does not have a spec descriptor
      • +
      • "ERROR" tolerations does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nodeSets
      • +
      • "ERROR" rbac does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nuxeoImage
      • +
      • "ERROR" podAnnotations does not have a spec descriptor
      • + +
      • "ERROR" podLabels does not have a spec descriptor
      • + +
      • "ERROR" securityContext does not have a spec descriptor
      • + +
      • "ERROR" controller does not have a spec descriptor
      • + +
      • "ERROR" ingress does not have a spec descriptor
      • + +
      • "ERROR" crd does not have a spec descriptor
      • + +
      • "ERROR" priorityClassName does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" serviceAccount does not have a spec descriptor
      • + +
      • "ERROR" networkPolicy does not have a spec descriptor
      • + +
      • "ERROR" sealedsecretcontrollers.bitnami.com does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for affinity
      • + +
      • "WARNING" Add a spec descriptor for secretName
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for nodeSelector
      • + +
      • "WARNING" Add a spec descriptor for tolerations
      • + +
      • "WARNING" Add a spec descriptor for rbac
      • + +
      • "WARNING" Add a spec descriptor for podAnnotations
      • + +
      • "WARNING" Add a spec descriptor for podLabels
      • + +
      • "WARNING" Add a spec descriptor for securityContext
      • + +
      • "WARNING" Add a spec descriptor for controller
      • + +
      • "WARNING" Add a spec descriptor for ingress
      • + +
      • "WARNING" Add a spec descriptor for crd
      • + +
      • "WARNING" Add a spec descriptor for priorityClassName
      • + +
      • "WARNING" Add a spec descriptor for resources
      • + +
      • "WARNING" Add a spec descriptor for serviceAccount
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "WARNING" Add a spec descriptor for networkPolicy
      • -
      • "WARNING" Add a spec descriptor for access
      • +
      • "WARNING" Add CRD validation for SealedSecretController/v1alpha1
      • @@ -7184,31 +6163,31 @@
        Grade
      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For nuxeo-operator.v0.7.1:

        +

        For sealed-secrets-operator-helm.v0.0.2:

        -

      • "ERROR" (nuxeo-operator.v0.7.1) csv.Spec.Maintainers elements should contain both name and email
      • +
      • "WARNING" (sealed-secrets-operator-helm.v0.0.2) csv.Spec.Icon not specified
      • -
      • "WARNING" (nuxeo-operator.v0.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (sealed-secrets-operator-helm.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nuxeos.appzygy.net"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sealedsecretcontrollers.bitnami.com"])
      • @@ -7218,122 +6197,93 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      postgres-operatorseldon-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      NOT USED

      USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For postgres-operator.v1.4.0:

        - -

      • "ERROR" error spec does not exist
      • - -
      • "ERROR" databases does not have a spec descriptor
      • - -
      • "ERROR" numberOfInstances does not have a spec descriptor
      • - -
      • "ERROR" postgresql does not have a spec descriptor
      • - -
      • "ERROR" teamId does not have a spec descriptor
      • - -
      • "ERROR" users does not have a spec descriptor
      • - -
      • "ERROR" volume does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" postgresqls.acid.zalan.do does not have a status descriptor
      • - -
      • "ERROR" operatorconfigurations.acid.zalan.do does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for databases
      • - -
      • "WARNING" Add a spec descriptor for numberOfInstances
      • - -
      • "WARNING" Add a spec descriptor for postgresql
      • - -
      • "WARNING" Add a spec descriptor for teamId
      • - -
      • "WARNING" Add a spec descriptor for users
      • - -
      • "WARNING" Add a spec descriptor for volume
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For postgres-operator.v1.4.0:

        +

        For seldon-operator.v1.2.2:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["operatorconfigurations.acid.zalan.do" "postgresqls.acid.zalan.do"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For seldon-operator.v1.7.0:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -7343,28 +6293,28 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade C
      (400)
      qserv-operatorditto-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -7377,77 +6327,47 @@
        Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For qserv-operator.v2021.8.1-rc3:

        - -

      • "ERROR" qservs.qserv.lsst.org does not have a status descriptor
      • - -
      • "ERROR" worker does not have a spec descriptor
      • - -
      • "ERROR" xrootd does not have a spec descriptor
      • - -
      • "ERROR" dashboard does not have a spec descriptor
      • - -
      • "ERROR" storageClassName does not have a spec descriptor
      • - -
      • "ERROR" ingest does not have a spec descriptor
      • - -
      • "ERROR" replication does not have a spec descriptor
      • - -
      • "ERROR" storage does not have a spec descriptor
      • - -
      • "ERROR" czar does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • +

        For ditto-operator.v0.2.0:

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" mongoDb does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for worker
      • - -
      • "WARNING" Add a spec descriptor for xrootd
      • - -
      • "WARNING" Add a spec descriptor for dashboard
      • - -
      • "WARNING" Add a spec descriptor for storageClassName
      • - -
      • "WARNING" Add a spec descriptor for ingest
      • - -
      • "WARNING" Add a spec descriptor for replication
      • +
      • "ERROR" dittos.iot.eclipse.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for storage
      • -
      • "WARNING" Add a spec descriptor for czar
      • +
      • "WARNING" Add CRD validation for spec field `mongoDb` in Ditto/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • +
      • "WARNING" Add a spec descriptor for mongoDb
      • @@ -7458,25 +6378,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For qserv-operator.v2021.8.1-rc3:

        +

        For ditto-operator.v0.2.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["qservs.qserv.lsst.org"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dittos.iot.eclipse.org"])
      • @@ -7486,32 +6406,38 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      spark-gcpinfinispan -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • 2.0.x
      • + +
      • dev-preview
      • + +
      • 2.1.x
      • + +
      • 1.1.x
      @@ -7520,11 +6446,11 @@
      Grade

      NOT USED

      @@ -7534,79 +6460,103 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For sparkoperator.v2.4.0:

        +

        For infinispan-operator.v2.0.6:

        + +

      • "ERROR" adminAuth does not have a spec descriptor
      • + +
      • "ERROR" clusterName does not have a spec descriptor
      • + +
      • "ERROR" name does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" caches.infinispan.org does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for adminAuth
      • + +
      • "WARNING" Add a spec descriptor for clusterName
      • + +
      • "WARNING" Add a spec descriptor for name
      • + + +
        +

        For infinispan-operator.v2.0.4:

        + +

      • "ERROR" clusterName does not have a spec descriptor
      • -
      • "ERROR" scheduledsparkapplications.sparkoperator.k8s.io does not have a status descriptor
      • +
      • "ERROR" name does not have a spec descriptor
      • + +
      • "ERROR" adminAuth does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" executor does not have a spec descriptor
      • +
      • "ERROR" caches.infinispan.org does not have a status descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for clusterName
      • -
      • "ERROR" mainApplicationFile does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "ERROR" sparkVersion does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for adminAuth
      • -
      • "ERROR" restartPolicy does not have a spec descriptor
      • -
      • "ERROR" driver does not have a spec descriptor
      • +
        +

        For infinispan-operator.v2.1.5:

        -

      • "ERROR" pythonVersion does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" mode does not have a spec descriptor
      • +
      • "ERROR" container does not have a spec descriptor
      • -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • +
      • "ERROR" adminAuth does not have a spec descriptor
      • -
      • "ERROR" schedule does not have a spec descriptor
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "ERROR" concurrencyPolicy does not have a spec descriptor
      • +
      • "ERROR" container does not have a spec descriptor
      • -
      • "ERROR" template does not have a spec descriptor
      • +
      • "ERROR" backups.infinispan.org does not have a status descriptor
      • +
      • "ERROR" caches.infinispan.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for executor
      • +
      • "ERROR" restores.infinispan.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for container
      • -
      • "WARNING" Add a spec descriptor for mainApplicationFile
      • +
      • "WARNING" Add a spec descriptor for adminAuth
      • -
      • "WARNING" Add a spec descriptor for sparkVersion
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "WARNING" Add a spec descriptor for restartPolicy
      • +
      • "WARNING" Add a spec descriptor for container
      • -
      • "WARNING" Add a spec descriptor for driver
      • -
      • "WARNING" Add a spec descriptor for pythonVersion
      • +
        +

        For infinispan-operator.v1.1.2:

        -

      • "WARNING" Add a spec descriptor for mode
      • -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • +
      • "WARNING" Add CRD validation for Infinispan/v1
      • -
      • "WARNING" Add a spec descriptor for schedule
      • -
      • "WARNING" Add a spec descriptor for concurrencyPolicy
      • +
        +

        For infinispan-operator.v1.1.2:

        -

      • "WARNING" Add a spec descriptor for template
      • + +
      • "WARNING" Add CRD validation for Infinispan/v1
      • @@ -7617,155 +6567,88 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For sparkoperator.v2.4.0:

        +

        For infinispan-operator.v2.0.6:

        -

      • "WARNING" (sparkoperator.v2.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["caches.infinispan.org" "infinispans.infinispan.org"])
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["scheduledsparkapplications.sparkoperator.k8s.io" "sparkapplications.sparkoperator.k8s.io"])
      • +
        +

        For infinispan-operator.v2.0.4:

        -

      -
      - -

      NOT USED

      Grade D
      (100)
      hpe-csi-operator -

      COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["caches.infinispan.org" "infinispans.infinispan.org"])
      • - -
        -

        For hpe-csi-operator.v2.0.0:

        -

      • "ERROR" kubeletRootDir does not have a spec descriptor
      • +
        +

        For infinispan-operator.v2.1.5:

        -

      • "ERROR" disableNodeGetVolumeStats does not have a spec descriptor
      • -
      • "ERROR" disable does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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.infinispan.org" "batches.infinispan.org" "caches.infinispan.org" "infinispans.infinispan.org" "restores.infinispan.org"])
      • -
      • "ERROR" cspClientTimeout does not have a spec descriptor
      • +
        +

        For infinispan-operator.v1.1.2:

        -

      • "WARNING" Add a spec descriptor for kubeletRootDir
      • -
      • "WARNING" Add a spec descriptor for disableNodeGetVolumeStats
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infinispans.infinispan.org"])
      • -
      • "WARNING" Add a spec descriptor for disable
      • -
      • "WARNING" Add a spec descriptor for cspClientTimeout
      • +
        +

        For infinispan-operator.v1.1.2:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infinispans.infinispan.org"])
      -
      -

      PASS

      - -

      NOT USED

      Grade B
      (700)
      Grade D
      (100)
      ibm-block-csi-operator-communitykeda -

      PARTIAL COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • maintenance-1.5
      • +
      • alpha
      @@ -7774,135 +6657,93 @@
      Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For ibm-block-csi-operator.v1.6.0:

        - -

      • "ERROR" controller does not have a spec descriptor
      • - -
      • "ERROR" node does not have a spec descriptor
      • - -
      • "ERROR" sidecars does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for controller
      • - -
      • "WARNING" Add a spec descriptor for node
      • - -
      • "WARNING" Add a spec descriptor for sidecars
      • - - -
        -

        For ibm-block-csi-operator.v1.5.1:

        - -

      • "ERROR" controller does not have a spec descriptor
      • - -
      • "ERROR" node does not have a spec descriptor
      • +

        For keda.v2.4.0:

        -

      • "ERROR" sidecars does not have a spec descriptor
      • +
      • "ERROR" triggers does not have a spec descriptor
      • +
      • "ERROR" triggerauthentications.keda.sh does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for controller
      • +
      • "ERROR" clustertriggerauthentications.keda.sh does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for node
      • -
      • "WARNING" Add a spec descriptor for sidecars
      • +
      • "WARNING" Add a spec descriptor for triggers
      -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        - - -
        -

        For ibm-block-csi-operator.v1.6.0:

        - - - -
        -

        For ibm-block-csi-operator.v1.5.1:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - - - -
      -
      +
      +

      PASS

      +

      NOT USED

      Grade D
      (200)
      Grade B
      (700)
      kom-operatorkubernetes-nmstate-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • alpha
      @@ -7911,52 +6752,74 @@
      Grade

      NOT USED

      NOT USED

      USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For kubernetes-nmstate-operator.v0.47.0:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" nmstates.nmstate.io does not have a status descriptor
      • + +
      • "ERROR" nodeSelector does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for nodeSelector
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kom-operator.v1.0.2:

        +

        For kubernetes-nmstate-operator.v0.47.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["microservices.kom.kaiso.github.io"])
      • +
      • "WARNING" (kubernetes-nmstate-operator.v0.47.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -7966,32 +6829,32 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade B
      (600)
      nexus-operator-m88iredis-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • preview
      @@ -8000,61 +6863,120 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For nexus-operator.v0.5.0:

        +

        For redis-operator.v0.8.0:

        -

      • "ERROR" resources does not have a spec descriptor
      • +
      • "ERROR" kubernetesConfig does not have a spec descriptor
      • -
      • "ERROR" useRedHatImage does not have a spec descriptor
      • +
      • "ERROR" storage does not have a spec descriptor
      • -
      • "ERROR" networking does not have a spec descriptor
      • +
      • "ERROR" redisExporter does not have a spec descriptor
      • -
      • "ERROR" persistence does not have a spec descriptor
      • +
      • "ERROR" clusterSize does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" kubernetesConfig does not have a spec descriptor
      • -
      • "ERROR" nexus.apps.m88i.io does not have a status descriptor
      • +
      • "ERROR" redisExporter does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" redisLeader does not have a spec descriptor
      • +
      • "ERROR" redisFollower does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "ERROR" storage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for useRedHatImage
      • +
      • "ERROR" redis.redis.redis.opstreelabs.in does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for networking
      • +
      • "ERROR" redisclusters.redis.redis.opstreelabs.in does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for persistence
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "WARNING" Add a spec descriptor for kubernetesConfig
      • + +
      • "WARNING" Add a spec descriptor for storage
      • + +
      • "WARNING" Add a spec descriptor for redisExporter
      • + +
      • "WARNING" Add a spec descriptor for clusterSize
      • + +
      • "WARNING" Add a spec descriptor for kubernetesConfig
      • + +
      • "WARNING" Add a spec descriptor for redisExporter
      • + +
      • "WARNING" Add a spec descriptor for redisLeader
      • + +
      • "WARNING" Add a spec descriptor for redisFollower
      • + +
      • "WARNING" Add a spec descriptor for storage
      • + + +
        +

        For redis-operator.v0.4.0:

        + +

      • "ERROR" redis.redis.redis.opstreelabs.in does not have a status descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" master does not have a spec descriptor
      • + +
      • "ERROR" slave does not have a spec descriptor
      • + +
      • "ERROR" storage does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" global does not have a spec descriptor
      • + +
      • "ERROR" service does not have a spec descriptor
      • + +
      • "ERROR" redisConfig does not have a spec descriptor
      • + +
      • "ERROR" redisExporter does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for size
      • + +
      • "WARNING" Add a spec descriptor for master
      • + +
      • "WARNING" Add a spec descriptor for slave
      • + +
      • "WARNING" Add a spec descriptor for storage
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for global
      • + +
      • "WARNING" Add a spec descriptor for service
      • + +
      • "WARNING" Add a spec descriptor for redisConfig
      • + +
      • "WARNING" Add a spec descriptor for redisExporter
      • @@ -8063,60 +6985,42 @@
        Grade
      -

      ONLY WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For nexus-operator.v0.5.0:

        - - -

      • "WARNING" (nexus-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nexus.apps.m88i.io"])
      • - - - -
      -
      -

      NOT USED

      Grade D
      (200)
      Grade B
      (600)
      postgresql-operator-dev4devs-comvault-helm -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -8129,52 +7033,96 @@
        Grade

      NOT USED

      NOT USED

      USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For vault-helm.v0.0.2:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" global does not have a spec descriptor
      • + +
      • "ERROR" injector does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + +
      • "ERROR" ui does not have a spec descriptor
      • + +
      • "ERROR" vaults.vault.sdbrett.com does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for global
      • + +
      • "WARNING" Add a spec descriptor for injector
      • + +
      • "WARNING" Add a spec descriptor for server
      • + +
      • "WARNING" Add a spec descriptor for ui
      • + +
      • "WARNING" Add CRD validation for spec field `injector` in Vault/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `server` in Vault/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `ui` in Vault/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `global` in Vault/v1alpha1
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For postgresql-operator.v0.1.1:

        +

        For vault-helm.v0.0.2:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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.dev4devs.com" "databases.postgresql.dev4devs.com"])
      • +
      • "WARNING" (vault-helm.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vaults.vault.sdbrett.com"])
      • @@ -8184,28 +7132,28 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade D
      (200)
      project-quay-container-security-operatorargocd-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -8216,53 +7164,63 @@
        Grade
      -

      REQUIRED

      +

      NOT USED

      - +Info -
      -

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
        - -
      • project-quay-container-security-operator.v1.0.6
      • - -
      -
      -

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For project-quay-container-security-operator.v1.0.6:

        +

        For argocd-operator.v0.0.15:

        + +

      • "ERROR" destination does not have a spec descriptor
      • + +
      • "ERROR" project does not have a spec descriptor
      • + +
      • "ERROR" source does not have a spec descriptor
      • + +
      • "ERROR" sourceRepos does not have a spec descriptor
      • + +
      • "ERROR" applications.argoproj.io does not have a status descriptor
      • + +
      • "ERROR" appprojects.argoproj.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Warning: Value : (project-quay-container-security-operator.v1.0.6) example annotations not found
      • +
      • "WARNING" Add a spec descriptor for destination
      • + +
      • "WARNING" Add a spec descriptor for project
      • + +
      • "WARNING" Add a spec descriptor for source
      • + +
      • "WARNING" Add a spec descriptor for sourceRepos
      • + +
      • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=ApplicationSet: provided API should have an example annotation
      • @@ -8273,29 +7231,29 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For project-quay-container-security-operator.v1.0.6:

        +

        For argocd-operator.v0.0.15:

        -

      • "WARNING" (project-quay-container-security-operator.v1.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (argocd-operator.v0.0.15) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["argocdexports.argoproj.io" "argocds.argoproj.io"])
      • -
      • "WARNING" (project-quay-container-security-operator.v1.0.6) example annotations not found
      • +
      • "WARNING" provided API should have an example annotation
      • @@ -8305,88 +7263,106 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (200)
      runtime-component-operatordell-csi-operator -

      NOT COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      -

      NOT USED

      NOT USED

      USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For dell-csi-operator.v1.4.0:

        + +

      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" tlsSecret does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for tlsSecret
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For runtime-component-operator.v0.7.0:

        - +

        For dell-csi-operator.v1.4.0:

        -

      • "WARNING" (runtime-component-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" (dell-csi-operator.v1.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -8396,22 +7372,22 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade B
      (700)
      traefikee-operatorfederatorai -

      NOT COMPLY

      +

      NOT COMPLY

      COMPLY

      @@ -8420,11 +7396,11 @@
      Grade

      NOT USED

      @@ -8434,31 +7410,45 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For traefikee-operator.v2.1.1:

        +

        For federatorai.v4.3.958:

        -

      • "ERROR" traefikees.containo.us does not have a status descriptor
      • +
      • "ERROR" keycode does not have a spec descriptor
      • -
      • "ERROR" cluster does not have a spec descriptor
      • +
      • "ERROR" selfDriving does not have a spec descriptor
      • + +
      • "ERROR" storages does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Traefikee/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `selfDriving` in AlamedaService/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for cluster
      • +
      • "WARNING" Add CRD validation for spec field `enableExecution` in AlamedaService/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `version` in AlamedaService/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `storages` in AlamedaService/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `keycode` in AlamedaService/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for keycode
      • + +
      • "WARNING" Add a spec descriptor for selfDriving
      • + +
      • "WARNING" Add a spec descriptor for storages
      • @@ -8469,27 +7459,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For traefikee-operator.v2.1.1:

        +

        For federatorai.v4.3.958:

        -

      • "WARNING" (traefikee-operator.v2.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (federatorai.v4.3.958) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alamedaservices.federatorai.containers.ai"])
      • @@ -8503,41 +7493,31 @@
        Grade
      hazelcast-jet-enterprise-operatorhpe-csi-operator -

      NOT COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -8547,45 +7527,39 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For hazelcast-jet-enterprise-operator.v0.5.0:

        - -

      • "ERROR" hazelcastjetenterprises.hazelcast.com does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" cluster does not have a spec descriptor
      • +

        For hpe-csi-operator.v2.0.0:

        -

      • "ERROR" jet does not have a spec descriptor
      • +
      • "ERROR" kubeletRootDir does not have a spec descriptor
      • -
      • "ERROR" securityContext does not have a spec descriptor
      • +
      • "ERROR" disableNodeGetVolumeStats does not have a spec descriptor
      • +
      • "ERROR" disable does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJetEnterprise/v1alpha1
      • +
      • "ERROR" cspClientTimeout does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `jet` in HazelcastJetEnterprise/v1alpha1
      • -
      • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJetEnterprise/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for kubeletRootDir
      • -
      • "WARNING" Add a spec descriptor for cluster
      • +
      • "WARNING" Add a spec descriptor for disableNodeGetVolumeStats
      • -
      • "WARNING" Add a spec descriptor for jet
      • +
      • "WARNING" Add a spec descriptor for disable
      • -
      • "WARNING" Add a spec descriptor for securityContext
      • +
      • "WARNING" Add a spec descriptor for cspClientTimeout
      • @@ -8594,64 +7568,46 @@
        Grade
      -

      ONLY WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For hazelcast-jet-enterprise-operator.v0.5.0:

        - - -

      • "WARNING" (hazelcast-jet-enterprise-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - - - -
      -
      -

      NOT USED

      Grade D
      (100)
      Grade B
      (700)
      istioibmcloud-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • alpha
      @@ -8660,11 +7616,11 @@
      Grade

      NOT USED

      @@ -8672,139 +7628,135 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For istio-operator.0.1.6:

        - -

      • "ERROR" istios.istio.banzaicloud.io does not have a status descriptor
      • - -
      • "ERROR" remoteistios.istio.banzaicloud.io does not have a status descriptor
      • - -
      • "ERROR" gateways does not have a spec descriptor
      • - -
      • "ERROR" outboundTrafficPolicy does not have a spec descriptor
      • - -
      • "ERROR" proxy does not have a spec descriptor
      • - -
      • "ERROR" tracing does not have a spec descriptor
      • - -
      • "ERROR" nodeAgent does not have a spec descriptor
      • - -
      • "ERROR" autoInjectionNamespaces does not have a spec descriptor
      • - -
      • "ERROR" citadel does not have a spec descriptor
      • - -
      • "ERROR" defaultPodDisruptionBudget does not have a spec descriptor
      • - -
      • "ERROR" galley does not have a spec descriptor
      • - -
      • "ERROR" includeIPRanges does not have a spec descriptor
      • - -
      • "ERROR" mtls does not have a spec descriptor
      • - -
      • "ERROR" imageHub does not have a spec descriptor
      • - -
      • "ERROR" proxyInit does not have a spec descriptor
      • - -
      • "ERROR" sds does not have a spec descriptor
      • - -
      • "ERROR" version does not have a spec descriptor
      • - -
      • "ERROR" imageTag does not have a spec descriptor
      • - -
      • "ERROR" mixer does not have a spec descriptor
      • - -
      • "ERROR" pilot does not have a spec descriptor
      • - -
      • "ERROR" sidecarInjector does not have a spec descriptor
      • - -
      • "ERROR" enabledServices does not have a spec descriptor
      • - -
      • "ERROR" includeIPRanges does not have a spec descriptor
      • - -
      • "ERROR" proxy does not have a spec descriptor
      • - -
      • "ERROR" proxyInit does not have a spec descriptor
      • - -
      • "ERROR" sidecarInjector does not have a spec descriptor
      • - -
      • "ERROR" autoInjectionNamespaces does not have a spec descriptor
      • - -
      • "ERROR" citadel does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add CRD validation for spec field `imageTag` in Istio/v1beta1
      • - -
      • "WARNING" Add CRD validation for spec field `imageHub` in Istio/v1beta1
      • - -
      • "WARNING" Add a spec descriptor for gateways
      • - -
      • "WARNING" Add a spec descriptor for outboundTrafficPolicy
      • - -
      • "WARNING" Add a spec descriptor for proxy
      • - -
      • "WARNING" Add a spec descriptor for tracing
      • - -
      • "WARNING" Add a spec descriptor for nodeAgent
      • - -
      • "WARNING" Add a spec descriptor for autoInjectionNamespaces
      • +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for citadel
      • -
      • "WARNING" Add a spec descriptor for defaultPodDisruptionBudget
      • +
        +

        For ibmcloud-operator.v0.1.11:

        -

      • "WARNING" Add a spec descriptor for galley
      • -
      • "WARNING" Add a spec descriptor for includeIPRanges
      • +
      • "WARNING" (ibmcloud-operator.v0.1.11) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for mtls
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bindings.ibmcloud.ibm.com" "services.ibmcloud.ibm.com"])
      • -
      • "WARNING" Add a spec descriptor for imageHub
      • -
      • "WARNING" Add a spec descriptor for proxyInit
      • +
        +

        For ibmcloud-operator.v1.0.11:

        -

      • "WARNING" Add a spec descriptor for sds
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "WARNING" (ibmcloud-operator.v1.0.11) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for imageTag
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["bindings.ibmcloud.ibm.com" "services.ibmcloud.ibm.com"])
      • -
      • "WARNING" Add a spec descriptor for mixer
      • -
      • "WARNING" Add a spec descriptor for pilot
      • -
      • "WARNING" Add a spec descriptor for sidecarInjector
      • +
      +
      + +

      NOT USED

      Grade D
      (300)
      machine-deletion-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for enabledServices
      • + +
        +

        For machine-deletion.v0.0.1:

        -

      • "WARNING" Add a spec descriptor for includeIPRanges
      • +
      • "ERROR" template does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for proxy
      • +
      • "ERROR" machinedeletions.machine-deletion.medik8s.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for proxyInit
      • +
      • "ERROR" machinedeletiontemplates.machine-deletion.medik8s.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for sidecarInjector
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for autoInjectionNamespaces
      • -
      • "WARNING" Add a spec descriptor for citadel
      • +
      • "WARNING" Add a spec descriptor for template
      • @@ -8815,27 +7767,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For istio-operator.0.1.6:

        - +

        For machine-deletion.v0.0.1:

        -

      • "WARNING" (istio-operator.0.1.6) csv.metadata.Name istio-operator.0.1.6 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["istios.istio.banzaicloud.io" "remoteistios.istio.banzaicloud.io"])
      • +
      • "WARNING" (machine-deletion.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -8845,28 +7795,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      lib-bucket-provisionerskydive-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -8879,85 +7829,59 @@
        Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For lib-bucket-provisioner.v1.0.0:

        - -

      • "ERROR" objectbucketclaims.objectbucket.io does not have a status descriptor
      • - -
      • "ERROR" objectbuckets.objectbucket.io does not have a status descriptor
      • - -
      • "ERROR" storageClassName does not have a spec descriptor
      • - -
      • "ERROR" generateBucketName does not have a spec descriptor
      • - -
      • "ERROR" SSL does not have a spec descriptor
      • - -
      • "ERROR" versioned does not have a spec descriptor
      • - -
      • "ERROR" additionalConfig does not have a spec descriptor
      • - -
      • "ERROR" reclaimPolicy does not have a spec descriptor
      • - -
      • "ERROR" claimRef does not have a spec descriptor
      • - -
      • "ERROR" endpoint does not have a spec descriptor
      • - -
      • "ERROR" additionalState does not have a spec descriptor
      • - -
      • "ERROR" storageClassName does not have a spec descriptor
      • - +

        For skydive-operator.v0.0.50:

        -

      • "WARNING" Add CRD validation for ObjectBucketClaim/v1alpha1
      • +
      • "ERROR" skydives.skydive-group.example.com does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for ObjectBucket/v1alpha1
      • +
      • "ERROR" agents does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for storageClassName
      • +
      • "ERROR" analyzer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for generateBucketName
      • +
      • "ERROR" enable does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for SSL
      • +
      • "ERROR" flowExporter does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for versioned
      • +
      • "ERROR" prometheusConnector does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for additionalConfig
      • -
      • "WARNING" Add a spec descriptor for reclaimPolicy
      • +
      • "WARNING" Add a spec descriptor for agents
      • -
      • "WARNING" Add a spec descriptor for claimRef
      • +
      • "WARNING" Add a spec descriptor for analyzer
      • -
      • "WARNING" Add a spec descriptor for endpoint
      • +
      • "WARNING" Add a spec descriptor for enable
      • -
      • "WARNING" Add a spec descriptor for additionalState
      • +
      • "WARNING" Add a spec descriptor for flowExporter
      • -
      • "WARNING" Add a spec descriptor for storageClassName
      • +
      • "WARNING" Add a spec descriptor for prometheusConnector
      • @@ -8968,27 +7892,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For lib-bucket-provisioner.v1.0.0:

        - +

        For skydive-operator.v0.0.50:

        -

      • "WARNING" (lib-bucket-provisioner.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["objectbucketclaims.objectbucket.io" "objectbuckets.objectbucket.io"])
      • +
      • "WARNING" (skydive-operator.v0.0.50) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -8998,111 +7920,69 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      metallb-operatortraefikee-operator -

      COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For metallb-operator.v0.10.2:

        - -

      • "ERROR" error spec does not exist
      • - -
      • "ERROR" addresspools.metallb.io does not have a status descriptor
      • - -
      • "ERROR" addresspools.metallb.io does not have a status descriptor
      • - -
      • "ERROR" addresspools.metallb.io does not have a status descriptor
      • - -
      • "ERROR" metallbs.metallb.io does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" addresses does not have a spec descriptor
      • - -
      • "ERROR" protocol does not have a spec descriptor
      • - -
      • "ERROR" addresses does not have a spec descriptor
      • - -
      • "ERROR" autoAssign does not have a spec descriptor
      • - -
      • "ERROR" protocol does not have a spec descriptor
      • - -
      • "ERROR" addresses does not have a spec descriptor
      • - -
      • "ERROR" protocol does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for addresses
      • - -
      • "WARNING" Add a spec descriptor for protocol
      • +

        For traefikee-operator.v2.1.1:

        -

      • "WARNING" Add a spec descriptor for addresses
      • +
      • "ERROR" traefikees.containo.us does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for autoAssign
      • +
      • "ERROR" cluster does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for protocol
      • -
      • "WARNING" Add a spec descriptor for addresses
      • +
      • "WARNING" Add CRD validation for Traefikee/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for protocol
      • +
      • "WARNING" Add a spec descriptor for cluster
      • @@ -9113,25 +7993,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For metallb-operator.v0.10.2:

        +

        For traefikee-operator.v2.1.1:

        -

      • "WARNING" (metallb-operator.v0.10.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (traefikee-operator.v2.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -9141,35 +8023,45 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (200)
      wso2am-operatorappsody-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • beta
      • + +
      +
      +

      NOT USED

      @@ -9177,76 +8069,42 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For wso2am-operator.v1.1.0:

        - -

      • "ERROR" profiles does not have a spec descriptor
      • - -
      • "ERROR" pattern does not have a spec descriptor
      • - -
      • "ERROR" service does not have a spec descriptor
      • - -
      • "ERROR" useMysql does not have a spec descriptor
      • - -
      • "ERROR" apimanagers.apim.wso2.com does not have a status descriptor
      • - - -
      • "WARNING" Add CRD validation for APIManager/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for profiles
      • - -
      • "WARNING" Add a spec descriptor for pattern
      • - -
      • "WARNING" Add a spec descriptor for service
      • - -
      • "WARNING" Add a spec descriptor for useMysql
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For wso2am-operator.v1.1.0:

        +

        For appsody-operator.v0.6.0:

        -

      • "WARNING" (wso2am-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (appsody-operator.v0.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apim.wso2.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -9256,32 +8114,42 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (300)
      virt-gateway-operatorcouchdb-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      • + +
      • v1.4
      • + +
      • v1.0
      • + +
      • v1.1
      • + +
      • v1.2
      • + +
      • v1.3
      @@ -9290,99 +8158,291 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For virt-gateway-operator.v0.0.1:

        + +
        +

        For couchdb-operator.v1.4.3:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" disk does not have a spec descriptor
      • + +
      • "ERROR" environment does not have a spec descriptor
      • + +
      • "ERROR" memory does not have a spec descriptor
      • + +
      • "ERROR" cpu does not have a spec descriptor
      • + +
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for disk
      • + +
      • "WARNING" Add a spec descriptor for environment
      • + +
      • "WARNING" Add a spec descriptor for memory
      • + +
      • "WARNING" Add a spec descriptor for cpu
      • + + +
        +

        For couchdb-operator.v1.4.4:

        + +

      • "ERROR" environment does not have a spec descriptor
      • + +
      • "ERROR" memory does not have a spec descriptor
      • + +
      • "ERROR" cpu does not have a spec descriptor
      • + +
      • "ERROR" disk does not have a spec descriptor
      • + +
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for environment
      • + +
      • "WARNING" Add a spec descriptor for memory
      • + +
      • "WARNING" Add a spec descriptor for cpu
      • + +
      • "WARNING" Add a spec descriptor for disk
      • + + +
        +

        For couchdb-operator.v1.4.4:

        + +

      • "ERROR" environment does not have a spec descriptor
      • + +
      • "ERROR" memory does not have a spec descriptor
      • + +
      • "ERROR" cpu does not have a spec descriptor
      • + +
      • "ERROR" disk does not have a spec descriptor
      • + +
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for environment
      • + +
      • "WARNING" Add a spec descriptor for memory
      • + +
      • "WARNING" Add a spec descriptor for cpu
      • + +
      • "WARNING" Add a spec descriptor for disk
      • + + +
        +

        For couchdb-operator.v1.0.14:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" memory does not have a spec descriptor
      • + +
      • "ERROR" cpu does not have a spec descriptor
      • + +
      • "ERROR" disk does not have a spec descriptor
      • + +
      • "ERROR" environment does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for memory
      • + +
      • "WARNING" Add a spec descriptor for cpu
      • + +
      • "WARNING" Add a spec descriptor for disk
      • + +
      • "WARNING" Add a spec descriptor for environment
      • + + +
        +

        For couchdb-operator.v1.1.0:

        + +

      • "ERROR" memory does not have a spec descriptor
      • + +
      • "ERROR" cpu does not have a spec descriptor
      • -
      • "ERROR" route does not have a spec descriptor
      • +
      • "ERROR" disk does not have a spec descriptor
      • -
      • "ERROR" serviceAccountAPIGroups does not have a spec descriptor
      • +
      • "ERROR" environment does not have a spec descriptor
      • -
      • "ERROR" apiURL does not have a spec descriptor
      • +
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" passThrough does not have a spec descriptor
      • +
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" serviceAccountResources does not have a spec descriptor
      • +
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" serviceAccountVerbs does not have a spec descriptor
      • +
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" webAppImage does not have a spec descriptor
      • +
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" generateSecret does not have a spec descriptor
      • +
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" namespace does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" resourceNames does not have a spec descriptor
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for memory
      • -
      • "ERROR" APIGroups does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for cpu
      • -
      • "ERROR" generateServiceAccount does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for disk
      • -
      • "ERROR" gateservers.ocgate.yaacov.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for environment
      • -
      • "ERROR" gatetokens.ocgate.yaacov.com does not have a status descriptor
      • + +
        +

        For couchdb-operator.v1.2.1:

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" memory does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for route
      • +
      • "ERROR" cpu does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceAccountAPIGroups
      • +
      • "ERROR" disk does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for apiURL
      • +
      • "ERROR" environment does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for passThrough
      • +
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceAccountResources
      • +
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceAccountVerbs
      • +
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for webAppImage
      • +
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for generateSecret
      • +
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for namespace
      • +
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceNames
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "WARNING" Add a spec descriptor for memory
      • -
      • "WARNING" Add a spec descriptor for APIGroups
      • +
      • "WARNING" Add a spec descriptor for cpu
      • -
      • "WARNING" Add a spec descriptor for generateServiceAccount
      • +
      • "WARNING" Add a spec descriptor for disk
      • + +
      • "WARNING" Add a spec descriptor for environment
      • + + +
        +

        For couchdb-operator.v1.3.1:

        + +

      • "ERROR" disk does not have a spec descriptor
      • + +
      • "ERROR" environment does not have a spec descriptor
      • + +
      • "ERROR" memory does not have a spec descriptor
      • + +
      • "ERROR" cpu does not have a spec descriptor
      • + +
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for disk
      • + +
      • "WARNING" Add a spec descriptor for environment
      • + +
      • "WARNING" Add a spec descriptor for memory
      • + +
      • "WARNING" Add a spec descriptor for cpu
      • @@ -9393,25 +8453,81 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For virt-gateway-operator.v0.0.1:

        +

        For couchdb-operator.v1.4.3:

        -

      • "WARNING" (virt-gateway-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (couchdb-operator.v1.4.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For couchdb-operator.v1.4.4:

        + + +

      • "WARNING" (couchdb-operator.v1.4.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For couchdb-operator.v1.4.4:

        + + +

      • "WARNING" (couchdb-operator.v1.4.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For couchdb-operator.v1.0.14:

        + + +

      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For couchdb-operator.v1.1.0:

        + + +

      • "WARNING" (couchdb-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For couchdb-operator.v1.2.1:

        + + +

      • "WARNING" (couchdb-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For couchdb-operator.v1.3.1:

        + + +

      • "WARNING" (couchdb-operator.v1.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -9421,33 +8537,37 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      hawkbit-operatoretcd -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • +
      • clusterwide-alpha
      • + +
      • singlenamespace-alpha
      • +
      @@ -9455,11 +8575,11 @@
      Grade

      NOT USED

      @@ -9469,35 +8589,103 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For hawkbit-operator.v0.1.4:

        + +
        +

        For etcdoperator-community.v0.6.1:

        + +

      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • + + +
      • "WARNING" Warning: Value : (etcdoperator-community.v0.6.1) example annotations not found
      • + + +
        +

        For etcdoperator.v0.9.4-clusterwide:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" etcdCluster does not have a spec descriptor
      • + +
      • "ERROR" backupStorageType does not have a spec descriptor
      • + +
      • "ERROR" s3 does not have a spec descriptor
      • + +
      • "ERROR" storageType does not have a spec descriptor
      • + +
      • "ERROR" s3 does not have a spec descriptor
      • + +
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • + + +
      • "WARNING" Add CRD validation for EtcdCluster/v1beta2
      • + +
      • "WARNING" Add CRD validation for EtcdRestore/v1beta2
      • + +
      • "WARNING" Add CRD validation for EtcdBackup/v1beta2
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for etcdCluster
      • + +
      • "WARNING" Add a spec descriptor for backupStorageType
      • + +
      • "WARNING" Add a spec descriptor for s3
      • + +
      • "WARNING" Add a spec descriptor for storageType
      • + +
      • "WARNING" Add a spec descriptor for s3
      • + + +
        +

        For etcdoperator.v0.9.4:

        + +

      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" etcdCluster does not have a spec descriptor
      • -
      • "ERROR" database does not have a spec descriptor
      • +
      • "ERROR" backupStorageType does not have a spec descriptor
      • -
      • "ERROR" rabbit does not have a spec descriptor
      • +
      • "ERROR" s3 does not have a spec descriptor
      • -
      • "ERROR" hawkbits.iot.eclipse.org does not have a status descriptor
      • +
      • "ERROR" s3 does not have a spec descriptor
      • + +
      • "ERROR" storageType does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for database
      • +
      • "WARNING" Add CRD validation for EtcdCluster/v1beta2
      • -
      • "WARNING" Add a spec descriptor for rabbit
      • +
      • "WARNING" Add CRD validation for EtcdRestore/v1beta2
      • + +
      • "WARNING" Add CRD validation for EtcdBackup/v1beta2
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for etcdCluster
      • + +
      • "WARNING" Add a spec descriptor for backupStorageType
      • + +
      • "WARNING" Add a spec descriptor for s3
      • + +
      • "WARNING" Add a spec descriptor for s3
      • + +
      • "WARNING" Add a spec descriptor for storageType
      • @@ -9508,25 +8696,47 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For hawkbit-operator.v0.1.4:

        +

        For etcdoperator-community.v0.6.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hawkbits.iot.eclipse.org"])
      • +
      • "WARNING" (etcdoperator-community.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["etcdclusters.etcd.database.coreos.com"])
      • + +
      • "WARNING" (etcdoperator-community.v0.6.1) example annotations not found
      • + + +
        +

        For etcdoperator.v0.9.4-clusterwide:

        + + +

      • "WARNING" (etcdoperator.v0.9.4-clusterwide) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["etcdbackups.etcd.database.coreos.com" "etcdclusters.etcd.database.coreos.com" "etcdrestores.etcd.database.coreos.com"])
      • + + +
        +

        For etcdoperator.v0.9.4:

        + + +

      • "WARNING" (etcdoperator.v0.9.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["etcdbackups.etcd.database.coreos.com" "etcdclusters.etcd.database.coreos.com" "etcdrestores.etcd.database.coreos.com"])
      • @@ -9540,18 +8750,18 @@
        Grade
      ibm-spectrum-scale-csi-operatorfalco -

      COMPLY

      +

      NOT COMPLY

      COMPLY

      @@ -9560,41 +8770,55 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For ibm-spectrum-scale-csi-operator.v2.3.0:

        +

        For falco-operator.v0.7.6:

        -

      • "ERROR" snapshotterNodeSelector does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" ebpf does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for snapshotterNodeSelector
      • +
      • "ERROR" customRules does not have a spec descriptor
      • + +
      • "ERROR" falcos.falco.org does not have a status descriptor
      • + +
      • "ERROR" falcos.falco.org does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for Falco/v1alpha1
      • + +
      • "WARNING" Add CRD validation for Falco/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for ebpf
      • + +
      • "WARNING" Add a spec descriptor for customRules
      • @@ -9605,25 +8829,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ibm-spectrum-scale-csi-operator.v2.3.0:

        +

        For falco-operator.v0.7.6:

        -

      • "WARNING" (ibm-spectrum-scale-csi-operator.v2.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (falco-operator.v0.7.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -9633,28 +8859,28 @@
        Grade

      NOT USED

      Grade B
      (700)
      Grade D
      (200)
      integrity-shield-operatornsm-operator-registry -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -9667,53 +8893,45 @@
        Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For integrity-shield-operator.v0.1.6:

        +

        For nsm-operator.v0.0.1:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" integrityshields.apis.integrityshield.io does not have a status descriptor
      • - -
      • "ERROR" signerConfig does not have a spec descriptor
      • - -
      • "ERROR" keyConfig does not have a spec descriptor
      • - -
      • "ERROR" shieldConfig does not have a spec descriptor
      • - -
      • "WARNING" Add a spec descriptor for signerConfig
      • +
      • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkServiceEndpoint: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for keyConfig
      • +
      • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkService: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for shieldConfig
      • +
      • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkServiceManager: provided API should have an example annotation
      • @@ -9724,27 +8942,33 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For integrity-shield-operator.v0.1.6:

        +

        For nsm-operator.v0.0.1:

        -

      • "WARNING" (integrity-shield-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (nsm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were 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: (["integrity-shield-operator-metrics-reader"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["networkserviceendpoints.networkservicemesh.io" "networkservicemanagers.networkservicemesh.io" "networkservices.networkservicemesh.io" "nsms.nsm.networkservicemesh.io"])
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -9754,87 +8978,81 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      sap-btp-operatornuxeo-operator -

      COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For sap-btp-operator.v0.1.6:

        +

        For nuxeo-operator.v0.7.1:

        -

      • "ERROR" serviceInstanceName does not have a spec descriptor
      • +
      • "ERROR" nuxeos.appzygy.net does not have a status descriptor
      • -
      • "ERROR" serviceOfferingName does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" servicePlanName does not have a spec descriptor
      • +
      • "ERROR" nodeSets does not have a spec descriptor
      • -
      • "ERROR" servicebindings.services.cloud.sap.com does not have a status descriptor
      • +
      • "ERROR" nuxeoImage does not have a spec descriptor
      • -
      • "ERROR" serviceinstances.services.cloud.sap.com does not have a status descriptor
      • +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" access does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceInstanceName
      • +
      • "WARNING" Add a spec descriptor for nodeSets
      • -
      • "WARNING" Add a spec descriptor for serviceOfferingName
      • +
      • "WARNING" Add a spec descriptor for nuxeoImage
      • -
      • "WARNING" Add a spec descriptor for servicePlanName
      • +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for access
      • @@ -9843,27 +9061,31 @@
        Grade
      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For sap-btp-operator.v0.1.6:

        +

        For nuxeo-operator.v0.7.1:

        + +

      • "ERROR" (nuxeo-operator.v0.7.1) csv.Spec.Maintainers elements should contain both name and email
      • + +
      • "WARNING" (nuxeo-operator.v0.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" (sap-btp-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nuxeos.appzygy.net"])
      • @@ -9873,28 +9095,28 @@
        Grade

      NOT USED

      Grade C
      (500)
      Grade D
      (200)
      xrootd-operatorcassandra-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -9907,55 +9129,69 @@
        Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For xrootd-operator.v0.2.1:

        +

        For cassandra-operator.v2.0.0:

        -

      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" storageLocation does not have a spec descriptor
      • -
      • "ERROR" redirector does not have a spec descriptor
      • +
      • "ERROR" snapshotTag does not have a spec descriptor
      • -
      • "ERROR" worker does not have a spec descriptor
      • +
      • "ERROR" cdc does not have a spec descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" cassandrabackups.cassandraoperator.instaclustr.com does not have a status descriptor
      • + +
      • "ERROR" cassandraclusters.cassandraoperator.instaclustr.com does not have a status descriptor
      • + +
      • "ERROR" cassandradatacenters.cassandraoperator.instaclustr.com does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" xrootdversions.catalog.xrootd.org does not have a status descriptor
      • -
      • "ERROR" xrootdclusters.xrootd.xrootd.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for storageLocation
      • +
      • "WARNING" Add a spec descriptor for snapshotTag
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for cdc
      • -
      • "WARNING" Add a spec descriptor for redirector
      • +
      • "WARNING" Add a spec descriptor for size
      • -
      • "WARNING" Add a spec descriptor for worker
      • +
      • "WARNING" Add a spec descriptor for size
      • + +
      • "WARNING" Add CRD validation for spec field `size` in CassandraCluster/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `size` in CassandraDataCenter/v1alpha1
      • @@ -9966,25 +9202,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For xrootd-operator.v0.2.1:

        +

        For cassandra-operator.v2.0.0:

        -

      • "WARNING" (xrootd-operator.v0.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (cassandra-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandrabackups.cassandraoperator.instaclustr.com" "cassandraclusters.cassandraoperator.instaclustr.com" "cassandradatacenters.cassandraoperator.instaclustr.com"])
      • @@ -9994,28 +9232,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      atlasmap-operatoreunomia -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -10028,11 +9266,11 @@
        Grade

      NOT USED

      @@ -10040,27 +9278,33 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For atlasmap-operator.v0.3.0:

        +

        For eunomia.v0.1.7:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" gitopsconfigs.eunomia.kohls.io does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `size` in GitOpsConfig/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for size
      • @@ -10071,27 +9315,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For atlasmap-operator.v0.3.0:

        +

        For eunomia.v0.1.7:

        -

      • "WARNING" (atlasmap-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (eunomia.v0.1.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["atlasmaps.atlasmap.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gitopsconfigs.eunomia.kohls.io"])
      • @@ -10105,24 +9349,24 @@
        Grade
      datatrucker-operatoribmcloud-iam-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -10135,116 +9379,54 @@
        Grade

      NOT USED

      USED

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For datatrucker-operator.v1.3.0:

        - -

      • "ERROR" datatruckerconfigs.datatrucker.datatrucker.io does not have a status descriptor
      • - -
      • "ERROR" datatruckerflows.datatrucker.datatrucker.io does not have a status descriptor
      • - -
      • "ERROR" API does not have a spec descriptor
      • - -
      • "ERROR" DB does not have a spec descriptor
      • - -
      • "ERROR" TempDB does not have a spec descriptor
      • - -
      • "ERROR" DatatruckerConfig does not have a spec descriptor
      • - -
      • "ERROR" JobDefinitions does not have a spec descriptor
      • - -
      • "ERROR" Keys does not have a spec descriptor
      • - -
      • "ERROR" Replicas does not have a spec descriptor
      • - -
      • "ERROR" Resources does not have a spec descriptor
      • - -
      • "ERROR" Scripts does not have a spec descriptor
      • - -
      • "ERROR" Type does not have a spec descriptor
      • - -
      • "ERROR" API does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for API
      • - -
      • "WARNING" Add a spec descriptor for DB
      • - -
      • "WARNING" Add a spec descriptor for TempDB
      • - -
      • "WARNING" Add a spec descriptor for DatatruckerConfig
      • - -
      • "WARNING" Add a spec descriptor for JobDefinitions
      • - -
      • "WARNING" Add a spec descriptor for Keys
      • - -
      • "WARNING" Add a spec descriptor for Replicas
      • - -
      • "WARNING" Add a spec descriptor for Resources
      • - -
      • "WARNING" Add a spec descriptor for Scripts
      • - -
      • "WARNING" Add a spec descriptor for Type
      • - -
      • "WARNING" Add a spec descriptor for API
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For datatrucker-operator.v1.3.0:

        +

        For ibmcloud-iam-operator.v0.1.0:

        -

      • "WARNING" (datatrucker-operator.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (ibmcloud-iam-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["accessgroups.ibmcloud.ibm.com" "accesspolicies.ibmcloud.ibm.com" "authorizationpolicies.ibmcloud.ibm.com" "customroles.ibmcloud.ibm.com"])
      • @@ -10254,32 +9436,32 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (300)
      instana-agentmariadb-operator-app -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • alpha
      @@ -10288,11 +9470,11 @@
      Grade

      NOT USED

      @@ -10302,41 +9484,87 @@
      Grade

      ERRORS AND WARNINGS

      - - +Info -
      + + +Info +

        -

        For instana-agent-operator.v1.0.5:

        +

        For mariadb-operator.v0.0.4:

        + +

      • "ERROR" rootpwd does not have a spec descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" dataStoragePath does not have a spec descriptor
      • + +
      • "ERROR" dataStorageSize does not have a spec descriptor
      • + +
      • "ERROR" database does not have a spec descriptor
      • + +
      • "ERROR" username does not have a spec descriptor
      • + +
      • "ERROR" password does not have a spec descriptor
      • + +
      • "ERROR" backupPath does not have a spec descriptor
      • + +
      • "ERROR" backupSize does not have a spec descriptor
      • + +
      • "ERROR" schedule does not have a spec descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" dataSourceName does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" agents.instana.io does not have a status descriptor
      • +
      • "ERROR" mariadbs.mariadb.persistentsys does not have a status descriptor
      • -
      • "ERROR" config.files does not have a spec descriptor
      • +
      • "ERROR" backups.mariadb.persistentsys does not have a status descriptor
      • -
      • "ERROR" agent.env does not have a spec descriptor
      • +
      • "ERROR" monitors.mariadb.persistentsys does not have a status descriptor
      • -
      • "ERROR" cluster.name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for rootpwd
      • -
      • "WARNING" Add CRD validation for InstanaAgent/v1beta1
      • +
      • "WARNING" Add a spec descriptor for size
      • -
      • "WARNING" Add a spec descriptor for config.files
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for agent.env
      • +
      • "WARNING" Add a spec descriptor for dataStoragePath
      • -
      • "WARNING" Add a spec descriptor for cluster.name
      • +
      • "WARNING" Add a spec descriptor for dataStorageSize
      • + +
      • "WARNING" Add a spec descriptor for database
      • + +
      • "WARNING" Add a spec descriptor for username
      • + +
      • "WARNING" Add a spec descriptor for password
      • + +
      • "WARNING" Add a spec descriptor for backupPath
      • + +
      • "WARNING" Add a spec descriptor for backupSize
      • + +
      • "WARNING" Add a spec descriptor for schedule
      • + +
      • "WARNING" Add a spec descriptor for size
      • + +
      • "WARNING" Add a spec descriptor for dataSourceName
      • + +
      • "WARNING" Add a spec descriptor for image
      • @@ -10347,25 +9575,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For instana-agent-operator.v1.0.5:

        +

        For mariadb-operator.v0.0.4:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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.mariadb.persistentsys" "mariadbs.mariadb.persistentsys" "monitors.mariadb.persistentsys"])
      • @@ -10379,28 +9607,40 @@
        Grade
      splunkstrimzi-kafka-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • strimzi-0.21.x
      • + +
      • strimzi-0.22.x
      • + +
      • strimzi-0.23.x
      • + +
      • strimzi-0.24.x
      • + +
      • strimzi-0.25.x
      • + +
      • strimzi-0.19.x
      • + +
      • strimzi-0.20.x
      @@ -10409,11 +9649,11 @@
      Grade

      NOT USED

      @@ -10423,613 +9663,554 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For splunk.v0.1.0:

        +

        For strimzi-cluster-operator.v0.21.1:

        -

      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" kafka does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" zookeeper does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" entityOperator does not have a spec descriptor
      • -
      • "ERROR" indexerclusters.enterprise.splunk.com does not have a status descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" licensemasters.enterprise.splunk.com does not have a status descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" searchheadclusters.enterprise.splunk.com does not have a status descriptor
      • +
      • "ERROR" consumer does not have a spec descriptor
      • -
      • "ERROR" sparks.enterprise.splunk.com does not have a status descriptor
      • +
      • "ERROR" producer does not have a spec descriptor
      • -
      • "ERROR" standalones.enterprise.splunk.com does not have a status descriptor
      • +
      • "ERROR" http does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" config does not have a spec descriptor
      • +
      • "ERROR" clusters does not have a spec descriptor
      • +
      • "ERROR" mirrors does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" goals does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • -
        -

        For splunk.v0.1.0:

        +

      • "WARNING" Add a spec descriptor for kafka
      • + +
      • "WARNING" Add a spec descriptor for zookeeper
      • + +
      • "WARNING" Add a spec descriptor for entityOperator
      • + +
      • "WARNING" Add a spec descriptor for tls
      • + +
      • "WARNING" Add a spec descriptor for tls
      • + +
      • "WARNING" Add a spec descriptor for consumer
      • + +
      • "WARNING" Add a spec descriptor for producer
      • + +
      • "WARNING" Add a spec descriptor for http
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for authentication
      • + +
      • "WARNING" Add a spec descriptor for authorization
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for clusters
      • +
      • "WARNING" Add a spec descriptor for mirrors
      • + +
      • "WARNING" Add a spec descriptor for goals
      • + + +
        +

        For strimzi-cluster-operator.v0.22.1:

        + +

      • "ERROR" kafka does not have a spec descriptor
      • + +
      • "ERROR" zookeeper does not have a spec descriptor
      • + +
      • "ERROR" entityOperator does not have a spec descriptor
      • + +
      • "ERROR" tls does not have a spec descriptor
      • + +
      • "ERROR" tls does not have a spec descriptor
      • + +
      • "ERROR" consumer does not have a spec descriptor
      • + +
      • "ERROR" producer does not have a spec descriptor
      • + +
      • "ERROR" http does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" authentication does not have a spec descriptor
      • + +
      • "ERROR" authorization does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" mirrors does not have a spec descriptor
      • + +
      • "ERROR" clusters does not have a spec descriptor
      • + +
      • "ERROR" goals does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for kafka
      • + +
      • "WARNING" Add a spec descriptor for zookeeper
      • + +
      • "WARNING" Add a spec descriptor for entityOperator
      • + +
      • "WARNING" Add a spec descriptor for tls
      • + +
      • "WARNING" Add a spec descriptor for tls
      • + +
      • "WARNING" Add a spec descriptor for consumer
      • + +
      • "WARNING" Add a spec descriptor for producer
      • + +
      • "WARNING" Add a spec descriptor for http
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for authentication
      • + +
      • "WARNING" Add a spec descriptor for authorization
      • + +
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" Add a spec descriptor for mirrors
      • +
      • "WARNING" Add a spec descriptor for clusters
      • +
      • "WARNING" Add a spec descriptor for goals
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      postgresql -

      PARTIAL COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • original_43
      • - -
      • original_41
      • - -
      • v5
      • - -
      • original_40
      • - -
      • original_42
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        -
        -

        For postgresoperator.v4.3.2:

        +

        For strimzi-cluster-operator.v0.23.0:

        -

      • "ERROR" pgreplicas.crunchydata.com does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" pgpolicies.crunchydata.com does not have a status descriptor
      • +
      • "ERROR" kafka does not have a spec descriptor
      • +
      • "ERROR" zookeeper does not have a spec descriptor
      • +
      • "ERROR" entityOperator does not have a spec descriptor
      • -
        -

        For postgresoperator.v4.1.0:

        +

      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" ContainerResources does not have a spec descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" ccpimage does not have a spec descriptor
      • +
      • "ERROR" consumer does not have a spec descriptor
      • -
      • "ERROR" namespace does not have a spec descriptor
      • +
      • "ERROR" producer does not have a spec descriptor
      • -
      • "ERROR" database does not have a spec descriptor
      • +
      • "ERROR" http does not have a spec descriptor
      • -
      • "ERROR" primaryhost does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" BackrestStorage does not have a spec descriptor
      • +
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "ERROR" backuppvcname does not have a spec descriptor
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
      • "ERROR" clustername does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" customconfig does not have a spec descriptor
      • +
      • "ERROR" clusters does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" mirrors does not have a spec descriptor
      • -
      • "ERROR" PrimaryStorage does not have a spec descriptor
      • +
      • "ERROR" goals does not have a spec descriptor
      • -
      • "ERROR" ccpimagetag does not have a spec descriptor
      • -
      • "ERROR" nodename does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for kafka
      • -
      • "ERROR" status does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "ERROR" ReplicaStorage does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for entityOperator
      • -
      • "ERROR" secretfrom does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for tls
      • -
      • "ERROR" strategy does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for tls
      • -
      • "ERROR" userlabels does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for consumer
      • -
      • "ERROR" usersecretname does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for producer
      • -
      • "ERROR" policies does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for http
      • -
      • "ERROR" port does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "ERROR" rootsecretname does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for authorization
      • -
      • "ERROR" user does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for authentication
      • -
      • "ERROR" ArchiveStorage does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "ERROR" backuppath does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for clusters
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for mirrors
      • -
      • "ERROR" primarysecretname does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for goals
      • -
      • "WARNING" Add CRD validation for Pgcluster/v1
      • +
        +

        For strimzi-cluster-operator.v0.24.0:

        -

      • "WARNING" Add CRD validation for Pgreplica/v1
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for Pgpolicy/v1
      • +
      • "ERROR" kafka does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Pgtask/v1
      • +
      • "ERROR" zookeeper does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Pgbackup/v1
      • +
      • "ERROR" entityOperator does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ContainerResources
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ccpimage
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for namespace
      • +
      • "ERROR" consumer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for database
      • +
      • "ERROR" producer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for primaryhost
      • +
      • "ERROR" http does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for BackrestStorage
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for backuppvcname
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for clustername
      • +
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for customconfig
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" clusters does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for PrimaryStorage
      • +
      • "ERROR" mirrors does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ccpimagetag
      • +
      • "ERROR" goals does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nodename
      • -
      • "WARNING" Add a spec descriptor for status
      • +
      • "WARNING" Add a spec descriptor for kafka
      • -
      • "WARNING" Add a spec descriptor for ReplicaStorage
      • +
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "WARNING" Add a spec descriptor for secretfrom
      • +
      • "WARNING" Add a spec descriptor for entityOperator
      • -
      • "WARNING" Add a spec descriptor for strategy
      • +
      • "WARNING" Add a spec descriptor for tls
      • -
      • "WARNING" Add a spec descriptor for userlabels
      • +
      • "WARNING" Add a spec descriptor for tls
      • -
      • "WARNING" Add a spec descriptor for usersecretname
      • +
      • "WARNING" Add a spec descriptor for consumer
      • -
      • "WARNING" Add a spec descriptor for policies
      • +
      • "WARNING" Add a spec descriptor for producer
      • -
      • "WARNING" Add a spec descriptor for port
      • +
      • "WARNING" Add a spec descriptor for http
      • -
      • "WARNING" Add a spec descriptor for rootsecretname
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for user
      • +
      • "WARNING" Add a spec descriptor for authentication
      • -
      • "WARNING" Add a spec descriptor for ArchiveStorage
      • +
      • "WARNING" Add a spec descriptor for authorization
      • -
      • "WARNING" Add a spec descriptor for backuppath
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for clusters
      • -
      • "WARNING" Add a spec descriptor for primarysecretname
      • +
      • "WARNING" Add a spec descriptor for mirrors
      • + +
      • "WARNING" Add a spec descriptor for goals

      • -

        For postgresoperator.v5.0.2:

        +

        For strimzi-cluster-operator.v0.25.0:

        +

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" kafka does not have a spec descriptor
      • -
        -

        For postgresoperator.v4.0.1:

        +

      • "ERROR" zookeeper does not have a spec descriptor
      • -
      • "ERROR" ContainerResources does not have a spec descriptor
      • +
      • "ERROR" entityOperator does not have a spec descriptor
      • -
      • "ERROR" PrimaryStorage does not have a spec descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "ERROR" ccpimagetag does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" policies does not have a spec descriptor
      • +
      • "ERROR" consumer does not have a spec descriptor
      • -
      • "ERROR" ReplicaStorage does not have a spec descriptor
      • +
      • "ERROR" producer does not have a spec descriptor
      • -
      • "ERROR" ccpimage does not have a spec descriptor
      • +
      • "ERROR" http does not have a spec descriptor
      • -
      • "ERROR" customconfig does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" backuppvcname does not have a spec descriptor
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
      • "ERROR" userlabels does not have a spec descriptor
      • +
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "ERROR" database does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" clusters does not have a spec descriptor
      • -
      • "ERROR" secretfrom does not have a spec descriptor
      • +
      • "ERROR" mirrors does not have a spec descriptor
      • -
      • "ERROR" status does not have a spec descriptor
      • +
      • "ERROR" goals does not have a spec descriptor
      • -
      • "ERROR" BackrestStorage does not have a spec descriptor
      • -
      • "ERROR" backuppath does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for kafka
      • -
      • "ERROR" namespace does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "ERROR" port does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for entityOperator
      • -
      • "ERROR" primaryhost does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for tls
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for consumer
      • + +
      • "WARNING" Add a spec descriptor for producer
      • -
      • "ERROR" primarysecretname does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for http
      • -
      • "ERROR" clustername does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for authentication
      • -
      • "ERROR" nodename does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for authorization
      • -
      • "ERROR" strategy does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "ERROR" user does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for clusters
      • -
      • "ERROR" ArchiveStorage does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for mirrors
      • -
      • "ERROR" rootsecretname does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for goals
      • -
      • "ERROR" usersecretname does not have a spec descriptor
      • +
        +

        For strimzi-cluster-operator.v0.25.0:

        -

      • "WARNING" Add CRD validation for Pgcluster/v1
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for Pgreplica/v1
      • +
      • "ERROR" kafka does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Pgpolicy/v1
      • +
      • "ERROR" zookeeper does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Pgtask/v1
      • +
      • "ERROR" entityOperator does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Pgbackup/v1
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ContainerResources
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for PrimaryStorage
      • +
      • "ERROR" consumer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ccpimagetag
      • +
      • "ERROR" producer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for policies
      • +
      • "ERROR" http does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ReplicaStorage
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ccpimage
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for customconfig
      • +
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for backuppvcname
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for userlabels
      • +
      • "ERROR" clusters does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for database
      • +
      • "ERROR" mirrors does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" goals does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for secretfrom
      • -
      • "WARNING" Add a spec descriptor for status
      • +
      • "WARNING" Add a spec descriptor for kafka
      • -
      • "WARNING" Add a spec descriptor for BackrestStorage
      • +
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "WARNING" Add a spec descriptor for backuppath
      • +
      • "WARNING" Add a spec descriptor for entityOperator
      • -
      • "WARNING" Add a spec descriptor for namespace
      • +
      • "WARNING" Add a spec descriptor for tls
      • -
      • "WARNING" Add a spec descriptor for port
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for primaryhost
      • +
      • "WARNING" Add a spec descriptor for consumer
      • -
      • "WARNING" Add a spec descriptor for primarysecretname
      • +
      • "WARNING" Add a spec descriptor for producer
      • -
      • "WARNING" Add a spec descriptor for clustername
      • +
      • "WARNING" Add a spec descriptor for http
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for nodename
      • +
      • "WARNING" Add a spec descriptor for authentication
      • -
      • "WARNING" Add a spec descriptor for strategy
      • +
      • "WARNING" Add a spec descriptor for authorization
      • -
      • "WARNING" Add a spec descriptor for user
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for ArchiveStorage
      • +
      • "WARNING" Add a spec descriptor for clusters
      • -
      • "WARNING" Add a spec descriptor for rootsecretname
      • +
      • "WARNING" Add a spec descriptor for mirrors
      • -
      • "WARNING" Add a spec descriptor for usersecretname
      • +
      • "WARNING" Add a spec descriptor for goals

      • -

        For postgresoperator.v4.7.0:

        - -

      • "ERROR" namespace does not have a spec descriptor
      • +

        For strimzi-cluster-operator.v0.19.0:

        -

      • "ERROR" podAntiAffinity does not have a spec descriptor
      • +
      • "ERROR" kafka does not have a spec descriptor
      • -
      • "ERROR" ReplicaStorage does not have a spec descriptor
      • +
      • "ERROR" zookeeper does not have a spec descriptor
      • -
      • "ERROR" user does not have a spec descriptor
      • +
      • "ERROR" entityOperator does not have a spec descriptor
      • -
      • "ERROR" BackrestStorage does not have a spec descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for namespace
      • +
      • "ERROR" consumer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for podAntiAffinity
      • +
      • "ERROR" producer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ReplicaStorage
      • +
      • "ERROR" http does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for user
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for BackrestStorage
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `BackrestStorage` in Pgcluster/v1
      • +
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `user` in Pgcluster/v1
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `namespace` in Pgcluster/v1
      • +
      • "ERROR" clusters does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `podAntiAffinity` in Pgcluster/v1
      • +
      • "ERROR" mirrors does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `ReplicaStorage` in Pgcluster/v1
      • +
      • "ERROR" goals does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
        -

        For postgresoperator.v4.2.2:

        -

      • "ERROR" pgreplicas.crunchydata.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for kafka
      • -
      • "ERROR" pgpolicies.crunchydata.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "ERROR" pgbackups.crunchydata.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for entityOperator
      • +
      • "WARNING" Add a spec descriptor for tls
      • +
      • "WARNING" Add a spec descriptor for tls
      • +
      • "WARNING" Add a spec descriptor for consumer
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for producer
      • +
      • "WARNING" Add a spec descriptor for http
      • -
        -

        For postgresoperator.v4.3.2:

        +

      • "WARNING" Add a spec descriptor for config
      • +
      • "WARNING" Add a spec descriptor for authentication
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" Add a spec descriptor for authorization
      • +
      • "WARNING" Add a spec descriptor for config
      • -
        -

        For postgresoperator.v4.1.0:

        +

      • "WARNING" Add a spec descriptor for clusters
      • +
      • "WARNING" Add a spec descriptor for mirrors
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgbackups.crunchydata.com" "pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
      • +
      • "WARNING" Add a spec descriptor for goals
      • -
        -

        For postgresoperator.v5.0.2:

        +
        +

        For strimzi-cluster-operator.v0.20.1:

        +

      • "ERROR" kafka does not have a spec descriptor
      • +
      • "ERROR" zookeeper does not have a spec descriptor
      • -
        -

        For postgresoperator.v4.0.1:

        +

      • "ERROR" entityOperator does not have a spec descriptor
      • +
      • "ERROR" tls does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgbackups.crunchydata.com" "pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
      • +
      • "ERROR" tls does not have a spec descriptor
      • +
      • "ERROR" consumer does not have a spec descriptor
      • -
        -

        For postgresoperator.v4.7.0:

        +

      • "ERROR" producer does not have a spec descriptor
      • +
      • "ERROR" http does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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" config does not have a spec descriptor
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
        -

        For postgresoperator.v4.2.2:

        +

      • "ERROR" authorization does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgbackups.crunchydata.com" "pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
      • +
      • "ERROR" mirrors does not have a spec descriptor
      • +
      • "ERROR" clusters does not have a spec descriptor
      • +
      • "ERROR" goals does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade D
      (200)
      dynatrace-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" Owned CRDs do not have resources specified
      • - -
        -

        For dynatrace-operator.v0.2.2:

        -

      • "ERROR" oneAgent does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for kafka
      • -
      • "ERROR" routing does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for zookeeper
      • -
      • "ERROR" activeGate does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for entityOperator
      • -
      • "ERROR" classicFullStack does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for tls
      • -
      • "ERROR" kubernetesMonitoring does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for tls
      • +
      • "WARNING" Add a spec descriptor for consumer
      • -
      • "WARNING" Add a spec descriptor for oneAgent
      • +
      • "WARNING" Add a spec descriptor for producer
      • -
      • "WARNING" Add a spec descriptor for routing
      • +
      • "WARNING" Add a spec descriptor for http
      • -
      • "WARNING" Add a spec descriptor for activeGate
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for classicFullStack
      • +
      • "WARNING" Add a spec descriptor for authentication
      • -
      • "WARNING" Add a spec descriptor for kubernetesMonitoring
      • +
      • "WARNING" Add a spec descriptor for authorization
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for mirrors
      • + +
      • "WARNING" Add a spec descriptor for clusters
      • + +
      • "WARNING" Add a spec descriptor for goals
      • @@ -11040,25 +10221,66 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For dynatrace-operator.v0.2.2:

        +

        For strimzi-cluster-operator.v0.21.1:

        -

      • "WARNING" (dynatrace-operator.v0.2.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • + + +
        +

        For strimzi-cluster-operator.v0.22.1:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • + + +
        +

        For strimzi-cluster-operator.v0.23.0:

        + + + +
        +

        For strimzi-cluster-operator.v0.24.0:

        + + + +
        +

        For strimzi-cluster-operator.v0.25.0:

        + + + +
        +

        For strimzi-cluster-operator.v0.25.0:

        + + + +
        +

        For strimzi-cluster-operator.v0.19.0:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • + + +
        +

        For strimzi-cluster-operator.v0.20.1:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
      • @@ -11068,28 +10290,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade C
      (500)
      ham-deploysynapse-helm -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -11102,109 +10324,67 @@
        Grade

      NOT USED

      NOT USED

      USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For ham-deploy.v0.1.0:

        - -

      • "ERROR" core does not have a spec descriptor
      • - -
      • "ERROR" tools does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" operators.deploy.hybridapp.io does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for core
      • - -
      • "WARNING" Add a spec descriptor for tools
      • - - - -
      -
      -
      -

      ONLY WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For ham-deploy.v0.1.0:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["operators.deploy.hybridapp.io"])
      • - - - -
      -
      -

      NOT USED

      Grade D
      (100)
      Grade A
      (900)
      ibm-quantum-operatoranchore-engine -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -11217,11 +10397,11 @@
        Grade

      NOT USED

      @@ -11229,31 +10409,99 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For ibm-quantum-operator.v0.1.0:

        +

        For anchore-engine-operator.v0.1.3:

        + +

      • "ERROR" anchoreengines.anchore.com does not have a status descriptor
      • + +
      • "ERROR" anchoreEnterpriseGlobal does not have a spec descriptor
      • + +
      • "ERROR" anchoreAnalyzer does not have a spec descriptor
      • + +
      • "ERROR" anchoreApi does not have a spec descriptor
      • + +
      • "ERROR" anchoreEnterpriseReports does not have a spec descriptor
      • + +
      • "ERROR" anchoreEnterpriseUi does not have a spec descriptor
      • + +
      • "ERROR" anchorePolicyEngine does not have a spec descriptor
      • + +
      • "ERROR" postgresql does not have a spec descriptor
      • + +
      • "ERROR" anchore-feeds-db does not have a spec descriptor
      • + +
      • "ERROR" anchore-ui-redis does not have a spec descriptor
      • + +
      • "ERROR" ingress does not have a spec descriptor
      • + +
      • "ERROR" anchoreCatalog does not have a spec descriptor
      • + +
      • "ERROR" anchoreEnterpriseFeeds does not have a spec descriptor
      • + +
      • "ERROR" anchoreGlobal does not have a spec descriptor
      • + +
      • "ERROR" anchoreSimpleQueue does not have a spec descriptor
      • + +
      • "ERROR" cloudsql does not have a spec descriptor
      • + +
      • "ERROR" anchoreEnterpriseNotifications does not have a spec descriptor
      • + +
      • "ERROR" anchoreEnterpriseRbac does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" ibmqs.singhp11.io does not have a status descriptor
      • -
      • "ERROR" error spec does not exist
      • +
      • "WARNING" Add CRD validation for AnchoreEngine/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for anchoreEnterpriseGlobal
      • + +
      • "WARNING" Add a spec descriptor for anchoreAnalyzer
      • + +
      • "WARNING" Add a spec descriptor for anchoreApi
      • + +
      • "WARNING" Add a spec descriptor for anchoreEnterpriseReports
      • + +
      • "WARNING" Add a spec descriptor for anchoreEnterpriseUi
      • + +
      • "WARNING" Add a spec descriptor for anchorePolicyEngine
      • + +
      • "WARNING" Add a spec descriptor for postgresql
      • + +
      • "WARNING" Add a spec descriptor for anchore-feeds-db
      • + +
      • "WARNING" Add a spec descriptor for anchore-ui-redis
      • + +
      • "WARNING" Add a spec descriptor for ingress
      • + +
      • "WARNING" Add a spec descriptor for anchoreCatalog
      • + +
      • "WARNING" Add a spec descriptor for anchoreEnterpriseFeeds
      • + +
      • "WARNING" Add a spec descriptor for anchoreGlobal
      • + +
      • "WARNING" Add a spec descriptor for anchoreSimpleQueue
      • + +
      • "WARNING" Add a spec descriptor for cloudsql
      • + +
      • "WARNING" Add a spec descriptor for anchoreEnterpriseNotifications
      • +
      • "WARNING" Add a spec descriptor for anchoreEnterpriseRbac
      • @@ -11264,27 +10512,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ibm-quantum-operator.v0.1.0:

        +

        For anchore-engine-operator.v0.1.3:

        -

      • "WARNING" (ibm-quantum-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (anchore-engine-operator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmqs.singhp11.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anchoreengines.anchore.com"])
      • @@ -11298,28 +10546,28 @@
        Grade
      opentelemetry-operatorinstana-agent -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      @@ -11328,45 +10576,55 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For opentelemetry-operator.v0.33.0:

        +

        For instana-agent-operator.v1.0.5:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "ERROR" agents.instana.io does not have a status descriptor
      • -
      • "ERROR" opentelemetrycollectors.opentelemetry.io does not have a status descriptor
      • +
      • "ERROR" config.files does not have a spec descriptor
      • + +
      • "ERROR" agent.env does not have a spec descriptor
      • + +
      • "ERROR" cluster.name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "WARNING" Add CRD validation for InstanaAgent/v1beta1
      • + +
      • "WARNING" Add a spec descriptor for config.files
      • + +
      • "WARNING" Add a spec descriptor for agent.env
      • + +
      • "WARNING" Add a spec descriptor for cluster.name
      • @@ -11377,25 +10635,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For opentelemetry-operator.v0.33.0:

        +

        For instana-agent-operator.v1.0.5:

        -

      • "WARNING" (opentelemetry-operator.v0.33.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -11405,35 +10663,45 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      percona-xtradb-cluster-operatorpercona-server-mongodb-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • original
      • + +
      +
      +

      NOT USED

      @@ -11443,310 +10711,168 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For percona-xtradb-cluster-operator.v1.8.0:

        - -

      • "ERROR" vaultSecretName does not have a spec descriptor
      • - -
      • "ERROR" updateStrategy does not have a spec descriptor
      • - -
      • "ERROR" haproxy does not have a spec descriptor
      • +

        For percona-server-mongodb-operator.v1.9.0:

        -

      • "ERROR" backup does not have a spec descriptor
      • +
      • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
      • -
      • "ERROR" sslSecretName does not have a spec descriptor
      • +
      • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
      • -
      • "ERROR" logCollectorSecretName does not have a spec descriptor
      • +
      • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
      • -
      • "ERROR" secretsName does not have a spec descriptor
      • +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
      • -
      • "ERROR" upgradeOptions does not have a spec descriptor
      • - -
      • "ERROR" pxc does not have a spec descriptor
      • - -
      • "ERROR" proxysql does not have a spec descriptor
      • - -
      • "ERROR" logcollector does not have a spec descriptor
      • -
      • "ERROR" pmm does not have a spec descriptor
      • -
      • "ERROR" crVersion does not have a spec descriptor
      • +
      • "ERROR" replsets does not have a spec descriptor
      • -
      • "ERROR" sslInternalSecretName does not have a spec descriptor
      • +
      • "ERROR" sharding does not have a spec descriptor
      • -
      • "ERROR" pxcCluster does not have a spec descriptor
      • +
      • "ERROR" crVersion does not have a spec descriptor
      • -
      • "ERROR" storageName does not have a spec descriptor
      • +
      • "ERROR" updateStrategy does not have a spec descriptor
      • -
      • "ERROR" pxcCluster does not have a spec descriptor
      • +
      • "ERROR" upgradeOptions does not have a spec descriptor
      • -
      • "ERROR" storageName does not have a spec descriptor
      • +
      • "ERROR" secrets does not have a spec descriptor
      • -
      • "ERROR" backupName does not have a spec descriptor
      • +
      • "ERROR" mongod does not have a spec descriptor
      • -
      • "ERROR" pxcCluster does not have a spec descriptor
      • +
      • "ERROR" backup does not have a spec descriptor
      • -
      • "ERROR" pxcCluster does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" storageName does not have a spec descriptor
      • +
      • "ERROR" psmdbCluster does not have a spec descriptor
      • "ERROR" storageName does not have a spec descriptor
      • -
      • "ERROR" pxcCluster does not have a spec descriptor
      • - -
      • "ERROR" pxcCluster does not have a spec descriptor
      • +
      • "ERROR" clusterName does not have a spec descriptor
      • "ERROR" backupName does not have a spec descriptor
      • -
      • "ERROR" perconaxtradbclusters.pxc.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
      • - -
      • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for vaultSecretName
      • - -
      • "WARNING" Add a spec descriptor for updateStrategy
      • - -
      • "WARNING" Add a spec descriptor for haproxy
      • -
      • "WARNING" Add a spec descriptor for backup
      • +
      • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-9-0
      • -
      • "WARNING" Add a spec descriptor for sslSecretName
      • +
      • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
      • -
      • "WARNING" Add a spec descriptor for logCollectorSecretName
      • +
      • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
      • -
      • "WARNING" Add a spec descriptor for secretsName
      • +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
      • -
      • "WARNING" Add a spec descriptor for upgradeOptions
      • - -
      • "WARNING" Add a spec descriptor for pxc
      • - -
      • "WARNING" Add a spec descriptor for proxysql
      • - -
      • "WARNING" Add a spec descriptor for logcollector
      • -
      • "WARNING" Add a spec descriptor for pmm
      • -
      • "WARNING" Add a spec descriptor for crVersion
      • - -
      • "WARNING" Add a spec descriptor for sslInternalSecretName
      • - -
      • "WARNING" Add a spec descriptor for pxcCluster
      • - -
      • "WARNING" Add a spec descriptor for storageName
      • - -
      • "WARNING" Add a spec descriptor for pxcCluster
      • - -
      • "WARNING" Add a spec descriptor for storageName
      • - -
      • "WARNING" Add a spec descriptor for backupName
      • - -
      • "WARNING" Add a spec descriptor for pxcCluster
      • - -
      • "WARNING" Add a spec descriptor for pxcCluster
      • - -
      • "WARNING" Add a spec descriptor for storageName
      • - -
      • "WARNING" Add a spec descriptor for storageName
      • - -
      • "WARNING" Add a spec descriptor for pxcCluster
      • - -
      • "WARNING" Add a spec descriptor for pxcCluster
      • - -
      • "WARNING" Add a spec descriptor for backupName
      • - -
      • "WARNING" Add CRD validation for PerconaXtraDBCluster/v1-8-0
      • - -
      • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
      • - -
      • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
      • - -
      • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
      • - -
      • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
      • - -
      • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for replsets
      • -
      • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
      • +
      • "WARNING" Add a spec descriptor for sharding
      • +
      • "WARNING" Add a spec descriptor for crVersion
      • +
      • "WARNING" Add a spec descriptor for updateStrategy
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for upgradeOptions
      • +
      • "WARNING" Add a spec descriptor for secrets
      • -
        -

        For percona-xtradb-cluster-operator.v1.8.0:

        +

      • "WARNING" Add a spec descriptor for mongod
      • +
      • "WARNING" Add a spec descriptor for backup
      • -
      • "WARNING" (percona-xtradb-cluster-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaxtradbbackups.pxc.percona.com" "perconaxtradbclusterbackups.pxc.percona.com" "perconaxtradbclusterrestores.pxc.percona.com" "perconaxtradbclusters.pxc.percona.com"])
      • +
      • "WARNING" Add a spec descriptor for psmdbCluster
      • +
      • "WARNING" Add a spec descriptor for storageName
      • +
      • "WARNING" Add a spec descriptor for clusterName
      • + +
      • "WARNING" Add a spec descriptor for backupName
      • -
      -
      - -

      NOT USED

      Grade D
      (200)
      prometheus -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        -
        -

        For prometheusoperator.0.47.0:

        +

        For percona-server-mongodb-operator.v1.3.0:

        -

      • "ERROR" alerting does not have a spec descriptor
      • +
      • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
      • -
      • "ERROR" selector does not have a spec descriptor
      • +
      • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
      • -
      • "ERROR" selector does not have a spec descriptor
      • +
      • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
      • -
      • "ERROR" alertmanagerConfigSelector does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" groups does not have a spec descriptor
      • +
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • -
      • "ERROR" route does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" receivers does not have a spec descriptor
      • +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
      • -
      • "ERROR" prometheuses.monitoring.coreos.com does not have a status descriptor
      • +
      • "ERROR" secrets does not have a spec descriptor
      • -
      • "ERROR" servicemonitors.monitoring.coreos.com does not have a status descriptor
      • +
      • "ERROR" pmm does not have a spec descriptor
      • -
      • "ERROR" podmonitors.monitoring.coreos.com does not have a status descriptor
      • +
      • "ERROR" replsets does not have a spec descriptor
      • -
      • "ERROR" alertmanagers.monitoring.coreos.com does not have a status descriptor
      • +
      • "ERROR" mongod does not have a spec descriptor
      • -
      • "ERROR" prometheusrules.monitoring.coreos.com does not have a status descriptor
      • +
      • "ERROR" backup does not have a spec descriptor
      • -
      • "ERROR" alertmanagerconfigs.monitoring.coreos.com does not have a status descriptor
      • +
      • "ERROR" backupName does not have a spec descriptor
      • +
      • "ERROR" clusterName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for alerting
      • +
      • "ERROR" psmdbCluster does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for selector
      • +
      • "ERROR" storageName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for selector
      • -
      • "WARNING" Add a spec descriptor for alertmanagerConfigSelector
      • +
      • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-3-0
      • -
      • "WARNING" Add a spec descriptor for groups
      • +
      • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
      • -
      • "WARNING" Add a spec descriptor for route
      • +
      • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
      • -
      • "WARNING" Add a spec descriptor for receivers
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Warning: Value monitoring.coreos.com/v1, Kind=Probe: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • -
      • "WARNING" Warning: Value monitoring.coreos.com/v1, Kind=ThanosRuler: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
      • + +
      • "WARNING" Add a spec descriptor for secrets
      • + +
      • "WARNING" Add a spec descriptor for pmm
      • + +
      • "WARNING" Add a spec descriptor for replsets
      • + +
      • "WARNING" Add a spec descriptor for mongod
      • + +
      • "WARNING" Add a spec descriptor for backup
      • + +
      • "WARNING" Add a spec descriptor for backupName
      • + +
      • "WARNING" Add a spec descriptor for clusterName
      • + +
      • "WARNING" Add a spec descriptor for psmdbCluster
      • + +
      • "WARNING" Add a spec descriptor for storageName
      • @@ -11757,29 +10883,36 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For prometheusoperator.0.47.0:

        +

        For percona-server-mongodb-operator.v1.9.0:

        -

      • "WARNING" (prometheusoperator.0.47.0) csv.metadata.Name prometheusoperator.0.47.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
      • "WARNING" (percona-server-mongodb-operator.v1.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
      • -
      • "WARNING" provided API should have an example annotation
      • + +
        +

        For percona-server-mongodb-operator.v1.3.0:

        + + +

      • "WARNING" (percona-server-mongodb-operator.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
      • @@ -11789,119 +10922,111 @@
        Grade

      NOT USED

      Grade C
      (500)
      Grade D
      (100)
      universal-crossplaneqserv-operator -

      COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For universal-crossplane.1.2.3-up.1:

        - -

      • "ERROR" package does not have a spec descriptor
      • - -
      • "ERROR" group does not have a spec descriptor
      • - -
      • "ERROR" names does not have a spec descriptor
      • - -
      • "ERROR" claimNames does not have a spec descriptor
      • +

        For qserv-operator.v2021.8.1-rc3:

        -

      • "ERROR" connectionSecretKeys does not have a spec descriptor
      • +
      • "ERROR" qservs.qserv.lsst.org does not have a status descriptor
      • -
      • "ERROR" versions does not have a spec descriptor
      • +
      • "ERROR" worker does not have a spec descriptor
      • -
      • "ERROR" writeConnectionSecretsToNamespace does not have a spec descriptor
      • +
      • "ERROR" xrootd does not have a spec descriptor
      • -
      • "ERROR" compositeTypeRef does not have a spec descriptor
      • +
      • "ERROR" dashboard does not have a spec descriptor
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "ERROR" storageClassName does not have a spec descriptor
      • -
      • "ERROR" package does not have a spec descriptor
      • +
      • "ERROR" ingest does not have a spec descriptor
      • -
      • "ERROR" configurations.pkg.crossplane.io does not have a status descriptor
      • +
      • "ERROR" replication does not have a spec descriptor
      • -
      • "ERROR" compositeresourcedefinitions.apiextensions.crossplane.io does not have a status descriptor
      • +
      • "ERROR" storage does not have a spec descriptor
      • -
      • "ERROR" compositions.apiextensions.crossplane.io does not have a status descriptor
      • +
      • "ERROR" czar does not have a spec descriptor
      • -
      • "ERROR" providers.pkg.crossplane.io does not have a status descriptor
      • +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for package
      • - -
      • "WARNING" Add a spec descriptor for group
      • - -
      • "WARNING" Add a spec descriptor for names
      • - -
      • "WARNING" Add a spec descriptor for claimNames
      • - -
      • "WARNING" Add a spec descriptor for connectionSecretKeys
      • - -
      • "WARNING" Add a spec descriptor for versions
      • +
      • "WARNING" Add a spec descriptor for worker
      • -
      • "WARNING" Add a spec descriptor for writeConnectionSecretsToNamespace
      • +
      • "WARNING" Add a spec descriptor for xrootd
      • -
      • "WARNING" Add a spec descriptor for compositeTypeRef
      • +
      • "WARNING" Add a spec descriptor for dashboard
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "WARNING" Add a spec descriptor for storageClassName
      • -
      • "WARNING" Add a spec descriptor for package
      • +
      • "WARNING" Add a spec descriptor for ingest
      • -
      • "WARNING" Warning: Value pkg.crossplane.io/v1, Kind=ConfigurationRevision: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for replication
      • -
      • "WARNING" Warning: Value pkg.crossplane.io/v1alpha1, Kind=ControllerConfig: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for storage
      • -
      • "WARNING" Warning: Value pkg.crossplane.io/v1alpha1, Kind=Lock: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for czar
      • -
      • "WARNING" Warning: Value pkg.crossplane.io/v1, Kind=ProviderRevision: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • @@ -11912,33 +11037,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For universal-crossplane.1.2.3-up.1:

        - - -

      • "WARNING" (universal-crossplane.1.2.3-up.1) csv.metadata.Name universal-crossplane.1.2.3-up.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For qserv-operator.v2021.8.1-rc3:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["qservs.qserv.lsst.org"])
      • @@ -11948,45 +11065,35 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (200)
      wildflyflux

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -11994,27 +11101,215 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For wildfly-operator.v0.5.2:

        +

        For flux.v0.17.0:

        -

      • "ERROR" wildflyservers.wildfly.org does not have a status descriptor
      • +
      • "ERROR" helmreleases.helm.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" gitrepositories.source.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" helmrepositories.source.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" helmcharts.source.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" buckets.source.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" kustomizations.kustomize.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" providers.notification.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" alerts.notification.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" receivers.notification.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" imagerepositories.image.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" imagepolicies.image.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" imageupdateautomations.image.toolkit.fluxcd.io does not have a status descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" chart does not have a spec descriptor
      • + +
      • "ERROR" values does not have a spec descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" ref does not have a spec descriptor
      • + +
      • "ERROR" url does not have a spec descriptor
      • + +
      • "ERROR" url does not have a spec descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" sourceRef does not have a spec descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" chart does not have a spec descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" provider does not have a spec descriptor
      • + +
      • "ERROR" bucketName does not have a spec descriptor
      • + +
      • "ERROR" endpoint does not have a spec descriptor
      • + +
      • "ERROR" insecure does not have a spec descriptor
      • + +
      • "ERROR" secretRef does not have a spec descriptor
      • + +
      • "ERROR" timeout does not have a spec descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" path does not have a spec descriptor
      • + +
      • "ERROR" prune does not have a spec descriptor
      • + +
      • "ERROR" sourceRef does not have a spec descriptor
      • + +
      • "ERROR" type does not have a spec descriptor
      • + +
      • "ERROR" address does not have a spec descriptor
      • + +
      • "ERROR" secretRef does not have a spec descriptor
      • + +
      • "ERROR" providerRef does not have a spec descriptor
      • + +
      • "ERROR" eventSeverity does not have a spec descriptor
      • + +
      • "ERROR" eventSources does not have a spec descriptor
      • + +
      • "ERROR" type does not have a spec descriptor
      • + +
      • "ERROR" events does not have a spec descriptor
      • + +
      • "ERROR" secretRef does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" imageRepositoryRef does not have a spec descriptor
      • + +
      • "ERROR" policy does not have a spec descriptor
      • + +
      • "ERROR" interval does not have a spec descriptor
      • + +
      • "ERROR" sourceRef does not have a spec descriptor
      • + +
      • "ERROR" git does not have a spec descriptor
      • + +
      • "ERROR" update does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for chart
      • + +
      • "WARNING" Add a spec descriptor for values
      • + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for ref
      • + +
      • "WARNING" Add a spec descriptor for url
      • + +
      • "WARNING" Add a spec descriptor for url
      • + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for sourceRef
      • +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for chart
      • + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for provider
      • + +
      • "WARNING" Add a spec descriptor for bucketName
      • + +
      • "WARNING" Add a spec descriptor for endpoint
      • + +
      • "WARNING" Add a spec descriptor for insecure
      • + +
      • "WARNING" Add a spec descriptor for secretRef
      • + +
      • "WARNING" Add a spec descriptor for timeout
      • + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for path
      • + +
      • "WARNING" Add a spec descriptor for prune
      • + +
      • "WARNING" Add a spec descriptor for sourceRef
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for address
      • + +
      • "WARNING" Add a spec descriptor for secretRef
      • + +
      • "WARNING" Add a spec descriptor for providerRef
      • + +
      • "WARNING" Add a spec descriptor for eventSeverity
      • + +
      • "WARNING" Add a spec descriptor for eventSources
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for events
      • + +
      • "WARNING" Add a spec descriptor for secretRef
      • + +
      • "WARNING" Add a spec descriptor for resources
      • + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for imageRepositoryRef
      • + +
      • "WARNING" Add a spec descriptor for policy
      • + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for sourceRef
      • + +
      • "WARNING" Add a spec descriptor for git
      • + +
      • "WARNING" Add a spec descriptor for update
      • @@ -12025,11 +11320,11 @@
        Grade

      PASS

      @@ -12037,32 +11332,32 @@
      Grade

      NOT USED

      Grade B
      (600)
      Grade B
      (700)
      appranixkiali -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • deprecated
      • +
      • alpha
      @@ -12071,11 +11366,11 @@
      Grade

      NOT USED

      @@ -12083,34 +11378,82 @@
      Grade

      NOT USED

      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For ax-cps-operator.v1.0.0:

        +

        For kiali-operator.v1.39.0:

        +

      • "ERROR" installation_tag does not have a spec descriptor
      • -
      • "WARNING" Warning: Value : (ax-cps-operator.v1.0.0) example annotations not found
      • +
      • "ERROR" istio_namespace does not have a spec descriptor
      • + +
      • "ERROR" deployment does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + +
      • "ERROR" kialis.kiali.io does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `installation_tag` in Kiali/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `istio_namespace` in Kiali/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `deployment` in Kiali/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `server` in Kiali/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for installation_tag
      • + +
      • "WARNING" Add a spec descriptor for istio_namespace
      • + +
      • "WARNING" Add a spec descriptor for deployment
      • + +
      • "WARNING" Add a spec descriptor for server

      • -

        For ax-cps-operator.v2.3.0:

        +

        For kiali-operator.v1.39.0:

        +

      • "ERROR" installation_tag does not have a spec descriptor
      • -
      • "WARNING" Warning: Value : (ax-cps-operator.v2.3.0) example annotations not found
      • +
      • "ERROR" istio_namespace does not have a spec descriptor
      • + +
      • "ERROR" deployment does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + +
      • "ERROR" kialis.kiali.io does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `installation_tag` in Kiali/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `istio_namespace` in Kiali/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `deployment` in Kiali/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `server` in Kiali/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for installation_tag
      • + +
      • "WARNING" Add a spec descriptor for istio_namespace
      • + +
      • "WARNING" Add a spec descriptor for deployment
      • + +
      • "WARNING" Add a spec descriptor for server
      • @@ -12121,40 +11464,32 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ax-cps-operator.v1.0.0:

        - - -

      • "WARNING" (ax-cps-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +

        For kiali-operator.v1.39.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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.aps.appranix.com" "backupstoragelocations.aps.appranix.com" "deletebackuprequests.aps.appranix.com" "downloadrequests.aps.appranix.com" "podvolumebackups.aps.appranix.com" "podvolumerestores.aps.appranix.com" "resticrepositories.aps.appranix.com" "restores.aps.appranix.com" "schedules.aps.appranix.com" "serverstatusrequests.aps.appranix.com" "volumesnapshotlocations.aps.appranix.com"])
      • -
      • "WARNING" (ax-cps-operator.v1.0.0) example annotations not found
      • +
      • "WARNING" (kiali-operator.v1.39.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.

      • -

        For ax-cps-operator.v2.3.0:

        - - -

      • "WARNING" (ax-cps-operator.v2.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +

        For kiali-operator.v1.39.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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.aps.appranix.com" "backupstoragelocations.aps.appranix.com" "deletebackuprequests.aps.appranix.com" "downloadrequests.aps.appranix.com" "podvolumebackups.aps.appranix.com" "podvolumerestores.aps.appranix.com" "resticrepositories.aps.appranix.com" "restores.aps.appranix.com" "schedules.aps.appranix.com" "serverstatusrequests.aps.appranix.com" "volumesnapshotlocations.aps.appranix.com"])
      • -
      • "WARNING" (ax-cps-operator.v2.3.0) example annotations not found
      • +
      • "WARNING" (kiali-operator.v1.39.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -12164,28 +11499,28 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade C
      (500)
      hazelcast-operatorlightbend-console-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -12198,11 +11533,11 @@
        Grade

      NOT USED

      @@ -12212,146 +11547,201 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For hazelcast-operator.v0.3.7:

        + +
        +

        For lightbend-console-operator.v0.0.1:

        + +

      • "ERROR" consoles.app.lightbend.com does not have a status descriptor
      • + +
      • "ERROR" esConsoleExposePort does not have a spec descriptor
      • + +
      • "ERROR" esGrafanaEnvVars does not have a spec descriptor
      • + +
      • "ERROR" esMonitorVersion does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" prometheusDomain does not have a spec descriptor
      • + +
      • "ERROR" prometheusVersion does not have a spec descriptor
      • + +
      • "ERROR" defaultCPURequest does not have a spec descriptor
      • + +
      • "ERROR" deploymentApiVersion does not have a spec descriptor
      • + +
      • "ERROR" prometheusVolumeSize does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchImage does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchVersion does not have a spec descriptor
      • + +
      • "ERROR" kubeStateMetricsVersion does not have a spec descriptor
      • + +
      • "ERROR" configMapReloadImage does not have a spec descriptor
      • + +
      • "ERROR" defaultMemoryRequest does not have a spec descriptor
      • + +
      • "ERROR" prometheusMemoryRequest does not have a spec descriptor
      • + +
      • "ERROR" rbacApiVersion does not have a spec descriptor
      • + +
      • "ERROR" alpineVersion does not have a spec descriptor
      • + +
      • "ERROR" esGrafanaImage does not have a spec descriptor
      • + +
      • "ERROR" daemonSetApiVersion does not have a spec descriptor
      • + +
      • "ERROR" imageCredentials does not have a spec descriptor
      • + +
      • "ERROR" esConsoleVersion does not have a spec descriptor
      • + +
      • "ERROR" esGrafanaVolumeSize does not have a spec descriptor
      • + +
      • "ERROR" prometheusImage does not have a spec descriptor
      • + +
      • "ERROR" configMapReloadVersion does not have a spec descriptor
      • + +
      • "ERROR" consoleUIConfig does not have a spec descriptor
      • + +
      • "ERROR" apiGroupVersion does not have a spec descriptor
      • + +
      • "ERROR" busyboxImage does not have a spec descriptor
      • + +
      • "ERROR" enableElasticsearch does not have a spec descriptor
      • + +
      • "ERROR" esGrafanaVersion does not have a spec descriptor
      • + +
      • "ERROR" esMonitorImage does not have a spec descriptor
      • + +
      • "ERROR" goDnsmasqImage does not have a spec descriptor
      • + +
      • "ERROR" alertManagers does not have a spec descriptor
      • + +
      • "ERROR" alpineImage does not have a spec descriptor
      • + +
      • "ERROR" kubeStateMetricsImage does not have a spec descriptor
      • + +
      • "ERROR" exposeServices does not have a spec descriptor
      • + +
      • "ERROR" usePersistentVolumes does not have a spec descriptor
      • + +
      • "ERROR" consoleAPI does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchMemoryRequest does not have a spec descriptor
      • + +
      • "ERROR" goDnsmasqVersion does not have a spec descriptor
      • + +
      • "ERROR" minikube does not have a spec descriptor
      • + +
      • "ERROR" podUID does not have a spec descriptor
      • + +
      • "ERROR" busyboxVersion does not have a spec descriptor
      • + +
      • "ERROR" esConsoleImage does not have a spec descriptor
      • + +
      • "ERROR" Error: Field metadata.namespace, Value : metadata.namespace: Forbidden: not allowed on this type
      • + + +
      • "WARNING" Add a spec descriptor for esConsoleExposePort
      • + +
      • "WARNING" Add a spec descriptor for esGrafanaEnvVars
      • + +
      • "WARNING" Add a spec descriptor for esMonitorVersion
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for prometheusDomain
      • + +
      • "WARNING" Add a spec descriptor for prometheusVersion
      • + +
      • "WARNING" Add a spec descriptor for defaultCPURequest
      • + +
      • "WARNING" Add a spec descriptor for deploymentApiVersion
      • + +
      • "WARNING" Add a spec descriptor for prometheusVolumeSize
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchImage
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchVersion
      • + +
      • "WARNING" Add a spec descriptor for kubeStateMetricsVersion
      • + +
      • "WARNING" Add a spec descriptor for configMapReloadImage
      • + +
      • "WARNING" Add a spec descriptor for defaultMemoryRequest
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for prometheusMemoryRequest
      • -
      • "ERROR" hazelcasts.hazelcast.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for rbacApiVersion
      • -
      • "ERROR" securityContext does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for alpineVersion
      • +
      • "WARNING" Add a spec descriptor for esGrafanaImage
      • -
      • "WARNING" Add CRD validation for Hazelcast/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for daemonSetApiVersion
      • -
      • "WARNING" Add a spec descriptor for securityContext
      • +
      • "WARNING" Add a spec descriptor for imageCredentials
      • +
      • "WARNING" Add a spec descriptor for esConsoleVersion
      • +
      • "WARNING" Add a spec descriptor for esGrafanaVolumeSize
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for prometheusImage
      • +
      • "WARNING" Add a spec descriptor for configMapReloadVersion
      • -
        -

        For hazelcast-operator.v0.3.7:

        +

      • "WARNING" Add a spec descriptor for consoleUIConfig
      • +
      • "WARNING" Add a spec descriptor for apiGroupVersion
      • -
      • "WARNING" (hazelcast-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for busyboxImage
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcasts.hazelcast.com"])
      • +
      • "WARNING" Add a spec descriptor for enableElasticsearch
      • +
      • "WARNING" Add a spec descriptor for esGrafanaVersion
      • +
      • "WARNING" Add a spec descriptor for esMonitorImage
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      mattermost-operator -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for goDnsmasqImage
      • - -
        -

        For mattermost-operator.v0.5.0:

        +

      • "WARNING" Add a spec descriptor for alertManagers
      • -
      • "ERROR" ingressName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for alpineImage
      • -
      • "ERROR" clusterinstallations.mattermost.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for kubeStateMetricsImage
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for exposeServices
      • +
      • "WARNING" Add a spec descriptor for usePersistentVolumes
      • -
      • "WARNING" Add a spec descriptor for ingressName
      • +
      • "WARNING" Add a spec descriptor for consoleAPI
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchMemoryRequest
      • + +
      • "WARNING" Add a spec descriptor for goDnsmasqVersion
      • + +
      • "WARNING" Add a spec descriptor for minikube
      • + +
      • "WARNING" Add a spec descriptor for podUID
      • + +
      • "WARNING" Add a spec descriptor for busyboxVersion
      • + +
      • "WARNING" Add a spec descriptor for esConsoleImage
      • + +
      • "WARNING" Add CRD validation for Console/v1alpha1
      • @@ -12360,29 +11750,29 @@
        Grade
      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For mattermost-operator.v0.5.0:

        +

        For lightbend-console-operator.v0.0.1:

        +

      • "ERROR" metadata.namespace: Forbidden: not allowed on this type
      • -
      • "WARNING" (mattermost-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterinstallations.mattermost.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["consoles.app.lightbend.com"])
      • @@ -12392,32 +11782,32 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (0)
      mcad-operatorprometheus -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      @@ -12426,11 +11816,11 @@
      Grade

      NOT USED

      @@ -12440,93 +11830,69 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For mcad-operator.v0.1.9:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" deploymentName does not have a spec descriptor
      • - -
      • "ERROR" imagePullSecret does not have a spec descriptor
      • - -
      • "ERROR" nodeSelector does not have a spec descriptor
      • - -
      • "ERROR" volumes does not have a spec descriptor
      • - -
      • "ERROR" serviceAccount does not have a spec descriptor
      • - -
      • "ERROR" configMap does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" loglevel does not have a spec descriptor
      • - -
      • "ERROR" namespace does not have a spec descriptor
      • - -
      • "ERROR" replicaCount does not have a spec descriptor
      • - -
      • "ERROR" resources does not have a spec descriptor
      • +

        For prometheusoperator.0.47.0:

        -

      • "ERROR" mcadhelmconfigs.mcad.ibm.com does not have a status descriptor
      • +
      • "ERROR" alerting does not have a spec descriptor
      • +
      • "ERROR" selector does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `loglevel` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" selector does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `nodeSelector` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" alertmanagerConfigSelector does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `replicaCount` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" groups does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `resources` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" route does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `volumes` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" receivers does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `configMap` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for spec field `deploymentName` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" prometheuses.monitoring.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for spec field `image` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" servicemonitors.monitoring.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for spec field `imagePullSecret` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" podmonitors.monitoring.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for spec field `namespace` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" alertmanagers.monitoring.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for spec field `serviceAccount` in MCADHelmConfig/v1beta1
      • +
      • "ERROR" prometheusrules.monitoring.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for deploymentName
      • +
      • "ERROR" alertmanagerconfigs.monitoring.coreos.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for imagePullSecret
      • -
      • "WARNING" Add a spec descriptor for nodeSelector
      • +
      • "WARNING" Add a spec descriptor for alerting
      • -
      • "WARNING" Add a spec descriptor for volumes
      • +
      • "WARNING" Add a spec descriptor for selector
      • -
      • "WARNING" Add a spec descriptor for serviceAccount
      • +
      • "WARNING" Add a spec descriptor for selector
      • -
      • "WARNING" Add a spec descriptor for configMap
      • +
      • "WARNING" Add a spec descriptor for alertmanagerConfigSelector
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for groups
      • -
      • "WARNING" Add a spec descriptor for loglevel
      • +
      • "WARNING" Add a spec descriptor for route
      • -
      • "WARNING" Add a spec descriptor for namespace
      • +
      • "WARNING" Add a spec descriptor for receivers
      • -
      • "WARNING" Add a spec descriptor for replicaCount
      • +
      • "WARNING" Warning: Value monitoring.coreos.com/v1, Kind=Probe: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "WARNING" Warning: Value monitoring.coreos.com/v1, Kind=ThanosRuler: provided API should have an example annotation
      • @@ -12537,25 +11903,29 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For mcad-operator.v0.1.9:

        +

        For prometheusoperator.0.47.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mcadhelmconfigs.mcad.ibm.com"])
      • +
      • "WARNING" (prometheusoperator.0.47.0) csv.metadata.Name prometheusoperator.0.47.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -12565,165 +11935,104 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      rocketmq-operatorapicurio-registry -

      NOT COMPLY

      +

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      • 2.x
      • + +
      +
      +

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For rocketmq-operator.0.2.1:

        - -

      • "ERROR" storageMode does not have a spec descriptor
      • - -
      • "ERROR" nameServiceImage does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" hostNetwork does not have a spec descriptor
      • - -
      • "ERROR" hostPath does not have a spec descriptor
      • - -
      • "ERROR" volumeClaimTemplates does not have a spec descriptor
      • - -
      • "ERROR" size does not have a spec descriptor
      • - -
      • "ERROR" dnsPolicy does not have a spec descriptor
      • - -
      • "ERROR" resources does not have a spec descriptor
      • - -
      • "ERROR" replicaPerGroup does not have a spec descriptor
      • - -
      • "ERROR" brokerImage does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" allowRestart does not have a spec descriptor
      • - -
      • "ERROR" storageMode does not have a spec descriptor
      • - -
      • "ERROR" hostPath does not have a spec descriptor
      • - -
      • "ERROR" size does not have a spec descriptor
      • - -
      • "ERROR" nameServers does not have a spec descriptor
      • - -
      • "ERROR" scalePodName does not have a spec descriptor
      • - -
      • "ERROR" volumeClaimTemplates does not have a spec descriptor
      • - -
      • "ERROR" replicationMode does not have a spec descriptor
      • - -
      • "ERROR" resources does not have a spec descriptor
      • - -
      • "ERROR" sourceCluster does not have a spec descriptor
      • - -
      • "ERROR" targetCluster does not have a spec descriptor
      • - -
      • "ERROR" topic does not have a spec descriptor
      • +

        For apicurio-registry.v0.0.4-v1.3.2.final:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" nameservices.rocketmq.apache.org does not have a status descriptor
      • - -
      • "ERROR" brokers.rocketmq.apache.org does not have a status descriptor
      • - -
      • "ERROR" topictransfers.rocketmq.apache.org does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for storageMode
      • - -
      • "WARNING" Add a spec descriptor for nameServiceImage
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for hostNetwork
      • - -
      • "WARNING" Add a spec descriptor for hostPath
      • - -
      • "WARNING" Add a spec descriptor for volumeClaimTemplates
      • - -
      • "WARNING" Add a spec descriptor for size
      • - -
      • "WARNING" Add a spec descriptor for dnsPolicy
      • - -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for replicaPerGroup
      • +
      • "ERROR" apicurioregistries.apicur.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for brokerImage
      • -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • -
      • "WARNING" Add a spec descriptor for allowRestart
      • +
        +

        For apicurio-registry-operator.v1.0.0-v2.0.0.final:

        -

      • "WARNING" Add a spec descriptor for storageMode
      • +
      • "ERROR" configuration does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for hostPath
      • +
      • "ERROR" configuration does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for size
      • +
      • "ERROR" configuration does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nameServers
      • +
      • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for scalePodName
      • +
      • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for volumeClaimTemplates
      • +
      • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for replicationMode
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for resources
      • -
      • "WARNING" Add a spec descriptor for sourceCluster
      • +
      • "WARNING" Add a spec descriptor for configuration
      • -
      • "WARNING" Add a spec descriptor for targetCluster
      • +
      • "WARNING" Add a spec descriptor for configuration
      • -
      • "WARNING" Add a spec descriptor for topic
      • +
      • "WARNING" Add a spec descriptor for configuration
      • @@ -12734,27 +12043,34 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For rocketmq-operator.0.2.1:

        +

        For apicurio-registry.v0.0.4-v1.3.2.final:

        -

      • "WARNING" (rocketmq-operator.0.2.1) csv.metadata.Name rocketmq-operator.0.2.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
      • "WARNING" (apicurio-registry.v0.0.4-v1.3.2.final) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["brokers.rocketmq.apache.org" "nameservices.rocketmq.apache.org" "topictransfers.rocketmq.apache.org"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
      • + + +
        +

        For apicurio-registry-operator.v1.0.0-v2.0.0.final:

        + + +

      • "WARNING" (apicurio-registry-operator.v1.0.0-v2.0.0.final) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -12764,32 +12080,32 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (600)
      seldon-operatorappranix -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • deprecated
      @@ -12798,59 +12114,90 @@
      Grade

      NOT USED

      USED

      NOT USED

      -

      PASS

      +

      ONLY WARNINGS

      + +Info +
      +
        + + +
        +

        For ax-cps-operator.v1.0.0:

        + + +

      • "WARNING" Warning: Value : (ax-cps-operator.v1.0.0) example annotations not found
      • + + +
        +

        For ax-cps-operator.v2.3.0:

        + + +

      • "WARNING" Warning: Value : (ax-cps-operator.v2.3.0) example annotations not found
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For seldon-operator.v1.2.2:

        +

        For ax-cps-operator.v1.0.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" (ax-cps-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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.aps.appranix.com" "backupstoragelocations.aps.appranix.com" "deletebackuprequests.aps.appranix.com" "downloadrequests.aps.appranix.com" "podvolumebackups.aps.appranix.com" "podvolumerestores.aps.appranix.com" "resticrepositories.aps.appranix.com" "restores.aps.appranix.com" "schedules.aps.appranix.com" "serverstatusrequests.aps.appranix.com" "volumesnapshotlocations.aps.appranix.com"])
      • + +
      • "WARNING" (ax-cps-operator.v1.0.0) example annotations not found

      • -

        For seldon-operator.v1.7.0:

        +

        For ax-cps-operator.v2.3.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" (ax-cps-operator.v2.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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.aps.appranix.com" "backupstoragelocations.aps.appranix.com" "deletebackuprequests.aps.appranix.com" "downloadrequests.aps.appranix.com" "podvolumebackups.aps.appranix.com" "podvolumerestores.aps.appranix.com" "resticrepositories.aps.appranix.com" "restores.aps.appranix.com" "schedules.aps.appranix.com" "serverstatusrequests.aps.appranix.com" "volumesnapshotlocations.aps.appranix.com"])
      • + +
      • "WARNING" (ax-cps-operator.v2.3.0) example annotations not found
      • @@ -12860,33 +12207,31 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade D
      (200)
      submarinerenmasse -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha-0.10
      • -
      • alpha
      @@ -12896,282 +12241,241 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For submariner.v0.10.1:

        - -

      • "ERROR" components does not have a spec descriptor
      • - -
      • "ERROR" defaultGlobalnetClusterSize does not have a spec descriptor
      • - -
      • "ERROR" globalnetEnabled does not have a spec descriptor
      • +

        For enmasse.0.32.2:

        -

      • "ERROR" broker does not have a spec descriptor
      • +
      • "ERROR" standardinfraconfigs.admin.enmasse.io does not have a status descriptor
      • -
      • "ERROR" clusterCIDR does not have a spec descriptor
      • +
      • "ERROR" brokeredinfraconfigs.admin.enmasse.io does not have a status descriptor
      • -
      • "ERROR" globalCIDR does not have a spec descriptor
      • +
      • "ERROR" addressplans.admin.enmasse.io does not have a status descriptor
      • -
      • "ERROR" namespace does not have a spec descriptor
      • +
      • "ERROR" addressspaceplans.admin.enmasse.io does not have a status descriptor
      • -
      • "ERROR" natEnabled does not have a spec descriptor
      • +
      • "ERROR" authenticationservices.admin.enmasse.io does not have a status descriptor
      • -
      • "ERROR" serviceCIDR does not have a spec descriptor
      • +
      • "ERROR" messagingusers.user.enmasse.io does not have a status descriptor
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "ERROR" broker does not have a spec descriptor
      • -
      • "ERROR" debug does not have a spec descriptor
      • +
      • "ERROR" router does not have a spec descriptor
      • -
      • "ERROR" repository does not have a spec descriptor
      • +
      • "ERROR" broker does not have a spec descriptor
      • -
      • "ERROR" brokerK8sApiServer does not have a spec descriptor
      • +
      • "ERROR" addressType does not have a spec descriptor
      • -
      • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
      • +
      • "ERROR" resources does not have a spec descriptor
      • -
      • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
      • +
      • "ERROR" resourceLimits does not have a spec descriptor
      • -
      • "ERROR" ceIPSecNATTPort does not have a spec descriptor
      • +
      • "ERROR" addressPlans does not have a spec descriptor
      • -
      • "ERROR" ceIPSecPSK does not have a spec descriptor
      • +
      • "ERROR" addressSpaceType does not have a spec descriptor
      • -
      • "ERROR" connectionHealthCheck does not have a spec descriptor
      • +
      • "ERROR" standard does not have a spec descriptor
      • -
      • "ERROR" brokerK8sCA does not have a spec descriptor
      • +
      • "ERROR" address does not have a spec descriptor
      • -
      • "ERROR" cableDriver does not have a spec descriptor
      • +
      • "ERROR" authentication does not have a spec descriptor
      • -
      • "ERROR" ceIPSecDebug does not have a spec descriptor
      • +
      • "ERROR" authorization does not have a spec descriptor
      • -
      • "ERROR" ceIPSecIKEPort does not have a spec descriptor
      • +
      • "ERROR" adapters does not have a spec descriptor
      • -
      • "ERROR" clusterID does not have a spec descriptor
      • +
      • "ERROR" services does not have a spec descriptor
      • -
      • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
      • +
      • "ERROR" downstreamStrategy does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" brokers.submariner.io does not have a status descriptor
      • - -
      • "ERROR" submariners.submariner.io does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for components
      • -
      • "WARNING" Add a spec descriptor for defaultGlobalnetClusterSize
      • +
      • "WARNING" Warning: Value admin.enmasse.io/v1beta1, Kind=ConsoleService: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for globalnetEnabled
      • +
      • "WARNING" Warning: Value enmasse.io/v1beta1, Kind=AddressSpaceSchema: provided API should have an example annotation
      • "WARNING" Add a spec descriptor for broker
      • -
      • "WARNING" Add a spec descriptor for clusterCIDR
      • - -
      • "WARNING" Add a spec descriptor for globalCIDR
      • - -
      • "WARNING" Add a spec descriptor for namespace
      • - -
      • "WARNING" Add a spec descriptor for natEnabled
      • - -
      • "WARNING" Add a spec descriptor for serviceCIDR
      • - -
      • "WARNING" Add a spec descriptor for version
      • - -
      • "WARNING" Add a spec descriptor for debug
      • - -
      • "WARNING" Add a spec descriptor for repository
      • - -
      • "WARNING" Add a spec descriptor for brokerK8sApiServer
      • - -
      • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
      • - -
      • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
      • - -
      • "WARNING" Add a spec descriptor for ceIPSecNATTPort
      • - -
      • "WARNING" Add a spec descriptor for ceIPSecPSK
      • - -
      • "WARNING" Add a spec descriptor for connectionHealthCheck
      • - -
      • "WARNING" Add a spec descriptor for brokerK8sCA
      • - -
      • "WARNING" Add a spec descriptor for cableDriver
      • - -
      • "WARNING" Add a spec descriptor for ceIPSecDebug
      • - -
      • "WARNING" Add a spec descriptor for ceIPSecIKEPort
      • - -
      • "WARNING" Add a spec descriptor for clusterID
      • - -
      • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled
      • - - -
        -

        For submariner.v0.9.1:

        - -

      • "ERROR" components does not have a spec descriptor
      • - -
      • "ERROR" defaultGlobalnetClusterSize does not have a spec descriptor
      • - -
      • "ERROR" globalnetEnabled does not have a spec descriptor
      • - -
      • "ERROR" broker does not have a spec descriptor
      • - -
      • "ERROR" brokerK8sApiServer does not have a spec descriptor
      • - -
      • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
      • - -
      • "ERROR" ceIPSecPSK does not have a spec descriptor
      • - -
      • "ERROR" debug does not have a spec descriptor
      • - -
      • "ERROR" globalCIDR does not have a spec descriptor
      • - -
      • "ERROR" clusterID does not have a spec descriptor
      • - -
      • "ERROR" version does not have a spec descriptor
      • - -
      • "ERROR" brokerK8sCA does not have a spec descriptor
      • - -
      • "ERROR" ceIPSecNATTPort does not have a spec descriptor
      • - -
      • "ERROR" serviceCIDR does not have a spec descriptor
      • - -
      • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
      • - -
      • "ERROR" namespace does not have a spec descriptor
      • - -
      • "ERROR" natEnabled does not have a spec descriptor
      • - -
      • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
      • - -
      • "ERROR" cableDriver does not have a spec descriptor
      • - -
      • "ERROR" ceIPSecDebug does not have a spec descriptor
      • - -
      • "ERROR" ceIPSecIKEPort does not have a spec descriptor
      • - -
      • "ERROR" clusterCIDR does not have a spec descriptor
      • - -
      • "ERROR" connectionHealthCheck does not have a spec descriptor
      • - -
      • "ERROR" repository does not have a spec descriptor
      • - -
      • "ERROR" brokers.submariner.io does not have a status descriptor
      • - -
      • "ERROR" submariners.submariner.io does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for components
      • +
      • "WARNING" Add a spec descriptor for router
      • -
      • "WARNING" Add a spec descriptor for defaultGlobalnetClusterSize
      • +
      • "WARNING" Add a spec descriptor for broker
      • -
      • "WARNING" Add a spec descriptor for globalnetEnabled
      • +
      • "WARNING" Add a spec descriptor for addressType
      • -
      • "WARNING" Add a spec descriptor for broker
      • +
      • "WARNING" Add a spec descriptor for resources
      • -
      • "WARNING" Add a spec descriptor for brokerK8sApiServer
      • +
      • "WARNING" Add a spec descriptor for resourceLimits
      • -
      • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
      • +
      • "WARNING" Add a spec descriptor for addressPlans
      • -
      • "WARNING" Add a spec descriptor for ceIPSecPSK
      • +
      • "WARNING" Add a spec descriptor for addressSpaceType
      • -
      • "WARNING" Add a spec descriptor for debug
      • +
      • "WARNING" Add a spec descriptor for standard
      • -
      • "WARNING" Add a spec descriptor for globalCIDR
      • +
      • "WARNING" Add a spec descriptor for address
      • -
      • "WARNING" Add a spec descriptor for clusterID
      • +
      • "WARNING" Add a spec descriptor for authentication
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "WARNING" Add a spec descriptor for authorization
      • -
      • "WARNING" Add a spec descriptor for brokerK8sCA
      • +
      • "WARNING" Add a spec descriptor for adapters
      • -
      • "WARNING" Add a spec descriptor for ceIPSecNATTPort
      • +
      • "WARNING" Add a spec descriptor for services
      • -
      • "WARNING" Add a spec descriptor for serviceCIDR
      • +
      • "WARNING" Add a spec descriptor for downstreamStrategy
      • -
      • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled
      • -
      • "WARNING" Add a spec descriptor for namespace
      • -
      • "WARNING" Add a spec descriptor for natEnabled
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
      • -
      • "WARNING" Add a spec descriptor for cableDriver
      • +
        +

        For enmasse.0.32.2:

        -

      • "WARNING" Add a spec descriptor for ceIPSecDebug
      • -
      • "WARNING" Add a spec descriptor for ceIPSecIKEPort
      • +
      • "WARNING" (enmasse.0.32.2) csv.metadata.Name enmasse.0.32.2 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" Add a spec descriptor for clusterCIDR
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["addresses.enmasse.io" "addressplans.admin.enmasse.io" "addressspaceplans.admin.enmasse.io" "addressspaces.enmasse.io" "addressspaceschemas.enmasse.io" "authenticationservices.admin.enmasse.io" "brokeredinfraconfigs.admin.enmasse.io" "consoleservices.admin.enmasse.io" "iotconfigs.iot.enmasse.io" "iotprojects.iot.enmasse.io" "messagingusers.user.enmasse.io" "standardinfraconfigs.admin.enmasse.io"])
      • -
      • "WARNING" Add a spec descriptor for connectionHealthCheck
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for repository
      • +
      • "WARNING" provided API should have an example annotation
      +

      NOT USED

      Grade D
      (100)
      esindex-operator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      PASS

      + +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For submariner.v0.10.1:

        - - -

      • "WARNING" (submariner.v0.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - +

        For esindex-operator.v0.1.0:

        -
        -

        For submariner.v0.9.1:

        +

      • "WARNING" (esindex-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" (submariner.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["esindices.ibmcloud.ibm.com"])
      • @@ -13181,28 +12485,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (300)
      yugabyte-operatorsiddhi-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -13215,11 +12519,11 @@
        Grade

      NOT USED

      @@ -13229,45 +12533,37 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For yugabyte-operator.v0.0.1:

        - -

      • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" master does not have a spec descriptor
      • - -
      • "ERROR" replicationFactor does not have a spec descriptor
      • +

        For siddhi-operator.v0.2.2:

        -

      • "ERROR" tls does not have a spec descriptor
      • +
      • "ERROR" siddhiprocesses.siddhi.io does not have a status descriptor
      • -
      • "ERROR" tserver does not have a spec descriptor
      • +
      • "ERROR" apps does not have a spec descriptor
      • +
      • "ERROR" container does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for master
      • +
      • "WARNING" Add CRD validation for spec field `apps` in SiddhiProcess/v1alpha2
      • -
      • "WARNING" Add a spec descriptor for replicationFactor
      • +
      • "WARNING" Add CRD validation for spec field `container` in SiddhiProcess/v1alpha2
      • -
      • "WARNING" Add a spec descriptor for tls
      • +
      • "WARNING" Add a spec descriptor for apps
      • -
      • "WARNING" Add a spec descriptor for tserver
      • +
      • "WARNING" Add a spec descriptor for container
      • @@ -13278,27 +12574,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For yugabyte-operator.v0.0.1:

        +

        For siddhi-operator.v0.2.2:

        -

      • "WARNING" (yugabyte-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (siddhi-operator.v0.2.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["siddhiprocesses.siddhi.io"])
      • @@ -13312,24 +12608,24 @@
        Grade
      deployment-validation-operatorwildfly

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -13342,11 +12638,11 @@
        Grade

      NOT USED

      @@ -13354,27 +12650,27 @@
      Grade

      NOT USED

      -

      ONLY WARNINGS

      +

      ONLY ERRORS

      - +Info -
      + +Info +

        -

        For deployment-validation-operator.v0.0.10:

        +

        For wildfly-operator.v0.5.2:

        +

      • "ERROR" wildflyservers.wildfly.org does not have a status descriptor
      • -
      • "WARNING" Warning: Value : (deployment-validation-operator.v0.0.10) example annotations not found
      • @@ -13383,37 +12679,17 @@
        Grade
      -

      ONLY WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For deployment-validation-operator.v0.0.10:

        - - -

      • "WARNING" (deployment-validation-operator.v0.0.10) csv.Spec.Icon not specified
      • - -
      • "WARNING" (deployment-validation-operator.v0.0.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" (deployment-validation-operator.v0.0.10) example annotations not found
      • - - - -
      -
      -

      NOT USED

      enc-key-syncpystol -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -13451,11 +12727,11 @@
        Grade

      NOT USED

      @@ -13463,41 +12739,27 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      ONLY ERRORS

      - +Info -
      + +Info +

        -

        For enc-key-sync-operator.v0.0.1:

        - -

      • "ERROR" enckeysyncs.oci.crypt does not have a status descriptor
      • - -
      • "ERROR" keysDir does not have a spec descriptor
      • - -
      • "ERROR" isOpenShift does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for keysDir
      • - -
      • "WARNING" Add a spec descriptor for isOpenShift
      • +

        For pystol.v0.8.17:

        -

      • "WARNING" Add CRD validation for spec field `keysDir` in EncKeySync/v1alpha1
      • +
      • "ERROR" pystolactions.pystol.org does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for spec field `isOpenShift` in EncKeySync/v1alpha1
      • @@ -13508,25 +12770,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For enc-key-sync-operator.v0.0.1:

        +

        For pystol.v0.8.17:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["enckeysyncs.oci.crypt"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pystolactions.pystol.org"])
      • @@ -13540,24 +12802,24 @@
        Grade
      hazelcast-enterprise-operatorargocd-operator-helm -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -13570,11 +12832,11 @@
        Grade

      NOT USED

      @@ -13584,37 +12846,77 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For hazelcast-enterprise-operator.v0.3.7:

        +

        For argocd-operator-helm.v0.0.7:

        -

      • "ERROR" hazelcastenterprises.hazelcast.com does not have a status descriptor
      • +
      • "ERROR" argocds.argoproj.io does not have a status descriptor
      • + +
      • "ERROR" nameOverride does not have a spec descriptor
      • + +
      • "ERROR" installCRDs does not have a spec descriptor
      • + +
      • "ERROR" dex does not have a spec descriptor
      • + +
      • "ERROR" redis does not have a spec descriptor
      • + +
      • "ERROR" redis-ha does not have a spec descriptor
      • + +
      • "ERROR" repoServer does not have a spec descriptor
      • + +
      • "ERROR" fullnameOverride does not have a spec descriptor
      • + +
      • "ERROR" global does not have a spec descriptor
      • + +
      • "ERROR" controller does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + +
      • "ERROR" configs does not have a spec descriptor
      • + +
      • "ERROR" openshift does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" hazelcast does not have a spec descriptor
      • -
      • "ERROR" securityContext does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for nameOverride
      • +
      • "WARNING" Add a spec descriptor for installCRDs
      • -
      • "WARNING" Add CRD validation for HazelcastEnterprise/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for dex
      • -
      • "WARNING" Add a spec descriptor for hazelcast
      • +
      • "WARNING" Add a spec descriptor for redis
      • -
      • "WARNING" Add a spec descriptor for securityContext
      • +
      • "WARNING" Add a spec descriptor for redis-ha
      • + +
      • "WARNING" Add a spec descriptor for repoServer
      • + +
      • "WARNING" Add a spec descriptor for fullnameOverride
      • + +
      • "WARNING" Add a spec descriptor for global
      • + +
      • "WARNING" Add a spec descriptor for controller
      • + +
      • "WARNING" Add a spec descriptor for server
      • + +
      • "WARNING" Add a spec descriptor for configs
      • + +
      • "WARNING" Add a spec descriptor for openshift
      • + +
      • "WARNING" Add CRD validation for ArgoCD/v1alpha1
      • @@ -13625,27 +12927,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For hazelcast-enterprise-operator.v0.3.7:

        +

        For argocd-operator-helm.v0.0.7:

        -

      • "WARNING" (hazelcast-enterprise-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (argocd-operator-helm.v0.0.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["argocds.argoproj.io"])
      • @@ -13659,43 +12961,31 @@
        Grade
      kogito-operatorazure-service-operator

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • 1.x
      • - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -13705,1993 +12995,1455 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kogito-operator.v1.10.0:

        +

        For azure-service-operator.v1.0.28631:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" kogitobuilds.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" apimgmtapis.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" kogitoinfras.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" apimservices.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" kogitoruntimes.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" appinsights.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" kogitosupportingservices.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" appinsightsapikeys.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" gitSource does not have a spec descriptor
      • +
      • "ERROR" azureloadbalancers.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" azurenetworkinterfaces.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" resource does not have a spec descriptor
      • +
      • "ERROR" azurenetworkinterfaces.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" serviceType does not have a spec descriptor
      • +
      • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" azuresqlmanagedusers.azure.microsoft.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for gitSource
      • +
      • "ERROR" azuresqlusers.azure.microsoft.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "ERROR" azuresqlvnetrules.azure.microsoft.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resource
      • +
      • "ERROR" azuresqlactions.azure.microsoft.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" azuresqldatabases.azure.microsoft.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceType
      • +
      • "ERROR" azuresqldatabases.azure.microsoft.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" azuresqlfailovergroups.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" azuresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • -
        -

        For kogito-operator.v1.10.0:

        +

      • "ERROR" azuresqlservers.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" azuresqlservers.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" kogitobuilds.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" azurevmscalesets.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" kogitoinfras.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" azurevirtualmachines.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" kogitoruntimes.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" azurevirtualmachines.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" kogitosupportingservices.app.kiegroup.org does not have a status descriptor
      • +
      • "ERROR" azurevirtualmachineextensions.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" gitSource does not have a spec descriptor
      • +
      • "ERROR" blobcontainers.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" consumergroups.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" resource does not have a spec descriptor
      • +
      • "ERROR" cosmosdbs.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" cosmosdbs.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" eventhubs.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" eventhubs.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" eventhubnamespaces.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" keyvaults.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" keyvaults.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" keyvaultkeys.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqldatabases.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqldatabases.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlusers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlvnetrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqldatabases.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqldatabases.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlusers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlvnetrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" rediscaches.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" rediscacheactions.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" rediscachefirewallrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" resourcegroups.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" storageaccounts.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" virtualnetworks.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" virtualnetworks.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" blobcontainers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" azuresqldatabases.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" azuresqlfailovergroups.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" azuresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" azuresqlservers.azure.microsoft.com does not have a status descriptor
      • + +
      • "ERROR" apiId does not have a spec descriptor
      • + +
      • "ERROR" apiService does not have a spec descriptor
      • + +
      • "ERROR" location does not have a spec descriptor
      • + +
      • "ERROR" properties does not have a spec descriptor
      • + +
      • "ERROR" resourceGroup does not have a spec descriptor
      • + +
      • "ERROR" publisherEmail does not have a spec descriptor
      • + +
      • "ERROR" publisherName does not have a spec descriptor
      • -
      • "ERROR" serviceType does not have a spec descriptor
      • +
      • "ERROR" vnetResourceGroup does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" vnetSubnetName does not have a spec descriptor
      • +
      • "ERROR" appInsightsName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for gitSource
      • +
      • "ERROR" appInsightsResourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "ERROR" tier does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resource
      • +
      • "ERROR" vnetName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" vnetType does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceType
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" applicationType does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" kind does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
        -

        For kogito-operator.v1.10.0:

        +

      • "ERROR" appInsights does not have a spec descriptor
      • +
      • "ERROR" authSDKControlChannel does not have a spec descriptor
      • -
      • "WARNING" (kogito-operator.v1.10.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" readTelemetry does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
        -

        For kogito-operator.v1.10.0:

        +

      • "ERROR" writeAnnotations does not have a spec descriptor
      • +
      • "ERROR" backendPort does not have a spec descriptor
      • -
      • "WARNING" (kogito-operator.v1.10.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" frontendPortRangeEnd does not have a spec descriptor
      • +
      • "ERROR" frontendPortRangeStart does not have a spec descriptor
      • +
      • "ERROR" inboundNatPoolName does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade B
      (600)
      opsmx-spinnaker-operator -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" location does not have a spec descriptor
      • - -
        -

        For opsmx-spinnaker-operator.v1.20.3:

        +

      • "ERROR" publicIPAddressName does not have a spec descriptor
      • -
      • "ERROR" halyard does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" dockerRegistries does not have a spec descriptor
      • +
      • "ERROR" backendAddressPoolName does not have a spec descriptor
      • -
      • "ERROR" spinnakerFeatureFlags does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" minio does not have a spec descriptor
      • +
      • "ERROR" publicIPAddressName does not have a spec descriptor
      • -
      • "ERROR" rbac does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" serviceAccount does not have a spec descriptor
      • +
      • "ERROR" subnetName does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" vnetName does not have a spec descriptor
      • -
      • "ERROR" opsmxspinnakeroperators.charts.helm.k8s.io does not have a status descriptor
      • +
      • "ERROR" publicIPAddressName does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for halyard
      • +
      • "ERROR" subnetName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for dockerRegistries
      • +
      • "ERROR" vnetName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for spinnakerFeatureFlags
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for minio
      • +
      • "ERROR" skuName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for rbac
      • +
      • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceAccount
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for OpsmxSpinnakerOperator/v1alpha1
      • +
      • "ERROR" publicIPAddressVersion does not have a spec descriptor
      • +
      • "ERROR" publicIPAllocationMethod does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
        -

        For opsmx-spinnaker-operator.v1.20.3:

        +

      • "ERROR" publicIPAddressVersion does not have a spec descriptor
      • +
      • "ERROR" publicIPAllocationMethod does not have a spec descriptor
      • -
      • "WARNING" (opsmx-spinnaker-operator.v1.20.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["opsmxspinnakeroperators.charts.helm.k8s.io"])
      • +
      • "ERROR" skuName does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" publicIPAddressVersion does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      ovms-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" publicIPAllocationMethod does not have a spec descriptor
      • - -
        -

        For ovms-operator.v0.1.0:

        +

      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" skuName does not have a spec descriptor
      • -
      • "ERROR" gcp_creds_secret_name does not have a spec descriptor
      • +
      • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
      • -
      • "ERROR" image_name does not have a spec descriptor
      • +
      • "ERROR" dbName does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" managedIdentityClientId does not have a spec descriptor
      • -
      • "ERROR" s3_compat_api_endpoint does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" service_type does not have a spec descriptor
      • +
      • "ERROR" roles does not have a spec descriptor
      • -
      • "ERROR" aws_region does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" aws_secret_access_key does not have a spec descriptor
      • +
      • "ERROR" dbName does not have a spec descriptor
      • -
      • "ERROR" config_configmap_name does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" model_name does not have a spec descriptor
      • +
      • "ERROR" roles does not have a spec descriptor
      • -
      • "ERROR" model_path does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" aws_access_key_id does not have a spec descriptor
      • +
      • "ERROR" ignoreMissingServiceEndpoint does not have a spec descriptor
      • -
      • "ERROR" log_level does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" nireq does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" plugin_config does not have a spec descriptor
      • +
      • "ERROR" subnetName does not have a spec descriptor
      • -
      • "ERROR" rest_port does not have a spec descriptor
      • +
      • "ERROR" vNetName does not have a spec descriptor
      • -
      • "ERROR" security_context does not have a spec descriptor
      • +
      • "ERROR" vNetResourceGroup does not have a spec descriptor
      • -
      • "ERROR" target_device does not have a spec descriptor
      • +
      • "ERROR" vNetSubscriptionID does not have a spec descriptor
      • -
      • "ERROR" grpc_port does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" https_proxy does not have a spec descriptor
      • +
      • "ERROR" serverName does not have a spec descriptor
      • -
      • "ERROR" models_host_path does not have a spec descriptor
      • +
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "ERROR" models_volume_claim does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "ERROR" edition does not have a spec descriptor
      • -
      • "ERROR" ovms.intel.com does not have a status descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" edition does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `grpc_port` in Ovms/v1alpha1
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `https_proxy` in Ovms/v1alpha1
      • +
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `image_name` in Ovms/v1alpha1
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `log_level` in Ovms/v1alpha1
      • +
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `models_volume_claim` in Ovms/v1alpha1
      • +
      • "ERROR" secondaryserver does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `replicas` in Ovms/v1alpha1
      • +
      • "ERROR" secondaryserverresourcegroup does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `aws_access_key_id` in Ovms/v1alpha1
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `config_configmap_name` in Ovms/v1alpha1
      • +
      • "ERROR" databaselist does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `security_context` in Ovms/v1alpha1
      • +
      • "ERROR" failovergraceperiod does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `nireq` in Ovms/v1alpha1
      • +
      • "ERROR" failoverpolicy does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `service_type` in Ovms/v1alpha1
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `target_device` in Ovms/v1alpha1
      • +
      • "ERROR" endipaddress does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `aws_region` in Ovms/v1alpha1
      • +
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `gcp_creds_secret_name` in Ovms/v1alpha1
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `resources` in Ovms/v1alpha1
      • +
      • "ERROR" startipaddress does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `rest_port` in Ovms/v1alpha1
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `s3_compat_api_endpoint` in Ovms/v1alpha1
      • +
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `model_path` in Ovms/v1alpha1
      • +
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `models_host_path` in Ovms/v1alpha1
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `plugin_config` in Ovms/v1alpha1
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `aws_secret_access_key` in Ovms/v1alpha1
      • +
      • "ERROR" osType does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `model_name` in Ovms/v1alpha1
      • +
      • "ERROR" platformImageURN does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for gcp_creds_secret_name
      • +
      • "ERROR" subnetName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for image_name
      • +
      • "ERROR" adminUserName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" backendAddressPoolName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for s3_compat_api_endpoint
      • +
      • "ERROR" inboundNatPoolName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for service_type
      • +
      • "ERROR" sshPublicKeyData does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for aws_region
      • +
      • "ERROR" virtualNetworkName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for aws_secret_access_key
      • +
      • "ERROR" vmSize does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for config_configmap_name
      • +
      • "ERROR" capacity does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for model_name
      • +
      • "ERROR" loadBalancerName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for model_path
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for aws_access_key_id
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for log_level
      • +
      • "ERROR" networkInterfaceName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nireq
      • +
      • "ERROR" osType does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for plugin_config
      • +
      • "ERROR" platformImageURN does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for rest_port
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for security_context
      • +
      • "ERROR" sshPublicKeyData does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for target_device
      • +
      • "ERROR" vmSize does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for grpc_port
      • +
      • "ERROR" adminUserName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for https_proxy
      • +
      • "ERROR" osType does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for models_host_path
      • +
      • "ERROR" platformImageURN does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for models_volume_claim
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "ERROR" sshPublicKeyData does not have a spec descriptor
      • +
      • "ERROR" vmSize does not have a spec descriptor
      • +
      • "ERROR" adminUserName does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" networkInterfaceName does not have a spec descriptor
      • -
        -

        For ovms-operator.v0.1.0:

        +

      • "ERROR" forceUpdateTag does not have a spec descriptor
      • +
      • "ERROR" protectedSettings does not have a spec descriptor
      • -
      • "WARNING" (ovms-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" publisher does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" settings does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade B
      (600)
      topolvm-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      • v1.0
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" typeHandlerVersion does not have a spec descriptor
      • + +
      • "ERROR" autoUpgradeMinorVersion does not have a spec descriptor
      • + +
      • "ERROR" location does not have a spec descriptor
      • + +
      • "ERROR" typeName does not have a spec descriptor
      • + +
      • "ERROR" vmName does not have a spec descriptor
      • + +
      • "ERROR" accesslevel does not have a spec descriptor
      • + +
      • "ERROR" accountname does not have a spec descriptor
      • + +
      • "ERROR" location does not have a spec descriptor
      • + +
      • "ERROR" resourcegroup does not have a spec descriptor
      • - -
        -

        For topolvm-operator.v1.0.0:

        +

      • "ERROR" eventHub does not have a spec descriptor
      • -
      • "ERROR" topolvmclusters.topolvm.cybozu.com does not have a status descriptor
      • +
      • "ERROR" namespace does not have a spec descriptor
      • -
      • "ERROR" logicalvolumes.topolvm.cybozu.com does not have a status descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" kind does not have a spec descriptor
      • -
      • "ERROR" topolvmVersion does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" deviceClasses does not have a spec descriptor
      • +
      • "ERROR" properties does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for topolvmVersion
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for deviceClasses
      • +
      • "ERROR" locations does not have a spec descriptor
      • +
      • "ERROR" properties does not have a spec descriptor
      • -
        -

        For topolvm-operator.v1.0.0:

        +

      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" topolvmclusters.topolvm.cybozu.com does not have a status descriptor
      • +
      • "ERROR" ipRules does not have a spec descriptor
      • -
      • "ERROR" logicalvolumes.topolvm.cybozu.com does not have a status descriptor
      • +
      • "ERROR" kind does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" topolvmVersion does not have a spec descriptor
      • +
      • "ERROR" namespace does not have a spec descriptor
      • -
      • "ERROR" deviceClasses does not have a spec descriptor
      • +
      • "ERROR" properties does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for topolvmVersion
      • +
      • "ERROR" authorizationRule does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for deviceClasses
      • +
      • "ERROR" namespace does not have a spec descriptor
      • +
      • "ERROR" properties does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      -
      - -
      -

      PASS

      - - -

      NOT USED

      Grade B
      (600)
      cert-manager -

      COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" authorizationRule does not have a spec descriptor
      • - -
        -

        For cert-manager.v1.5.3:

        +

      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" selfSigned does not have a spec descriptor
      • +
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" dnsNames does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" issuerRef does not have a spec descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "ERROR" secretName does not have a spec descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "ERROR" issuers.cert-manager.io does not have a status descriptor
      • +
      • "ERROR" accessPolicies does not have a spec descriptor
      • -
      • "ERROR" certificates.cert-manager.io does not have a status descriptor
      • +
      • "ERROR" enableSoftDelete does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for selfSigned
      • +
      • "ERROR" networkPolicies does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for dnsNames
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for issuerRef
      • +
      • "ERROR" enableSoftDelete does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for secretName
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=CertificateRequest: provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=Certificate: provided API should have an example annotation
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1alpha3, Kind=Challenge: provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1beta1, Kind=Challenge: provided API should have an example annotation
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=ClusterIssuer: provided API should have an example annotation
      • +
      • "ERROR" keySize does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=Issuer: provided API should have an example annotation
      • +
      • "ERROR" keyVault does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=Issuer: provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=CertificateRequest: provided API should have an example annotation
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=Certificate: provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1beta1, Kind=Order: provided API should have an example annotation
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1, Kind=Order: provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1alpha2, Kind=Order: provided API should have an example annotation
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1, Kind=CertificateRequest: provided API should have an example annotation
      • +
      • "ERROR" startIpAddress does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=Certificate: provided API should have an example annotation
      • +
      • "ERROR" endIpAddress does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1alpha2, Kind=Challenge: provided API should have an example annotation
      • +
      • "ERROR" endIpAddress does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=ClusterIssuer: provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=Issuer: provided API should have an example annotation
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1alpha3, Kind=Order: provided API should have an example annotation
      • +
      • "ERROR" startIpAddress does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=CertificateRequest: provided API should have an example annotation
      • +
      • "ERROR" createMode does not have a spec descriptor
      • -
      • "WARNING" Warning: Value acme.cert-manager.io/v1, Kind=Challenge: provided API should have an example annotation
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=ClusterIssuer: provided API should have an example annotation
      • +
      • "ERROR" replicaProperties does not have a spec descriptor
      • -
      • "WARNING" Warning: Value cert-manager.io/v1, Kind=ClusterIssuer: provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" serverVersion does not have a spec descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" sslEnforcement does not have a spec descriptor
      • +
      • "ERROR" createMode does not have a spec descriptor
      • -
        -

        For cert-manager.v1.5.3:

        +

      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" serverVersion does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" createMode does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" dbName does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" roles does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" ignoreMissingServiceEndpoint does not have a spec descriptor
      • + +
      • "ERROR" resourceGroup does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + +
      • "ERROR" subnetName does not have a spec descriptor
      • + +
      • "ERROR" vNetName does not have a spec descriptor
      • + +
      • "ERROR" vNetResourceGroup does not have a spec descriptor
      • + +
      • "ERROR" vNetSubscriptionID does not have a spec descriptor
      • + +
      • "ERROR" resourceGroup does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + +
      • "ERROR" resourceGroup does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + +
      • "ERROR" endIpAddress does not have a spec descriptor
      • + +
      • "ERROR" resourceGroup does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" startIpAddress does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" startIpAddress does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" endIpAddress does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" createMode does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" replicaProperties does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" serverVersion does not have a spec descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • +
      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade B
      (700)
      flux -

      COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" createMode does not have a spec descriptor
      • - -
        -

        For flux.v0.17.0:

        +

      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" helmreleases.helm.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" gitrepositories.source.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" helmrepositories.source.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" serverVersion does not have a spec descriptor
      • -
      • "ERROR" helmcharts.source.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "ERROR" buckets.source.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      • "ERROR" kustomizations.kustomize.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" dbName does not have a spec descriptor
      • -
      • "ERROR" providers.notification.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" alerts.notification.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" roles does not have a spec descriptor
      • -
      • "ERROR" receivers.notification.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" imagerepositories.image.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" imagepolicies.image.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" imageupdateautomations.image.toolkit.fluxcd.io does not have a status descriptor
      • +
      • "ERROR" subnetName does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" vNetName does not have a spec descriptor
      • -
      • "ERROR" chart does not have a spec descriptor
      • +
      • "ERROR" vNetResourceGroup does not have a spec descriptor
      • -
      • "ERROR" values does not have a spec descriptor
      • +
      • "ERROR" vNetSubscriptionID does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" ignoreMissingServiceEndpoint does not have a spec descriptor
      • -
      • "ERROR" ref does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" url does not have a spec descriptor
      • +
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" url does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" actionName does not have a spec descriptor
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "ERROR" cacheName does not have a spec descriptor
      • -
      • "ERROR" sourceRef does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" chart does not have a spec descriptor
      • +
      • "ERROR" redisCache does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" provider does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" bucketName does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" endpoint does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" insecure does not have a spec descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "ERROR" secretRef does not have a spec descriptor
      • +
      • "ERROR" supportsHttpsTrafficOnly does not have a spec descriptor
      • -
      • "ERROR" timeout does not have a spec descriptor
      • +
      • "ERROR" accessTier does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" kind does not have a spec descriptor
      • -
      • "ERROR" path does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" prune does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" sourceRef does not have a spec descriptor
      • +
      • "ERROR" subnets does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" addressSpace does not have a spec descriptor
      • -
      • "ERROR" address does not have a spec descriptor
      • +
      • "ERROR" subnets does not have a spec descriptor
      • -
      • "ERROR" secretRef does not have a spec descriptor
      • +
      • "ERROR" addressSpace does not have a spec descriptor
      • -
      • "ERROR" providerRef does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" eventSeverity does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" eventSources does not have a spec descriptor
      • +
      • "ERROR" accessLevel does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" accountName does not have a spec descriptor
      • -
      • "ERROR" events does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" secretRef does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" serverVersion does not have a spec descriptor
      • -
      • "ERROR" imageRepositoryRef does not have a spec descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "ERROR" policy does not have a spec descriptor
      • +
      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "ERROR" createMode does not have a spec descriptor
      • -
      • "ERROR" sourceRef does not have a spec descriptor
      • +
      • "ERROR" createMode does not have a spec descriptor
      • -
      • "ERROR" git does not have a spec descriptor
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" update does not have a spec descriptor
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" serverVersion does not have a spec descriptor
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for chart
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for values
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ref
      • +
      • "ERROR" sku does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for url
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for url
      • +
      • "ERROR" secondaryServer does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "ERROR" secondaryServerResourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for sourceRef
      • +
      • "ERROR" databaseList does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "ERROR" failoverGracePeriod does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for chart
      • +
      • "ERROR" failoverPolicy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for provider
      • +
      • "ERROR" endIpAddress does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for bucketName
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for endpoint
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for insecure
      • +
      • "ERROR" startIpAddress does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for secretRef
      • +
      • "ERROR" location does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for timeout
      • +
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interval
      • -
      • "WARNING" Add a spec descriptor for path
      • +
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha2, Kind=MySQLAADUser: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for prune
      • +
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=MySQLServerAdministrator: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for sourceRef
      • +
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha2, Kind=MySQLUser: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=MySQLAADUser: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for address
      • +
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=CosmosDBSQLDatabase: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for secretRef
      • +
      • "WARNING" Add a spec descriptor for apiId
      • -
      • "WARNING" Add a spec descriptor for providerRef
      • +
      • "WARNING" Add a spec descriptor for apiService
      • -
      • "WARNING" Add a spec descriptor for eventSeverity
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for eventSources
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for events
      • +
      • "WARNING" Add a spec descriptor for publisherEmail
      • -
      • "WARNING" Add a spec descriptor for secretRef
      • +
      • "WARNING" Add a spec descriptor for publisherName
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "WARNING" Add a spec descriptor for vnetResourceGroup
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "WARNING" Add a spec descriptor for vnetSubnetName
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for appInsightsName
      • -
      • "WARNING" Add a spec descriptor for imageRepositoryRef
      • +
      • "WARNING" Add a spec descriptor for appInsightsResourceGroup
      • -
      • "WARNING" Add a spec descriptor for policy
      • +
      • "WARNING" Add a spec descriptor for tier
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "WARNING" Add a spec descriptor for vnetName
      • -
      • "WARNING" Add a spec descriptor for sourceRef
      • +
      • "WARNING" Add a spec descriptor for vnetType
      • -
      • "WARNING" Add a spec descriptor for git
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for update
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for applicationType
      • -
      -
      - -
      -

      PASS

      - - -

      NOT USED

      Grade B
      (700)
      grafana-operator -

      PARTIAL COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      • original
      • - -
      • v4
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for kind
      • - -
        -

        For grafana-operator.v3.10.3:

        +

      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for appInsights
      • -
      • "ERROR" dashboardLabelSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for authSDKControlChannel
      • -
      • "ERROR" ingress does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for readTelemetry
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" json does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for writeAnnotations
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for backendPort
      • -
      • "ERROR" datasources does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for frontendPortRangeEnd
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for frontendPortRangeStart
      • -
      • "ERROR" grafanas.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for inboundNatPoolName
      • -
      • "ERROR" grafanadashboards.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" grafanadatasources.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for publicIPAddressName
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add CRD validation for spec field `dashboardLabelSelector` in Grafana/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for backendAddressPoolName
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for dashboardLabelSelector
      • +
      • "WARNING" Add a spec descriptor for publicIPAddressName
      • -
      • "WARNING" Add a spec descriptor for ingress
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for subnetName
      • -
      • "WARNING" Add a spec descriptor for json
      • +
      • "WARNING" Add a spec descriptor for vnetName
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for publicIPAddressName
      • -
      • "WARNING" Add a spec descriptor for datasources
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for subnetName
      • -
        -

        For grafana-operator.v2.0.0:

        +

      • "WARNING" Add a spec descriptor for vnetName
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" ingress does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for skuName
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
      • -
      • "ERROR" dashboardLabelSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" json does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for publicIPAddressVersion
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for publicIPAllocationMethod
      • -
      • "ERROR" datasources does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
      • -
      • "ERROR" grafanas.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" grafanadashboards.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for publicIPAddressVersion
      • -
      • "ERROR" grafanadatasources.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for publicIPAllocationMethod
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for ingress
      • +
      • "WARNING" Add a spec descriptor for skuName
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for dashboardLabelSelector
      • +
      • "WARNING" Add a spec descriptor for publicIPAddressVersion
      • -
      • "WARNING" Add a spec descriptor for json
      • +
      • "WARNING" Add a spec descriptor for publicIPAllocationMethod
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for datasources
      • +
      • "WARNING" Add a spec descriptor for skuName
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
      • -
      • "WARNING" Add CRD validation for spec field `dashboardLabelSelector` in Grafana/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for dbName
      • +
      • "WARNING" Add a spec descriptor for managedIdentityClientId
      • -
        -

        For grafana-operator.v4.0.0:

        +

      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" grafanas.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for roles
      • -
      • "ERROR" grafanadashboards.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" grafanadatasources.integreatly.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for dbName
      • -
      • "ERROR" ingress does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for roles
      • -
      • "ERROR" dashboardLabelSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" json does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" datasources does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for subnetName
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for vNetName
      • +
      • "WARNING" Add a spec descriptor for vNetResourceGroup
      • -
      • "WARNING" Add a spec descriptor for ingress
      • +
      • "WARNING" Add a spec descriptor for vNetSubscriptionID
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for dashboardLabelSelector
      • +
      • "WARNING" Add a spec descriptor for serverName
      • -
      • "WARNING" Add a spec descriptor for json
      • +
      • "WARNING" Add a spec descriptor for resourcegroup
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for datasources
      • +
      • "WARNING" Add a spec descriptor for edition
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add CRD validation for spec field `name` in GrafanaDashboard/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for edition
      • +
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for resourcegroup
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for resourcegroup
      • -
        -

        For grafana-operator.v3.10.3:

        +

      • "WARNING" Add a spec descriptor for secondaryserver
      • +
      • "WARNING" Add a spec descriptor for secondaryserverresourcegroup
      • -
      • "WARNING" (grafana-operator.v3.10.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["grafanadashboards.integreatly.org" "grafanadatasources.integreatly.org" "grafanas.integreatly.org"])
      • +
      • "WARNING" Add a spec descriptor for databaselist
      • +
      • "WARNING" Add a spec descriptor for failovergraceperiod
      • -
        -

        For grafana-operator.v2.0.0:

        +

      • "WARNING" Add a spec descriptor for failoverpolicy
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" (grafana-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for endipaddress
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["grafanadashboards.integreatly.org" "grafanadatasources.integreatly.org" "grafanas.integreatly.org"])
      • +
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "WARNING" Add a spec descriptor for server
      • -
        -

        For grafana-operator.v4.0.0:

        +

      • "WARNING" Add a spec descriptor for startipaddress
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" (grafana-operator.v4.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      -
      - -

      NOT USED

      Grade D
      (300)
      kubefed-operator -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for location
      • - -
        -

        For kubefed-operator.v0.1.0:

        +

      • "WARNING" Add a spec descriptor for osType
      • -
      • "ERROR" scope does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for platformImageURN
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for subnetName
      • +
      • "WARNING" Add a spec descriptor for adminUserName
      • -
      • "WARNING" Add a spec descriptor for scope
      • +
      • "WARNING" Add a spec descriptor for backendAddressPoolName
      • -
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=DNSEndpoint: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for inboundNatPoolName
      • -
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=KubeFedCluster: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for sshPublicKeyData
      • -
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=FederatedTypeConfig: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for virtualNetworkName
      • -
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=KubeFedConfig: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for vmSize
      • -
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=PropagatedVersion: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for capacity
      • -
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=ServiceDNSRecord: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for loadBalancerName
      • -
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=ClusterPropagatedVersion: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=FederatedServiceStatus: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=IngressDNSRecord: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for networkInterfaceName
      • -
      • "WARNING" Warning: Value scheduling.kubefed.k8s.io/v1alpha1, Kind=ReplicaSchedulingPreference: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for osType
      • -
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=Domain: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for platformImageURN
      • + +
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for sshPublicKeyData
      • +
      • "WARNING" Add a spec descriptor for vmSize
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for adminUserName
      • +
      • "WARNING" Add a spec descriptor for osType
      • -
        -

        For kubefed-operator.v0.1.0:

        +

      • "WARNING" Add a spec descriptor for platformImageURN
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" (kubefed-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for sshPublicKeyData
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpropagatedversions.core.kubefed.k8s.io" "dnsendpoints.multiclusterdns.kubefed.k8s.io" "domains.multiclusterdns.kubefed.k8s.io" "federatedservicestatuses.core.kubefed.k8s.io" "federatedtypeconfigs.core.kubefed.k8s.io" "ingressdnsrecords.multiclusterdns.kubefed.k8s.io" "kubefedclusters.core.kubefed.k8s.io" "kubefedconfigs.core.kubefed.k8s.io" "kubefeds.operator.kubefed.io" "propagatedversions.core.kubefed.k8s.io" "replicaschedulingpreferences.scheduling.kubefed.k8s.io" "servicednsrecords.multiclusterdns.kubefed.k8s.io"])
      • +
      • "WARNING" Add a spec descriptor for vmSize
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for adminUserName
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for networkInterfaceName
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for forceUpdateTag
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for protectedSettings
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for publisher
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for settings
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for typeHandlerVersion
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for autoUpgradeMinorVersion
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for typeName
      • +
      • "WARNING" Add a spec descriptor for vmName
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      keycloak-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for accesslevel
      • + +
      • "WARNING" Add a spec descriptor for accountname
      • + +
      • "WARNING" Add a spec descriptor for location
      • + +
      • "WARNING" Add a spec descriptor for resourcegroup
      • - -
        -

        For keycloak-operator.v15.0.2:

        +

      • "WARNING" Add a spec descriptor for eventHub
      • -
      • "ERROR" keycloaks.keycloak.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for namespace
      • -
      • "ERROR" keycloakrealms.keycloak.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" keycloakbackups.keycloak.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for kind
      • -
      • "ERROR" keycloakclients.keycloak.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" keycloakusers.keycloak.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" instances does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" extensions does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for locations
      • -
      • "ERROR" externalAccess does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "ERROR" realm does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" instanceSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ipRules
      • -
      • "ERROR" instanceSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for kind
      • -
      • "ERROR" realmSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" client does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for namespace
      • -
      • "ERROR" realmSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "ERROR" user does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for authorizationRule
      • -
      • "WARNING" Add a spec descriptor for instances
      • +
      • "WARNING" Add a spec descriptor for namespace
      • -
      • "WARNING" Add a spec descriptor for extensions
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "WARNING" Add a spec descriptor for externalAccess
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for realm
      • +
      • "WARNING" Add a spec descriptor for authorizationRule
      • -
      • "WARNING" Add a spec descriptor for instanceSelector
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for instanceSelector
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for realmSelector
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "WARNING" Add a spec descriptor for client
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for realmSelector
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "WARNING" Add a spec descriptor for user
      • +
      • "WARNING" Add a spec descriptor for sku
      • +
      • "WARNING" Add a spec descriptor for accessPolicies
      • +
      • "WARNING" Add a spec descriptor for enableSoftDelete
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for networkPolicies
      • -
        -

        For keycloak-operator.v15.0.2:

        +

      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for enableSoftDelete
      • -
      • "WARNING" (keycloak-operator.v15.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      -
      - -

      NOT USED

      Grade C
      (500)
      victoriametrics-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for resourceGroup
      • - -
        -

        For victoriametrics-operator.v0.18.1:

        +

      • "WARNING" Add a spec descriptor for type
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for keySize
      • -
      • "ERROR" vmagents.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for keyVault
      • -
      • "ERROR" vmalerts.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" vmalertmanagers.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" vmalertmanagerconfigs.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" vmauths.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" vmclusters.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" vmnodescrapes.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" vmpodscrapes.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "ERROR" vmprobes.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for endIpAddress
      • -
      • "ERROR" vmrules.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for endIpAddress
      • -
      • "ERROR" vmservicescrapes.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" vmservicescrapes.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" vmsingles.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "ERROR" vmstaticscrapes.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "ERROR" vmusers.operator.victoriametrics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" extraArgs does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for replicaProperties
      • -
      • "ERROR" podScrapeSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" serviceScrapeSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "ERROR" nodeScrapeSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "ERROR" probeSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "ERROR" remoteWrite does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "ERROR" staticScrapeSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" evaluationInterval does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" notifiers does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "ERROR" remoteRead does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "ERROR" remoteWrite does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "ERROR" ruleSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "ERROR" datasource does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" configRawYaml does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" configSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for dbName
      • -
      • "ERROR" configNamespaceSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" receivers does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for roles
      • -
      • "ERROR" route does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" userNamespaceSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
      • -
      • "ERROR" userSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" vminsert does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" vmselect does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for subnetName
      • -
      • "ERROR" vmstorage does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for vNetName
      • -
      • "ERROR" replicationFactor does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for vNetResourceGroup
      • -
      • "ERROR" retentionPeriod does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for vNetSubscriptionID
      • -
      • "ERROR" path does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" relabelConfigs does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" scheme does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" targetLabels does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • + +
      • "WARNING" Add a spec descriptor for endIpAddress
      • + +
      • "WARNING" Add a spec descriptor for resourceGroup
      • + +
      • "WARNING" Add a spec descriptor for server
      • + +
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "ERROR" bearerTokenFile does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for endIpAddress
      • -
      • "ERROR" scrapeTimeout does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" selector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" tlsConfig does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "ERROR" jobLabel does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" port does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for replicaProperties
      • -
      • "ERROR" podMetricsEndpoints does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" selector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" module does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "ERROR" targets does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "ERROR" vmProberSpec does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "ERROR" interval does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "ERROR" jobName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" groups does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "ERROR" selector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" endpoints does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "ERROR" discoveryRole does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "ERROR" endpoints does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "ERROR" namespaceSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for dbName
      • -
      • "ERROR" selector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" removePvcAfterDelete does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for roles
      • -
      • "ERROR" retentionPeriod does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "ERROR" jobName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" targetEndpoints does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for subnetName
      • -
      • "ERROR" password does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for vNetName
      • -
      • "ERROR" targetRefs does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for vNetResourceGroup
      • -
      • "ERROR" username does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for vNetSubscriptionID
      • +
      • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
      • -
      • "WARNING" Add a spec descriptor for extraArgs
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for podScrapeSelector
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "WARNING" Add a spec descriptor for serviceScrapeSelector
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for nodeScrapeSelector
      • +
      • "WARNING" Add a spec descriptor for actionName
      • -
      • "WARNING" Add a spec descriptor for probeSelector
      • +
      • "WARNING" Add a spec descriptor for cacheName
      • -
      • "WARNING" Add a spec descriptor for remoteWrite
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for staticScrapeSelector
      • +
      • "WARNING" Add a spec descriptor for properties
      • -
      • "WARNING" Add a spec descriptor for evaluationInterval
      • +
      • "WARNING" Add a spec descriptor for redisCache
      • -
      • "WARNING" Add a spec descriptor for notifiers
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for remoteRead
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for remoteWrite
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for ruleSelector
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for datasource
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "WARNING" Add a spec descriptor for configRawYaml
      • +
      • "WARNING" Add a spec descriptor for supportsHttpsTrafficOnly
      • -
      • "WARNING" Add a spec descriptor for configSelector
      • +
      • "WARNING" Add a spec descriptor for accessTier
      • -
      • "WARNING" Add a spec descriptor for configNamespaceSelector
      • +
      • "WARNING" Add a spec descriptor for kind
      • -
      • "WARNING" Add a spec descriptor for receivers
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for route
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for userNamespaceSelector
      • +
      • "WARNING" Add a spec descriptor for subnets
      • -
      • "WARNING" Add a spec descriptor for userSelector
      • +
      • "WARNING" Add a spec descriptor for addressSpace
      • -
      • "WARNING" Add a spec descriptor for vminsert
      • +
      • "WARNING" Add a spec descriptor for subnets
      • -
      • "WARNING" Add a spec descriptor for vmselect
      • +
      • "WARNING" Add a spec descriptor for addressSpace
      • -
      • "WARNING" Add a spec descriptor for vmstorage
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for replicationFactor
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for retentionPeriod
      • +
      • "WARNING" Add a spec descriptor for accessLevel
      • -
      • "WARNING" Add a spec descriptor for path
      • +
      • "WARNING" Add a spec descriptor for accountName
      • -
      • "WARNING" Add a spec descriptor for relabelConfigs
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for scheme
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for targetLabels
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for bearerTokenFile
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "WARNING" Add a spec descriptor for scrapeTimeout
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "WARNING" Add a spec descriptor for selector
      • +
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "WARNING" Add a spec descriptor for tlsConfig
      • +
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "WARNING" Add a spec descriptor for jobLabel
      • +
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "WARNING" Add a spec descriptor for port
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for podMetricsEndpoints
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for selector
      • +
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "WARNING" Add a spec descriptor for module
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "WARNING" Add a spec descriptor for targets
      • +
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "WARNING" Add a spec descriptor for vmProberSpec
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for interval
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for jobName
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for groups
      • +
      • "WARNING" Add a spec descriptor for sku
      • -
      • "WARNING" Add a spec descriptor for selector
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for endpoints
      • +
      • "WARNING" Add a spec descriptor for secondaryServer
      • -
      • "WARNING" Add a spec descriptor for discoveryRole
      • +
      • "WARNING" Add a spec descriptor for secondaryServerResourceGroup
      • -
      • "WARNING" Add a spec descriptor for endpoints
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for namespaceSelector
      • +
      • "WARNING" Add a spec descriptor for databaseList
      • -
      • "WARNING" Add a spec descriptor for selector
      • +
      • "WARNING" Add a spec descriptor for failoverGracePeriod
      • -
      • "WARNING" Add a spec descriptor for removePvcAfterDelete
      • +
      • "WARNING" Add a spec descriptor for failoverPolicy
      • -
      • "WARNING" Add a spec descriptor for retentionPeriod
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "WARNING" Add a spec descriptor for endIpAddress
      • -
      • "WARNING" Add a spec descriptor for jobName
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for targetEndpoints
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for password
      • +
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "WARNING" Add a spec descriptor for targetRefs
      • +
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for username
      • +
      • "WARNING" Add a spec descriptor for resourceGroup
      • @@ -15702,25 +14454,35 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For victoriametrics-operator.v0.18.1:

        +

        For azure-service-operator.v1.0.28631:

        -

      • "WARNING" (victoriametrics-operator.v0.18.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (azure-service-operator.v1.0.28631) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -15730,28 +14492,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade B
      (700)
      hazelcast-jet-operatorlogging-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -15764,84 +14526,52 @@
        Grade

      NOT USED

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        - - -
        -

        For hazelcast-jet-operator.v0.5.0:

        - -

      • "ERROR" hazelcastjets.hazelcast.com does not have a status descriptor
      • - -
      • "ERROR" securityContext does not have a spec descriptor
      • - -
      • "ERROR" cluster does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJet/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJet/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for securityContext
      • - -
      • "WARNING" Add a spec descriptor for cluster
      • - - - -
      -
      +
      +

      PASS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For hazelcast-jet-operator.v0.5.0:

        - +

        For logging-operator.v0.2.0:

        -

      • "WARNING" (hazelcast-jet-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcastjets.hazelcast.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["elasticsearches.logging.opstreelabs.in" "fluentds.logging.opstreelabs.in" "indexlifecycles.logging.opstreelabs.in" "indextemplates.logging.opstreelabs.in" "kibanas.logging.opstreelabs.in"])
      • @@ -15851,28 +14581,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (300)
      kubernetes-nmstate-operatornexus-operator-m88i -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -15885,11 +14615,11 @@
        Grade

      NOT USED

      @@ -15899,31 +14629,47 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kubernetes-nmstate-operator.v0.47.0:

        +

        For nexus-operator.v0.5.0:

        + +

      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" useRedHatImage does not have a spec descriptor
      • + +
      • "ERROR" networking does not have a spec descriptor
      • + +
      • "ERROR" persistence does not have a spec descriptor
      • + +
      • "ERROR" replicas does not have a spec descriptor
      • + +
      • "ERROR" nexus.apps.m88i.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" nmstates.nmstate.io does not have a status descriptor
      • -
      • "ERROR" nodeSelector does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for resources
      • +
      • "WARNING" Add a spec descriptor for useRedHatImage
      • -
      • "WARNING" Add a spec descriptor for nodeSelector
      • +
      • "WARNING" Add a spec descriptor for networking
      • + +
      • "WARNING" Add a spec descriptor for persistence
      • + +
      • "WARNING" Add a spec descriptor for replicas
      • @@ -15934,25 +14680,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubernetes-nmstate-operator.v0.47.0:

        +

        For nexus-operator.v0.5.0:

        -

      • "WARNING" (kubernetes-nmstate-operator.v0.47.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (nexus-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nexus.apps.m88i.io"])
      • @@ -15962,35 +14710,33 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (200)
      open-libertyredis-enterprise -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • -
      • beta
      • -
      @@ -15998,11 +14744,11 @@
      Grade

      NOT USED

      @@ -16012,116 +14758,47 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For open-liberty-0.0.1:

        - -

      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • - -
      • "ERROR" service does not have a spec descriptor
      • - -
      • "ERROR" jmsService does not have a spec descriptor
      • - -
      • "ERROR" ssl does not have a spec descriptor
      • - -
      • "ERROR" ingress does not have a spec descriptor
      • - -
      • "ERROR" autoscaling does not have a spec descriptor
      • - -
      • "ERROR" pod does not have a spec descriptor
      • - -
      • "ERROR" rbac does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" deployment does not have a spec descriptor
      • - -
      • "ERROR" iiopService does not have a spec descriptor
      • - -
      • "ERROR" persistence does not have a spec descriptor
      • - -
      • "ERROR" logs does not have a spec descriptor
      • - -
      • "ERROR" microprofile does not have a spec descriptor
      • - -
      • "ERROR" monitoring does not have a spec descriptor
      • - -
      • "ERROR" arch does not have a spec descriptor
      • - -
      • "ERROR" env does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for service
      • - -
      • "WARNING" Add a spec descriptor for jmsService
      • - -
      • "WARNING" Add a spec descriptor for ssl
      • - -
      • "WARNING" Add a spec descriptor for ingress
      • - -
      • "WARNING" Add a spec descriptor for autoscaling
      • - -
      • "WARNING" Add a spec descriptor for pod
      • - -
      • "WARNING" Add a spec descriptor for rbac
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for deployment
      • - -
      • "WARNING" Add a spec descriptor for iiopService
      • - -
      • "WARNING" Add a spec descriptor for persistence
      • - -
      • "WARNING" Add a spec descriptor for logs
      • - -
      • "WARNING" Add a spec descriptor for microprofile
      • - -
      • "WARNING" Add a spec descriptor for monitoring
      • - -
      • "WARNING" Add a spec descriptor for arch
      • - -
      • "WARNING" Add a spec descriptor for env
      • - +

        For redis-enterprise-operator.v0.0.1:

        -
        -

        For open-liberty-operator.v0.7.0:

        +

      • "ERROR" redisenterpriseclusters.app.redislabs.com does not have a status descriptor
      • -
      • "ERROR" openlibertydumps.openliberty.io does not have a status descriptor
      • +
      • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
      • -
      • "ERROR" openlibertytraces.openliberty.io does not have a status descriptor
      • +
      • "ERROR" persistentSpec does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" uiServiceType does not have a spec descriptor
      • -
      • "ERROR" podName does not have a spec descriptor
      • +
      • "ERROR" username does not have a spec descriptor
      • -
      • "ERROR" include does not have a spec descriptor
      • +
      • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
      • -
      • "ERROR" podName does not have a spec descriptor
      • -
      • "ERROR" traceSpecification does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
      • -
      • "WARNING" Add a spec descriptor for podName
      • +
      • "WARNING" Add a spec descriptor for persistentSpec
      • -
      • "WARNING" Add a spec descriptor for include
      • +
      • "WARNING" Add a spec descriptor for uiServiceType
      • -
      • "WARNING" Add a spec descriptor for podName
      • +
      • "WARNING" Add a spec descriptor for username
      • -
      • "WARNING" Add a spec descriptor for traceSpecification
      • +
      • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
      • @@ -16132,36 +14809,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For open-liberty-0.0.1:

        - - -

      • "WARNING" (open-liberty-0.0.1) csv.metadata.Name open-liberty-0.0.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openliberties.openliberty.io"])
      • - - -
        -

        For open-liberty-operator.v0.7.0:

        +

        For redis-enterprise-operator.v0.0.1:

        -

      • "WARNING" (open-liberty-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (redis-enterprise-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -16175,65 +14843,155 @@
        Grade
      pcc-operatorrook-ceph -

      COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • beta
      • + +
      +
      +
      -

      USED

      +

      NOT USED

      USED

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For pcc-operator.v0.1.0:

        +

        For rook-ceph.v1.1.1:

        -

      • "ERROR" consoles.pcc.paloaltonetworks.com does not have a status descriptor
      • +
      • "ERROR" cephclusters.ceph.rook.io does not have a status descriptor
      • -
      • "ERROR" consoledefenders.pcc.paloaltonetworks.com does not have a status descriptor
      • +
      • "ERROR" cephblockpools.ceph.rook.io does not have a status descriptor
      • -
      • "ERROR" defenders.pcc.paloaltonetworks.com does not have a status descriptor
      • +
      • "ERROR" cephobjectstores.ceph.rook.io does not have a status descriptor
      • + +
      • "ERROR" cephobjectstoreusers.ceph.rook.io does not have a status descriptor
      • + +
      • "ERROR" cephnfses.ceph.rook.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" cephVersion does not have a spec descriptor
      • + +
      • "ERROR" dataDirHostPath does not have a spec descriptor
      • + +
      • "ERROR" mon does not have a spec descriptor
      • + +
      • "ERROR" dashboard does not have a spec descriptor
      • + +
      • "ERROR" network does not have a spec descriptor
      • + +
      • "ERROR" rbdMirroring does not have a spec descriptor
      • + +
      • "ERROR" storage does not have a spec descriptor
      • + +
      • "ERROR" failureDomain does not have a spec descriptor
      • + +
      • "ERROR" replicated does not have a spec descriptor
      • + +
      • "ERROR" annotations does not have a spec descriptor
      • + +
      • "ERROR" dataPool does not have a spec descriptor
      • + +
      • "ERROR" gateway does not have a spec descriptor
      • + +
      • "ERROR" metadataPool does not have a spec descriptor
      • + +
      • "ERROR" store does not have a spec descriptor
      • + +
      • "ERROR" displayName does not have a spec descriptor
      • + +
      • "ERROR" rados does not have a spec descriptor
      • + +
      • "ERROR" server does not have a spec descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `rbdMirroring` in CephCluster/v1
      • + +
      • "WARNING" Add CRD validation for CephBlockPool/v1
      • + +
      • "WARNING" Add CRD validation for CephObjectStore/v1
      • + +
      • "WARNING" Add CRD validation for CephObjectStoreUser/v1
      • + +
      • "WARNING" Add a spec descriptor for cephVersion
      • + +
      • "WARNING" Add a spec descriptor for dataDirHostPath
      • + +
      • "WARNING" Add a spec descriptor for mon
      • + +
      • "WARNING" Add a spec descriptor for dashboard
      • + +
      • "WARNING" Add a spec descriptor for network
      • + +
      • "WARNING" Add a spec descriptor for rbdMirroring
      • + +
      • "WARNING" Add a spec descriptor for storage
      • + +
      • "WARNING" Add a spec descriptor for failureDomain
      • + +
      • "WARNING" Add a spec descriptor for replicated
      • + +
      • "WARNING" Add a spec descriptor for annotations
      • + +
      • "WARNING" Add a spec descriptor for dataPool
      • + +
      • "WARNING" Add a spec descriptor for gateway
      • + +
      • "WARNING" Add a spec descriptor for metadataPool
      • + +
      • "WARNING" Add a spec descriptor for store
      • + +
      • "WARNING" Add a spec descriptor for displayName
      • + +
      • "WARNING" Add a spec descriptor for rados
      • + +
      • "WARNING" Add a spec descriptor for server
      • @@ -16244,25 +15002,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For pcc-operator.v0.1.0:

        +

        For rook-ceph.v1.1.1:

        -

      • "WARNING" (pcc-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cephblockpools.ceph.rook.io" "cephclusters.ceph.rook.io" "cephnfses.ceph.rook.io" "cephobjectstores.ceph.rook.io" "cephobjectstoreusers.ceph.rook.io"])
      • @@ -16272,47 +15030,35 @@
        Grade

      NOT USED

      Grade B
      (800)
      Grade D
      (100)
      apicurio-registrysnapscheduler -

      PARTIAL COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      • 2.x
      • - -
      -
      -

      NOT USED

      @@ -16320,57 +15066,35 @@
      Grade

      USED

      -

      ERRORS AND WARNINGS

      +

      ONLY ERRORS

      - +Info -
      + +Info +

        -

        For apicurio-registry.v0.0.4-v1.3.2.final:

        +

        For snapscheduler.v2.0.0:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" error spec does not exist
      • - -
      • "ERROR" apicurioregistries.apicur.io does not have a status descriptor
      • -
        -

        For apicurio-registry-operator.v1.0.0-v2.0.0.final:

        - -

      • "ERROR" configuration does not have a spec descriptor
      • - -
      • "ERROR" configuration does not have a spec descriptor
      • - -
      • "ERROR" configuration does not have a spec descriptor
      • - -
      • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
      • - -
      • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
      • - -
      • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
      • +

        For snapscheduler.v2.0.0:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for configuration
      • - -
      • "WARNING" Add a spec descriptor for configuration
      • - -
      • "WARNING" Add a spec descriptor for configuration
      • -
      @@ -16378,84 +15102,49 @@
      Grade
      -

      ONLY WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For apicurio-registry.v0.0.4-v1.3.2.final:

        - - -

      • "WARNING" (apicurio-registry.v0.0.4-v1.3.2.final) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
      • - - -
        -

        For apicurio-registry-operator.v1.0.0-v2.0.0.final:

        - - -

      • "WARNING" (apicurio-registry-operator.v1.0.0-v2.0.0.final) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - - - -
      -
      -

      NOT USED

      Grade D
      (300)
      Grade B
      (800)
      cos-bucket-operatorsnyk-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -16463,42 +15152,70 @@
      Grade

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For snyk-operator.v1.64.1:

        + +

      • "ERROR" snykmonitors.charts.helm.k8s.io does not have a status descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" pvc does not have a spec descriptor
      • + +
      • "ERROR" initContainerImage does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for pvc
      • + +
      • "WARNING" Add a spec descriptor for initContainerImage
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For cos-bucket-operator.v0.1.0:

        +

        For snyk-operator.v1.64.1:

        -

      • "WARNING" (cos-bucket-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (snyk-operator.v1.64.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["buckets.ibmcloud.ibm.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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.helm.k8s.io"])
      • @@ -16508,35 +15225,51 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade D
      (200)
      couchbase-enterpriseaqua -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • 6.0.0
      • + +
      • 6.2.0
      • + +
      • alpha
      • + +
      • 5.3.0
      • + +
      +
      +

      NOT USED

      @@ -16546,2050 +15279,3199 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For couchbase-operator.v2.1.0:

        +

        For aqua-operator.v6.0.0:

        -

      • "ERROR" upgradeStrategy does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" monitoring does not have a spec descriptor
      • +
      • "ERROR" route does not have a spec descriptor
      • -
      • "ERROR" enablePreviewScaling does not have a spec descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" cluster does not have a spec descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" recoveryPolicy does not have a spec descriptor
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "ERROR" logRetentionTime does not have a spec descriptor
      • +
      • "ERROR" gateway does not have a spec descriptor
      • -
      • "ERROR" hibernate does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" hibernationStrategy does not have a spec descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" xdcr does not have a spec descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" logRetentionCount does not have a spec descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" diskSize does not have a spec descriptor
      • + +
      • "ERROR" token does not have a spec descriptor
      • + +
      • "ERROR" infra does not have a spec descriptor
      • + +
      • "ERROR" common does not have a spec descriptor
      • + +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" gateway does not have a spec descriptor
      • + +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" token does not have a spec descriptor
      • + +
      • "ERROR" infra does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" infra does not have a spec descriptor
      • + +
      • "ERROR" common does not have a spec descriptor
      • + +
      • "ERROR" externalDb does not have a spec descriptor
      • + +
      • "ERROR" login does not have a spec descriptor
      • + +
      • "ERROR" infra does not have a spec descriptor
      • + +
      • "ERROR" common does not have a spec descriptor
      • + +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" common does not have a spec descriptor
      • + +
      • "ERROR" externalDb does not have a spec descriptor
      • + +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" infra does not have a spec descriptor
      • + +
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for route
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for database
      • + +
      • "WARNING" Add a spec descriptor for gateway
      • + +
      • "WARNING" Add a spec descriptor for server
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for diskSize
      • + +
      • "WARNING" Add a spec descriptor for token
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for gateway
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for token
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for externalDb
      • + +
      • "WARNING" Add a spec descriptor for login
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for externalDb
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaEnforcer/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `common` in AquaEnforcer/v1alpha1
      • + +
      • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `common` in AquaScanner/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • -
      • "ERROR" backup does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • -
      • "ERROR" start does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • -
      • "ERROR" end does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • -
      • "ERROR" logRetention does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • -
      • "ERROR" servers does not have a spec descriptor
      • -
      • "ERROR" couchbasebuckets.couchbase.com does not have a status descriptor
      • +
        +

        For aqua-operator.v6.2.0:

        -

      • "ERROR" couchbaseephemeralbuckets.couchbase.com does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" couchbasememcachedbuckets.couchbase.com does not have a status descriptor
      • +
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" couchbaseusers.couchbase.com does not have a status descriptor
      • +
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" couchbasegroups.couchbase.com does not have a status descriptor
      • +
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" couchbaserolebindings.couchbase.com does not have a status descriptor
      • +
      • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" couchbasereplications.couchbase.com does not have a status descriptor
      • +
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" couchbasebackups.couchbase.com does not have a status descriptor
      • +
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" couchbasebackuprestores.couchbase.com does not have a status descriptor
      • +
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" couchbaseautoscalers.couchbase.com does not have a status descriptor
      • +
      • "ERROR" gateway does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `logRetentionTime` in CouchbaseCluster/v2
      • +
      • "ERROR" route does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `logRetentionCount` in CouchbaseCluster/v2
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackup/v2
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackupRestore/v2
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for upgradeStrategy
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for monitoring
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for enablePreviewScaling
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for cluster
      • +
      • "ERROR" diskSize does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for recoveryPolicy
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for logRetentionTime
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for hibernate
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for hibernationStrategy
      • +
      • "ERROR" gateway does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for xdcr
      • +
      • "ERROR" token does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for logRetentionCount
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for backup
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for start
      • +
      • "ERROR" token does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for end
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for logRetention
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for servers
      • +
      • "ERROR" common does not have a spec descriptor
      • +
      • "ERROR" externalDb does not have a spec descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" login does not have a spec descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
        -

        For couchbase-operator.v2.1.0:

        +

      • "ERROR" common does not have a spec descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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" infra does not have a spec descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • +
      • "ERROR" externalDb does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade D
      (200)
      event-streams-topic -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      PASS

      - - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" deploy does not have a spec descriptor
      • -
        -

        For event-streams-topic.v0.1.1:

        +

      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
      • -
      • "WARNING" (event-streams-topic.v0.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["topics.ibmcloud.ibm.com"])
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • -
      -
      - -

      NOT USED

      Grade D
      (300)
      project-quay -

      NOT COMPLY

      -
      -

      COMPLY

      - - -
      -

      REQUIRED

      - - - +Info -
      -

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
        - -
      • project-quay.v1.1.2
      • - -
      -
      - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • - -
        -

        For project-quay.v1.1.2:

        +

      • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
      • -
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • -
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • -
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" clair does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" quay does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
      • -
      • "ERROR" clair does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • -
      • "ERROR" quay does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • -
      • "ERROR" redis does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • -
      • "ERROR" quay does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • -
      • "ERROR" quay does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • -
      • "ERROR" clair does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaScanner/v1alpha1
      • -
      • "ERROR" quay does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for clair
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for quay
      • +
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for clair
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for quay
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for redis
      • +
      • "WARNING" Add a spec descriptor for gateway
      • -
      • "WARNING" Add a spec descriptor for quay
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for quay
      • +
      • "WARNING" Add a spec descriptor for route
      • -
      • "WARNING" Add a spec descriptor for clair
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "WARNING" Add a spec descriptor for quay
      • +
      • "WARNING" Add a spec descriptor for common
      • +
      • "WARNING" Add a spec descriptor for database
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for common
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
        -

        For project-quay.v1.1.2:

        +

      • "WARNING" Add a spec descriptor for diskSize
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "WARNING" (project-quay.v1.1.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io"])
      • +
      • "WARNING" Add a spec descriptor for deploy
      • +
      • "WARNING" Add a spec descriptor for gateway
      • +
      • "WARNING" Add a spec descriptor for token
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for token
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for externalDb
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for login
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • + +
      • "WARNING" Add a spec descriptor for infra
      • + +
      • "WARNING" Add a spec descriptor for common
      • + +
      • "WARNING" Add a spec descriptor for externalDb
      • + +
      • "WARNING" Add a spec descriptor for deploy
      • -
      -
      - -

      NOT USED

      Grade D
      (200)
      redis-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • preview
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        -
        -

        For redis-operator.v0.8.0:

        +

        For aqua-operator.v1.0.2:

        -

      • "ERROR" kubernetesConfig does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" redisExporter does not have a spec descriptor
      • +
      • "ERROR" adminPassword does not have a spec descriptor
      • -
      • "ERROR" clusterSize does not have a spec descriptor
      • +
      • "ERROR" licenseToken does not have a spec descriptor
      • -
      • "ERROR" kubernetesConfig does not have a spec descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" redisExporter does not have a spec descriptor
      • +
      • "ERROR" registry does not have a spec descriptor
      • -
      • "ERROR" redisLeader does not have a spec descriptor
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "ERROR" redisFollower does not have a spec descriptor
      • +
      • "ERROR" gateway does not have a spec descriptor
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" redis.redis.redis.opstreelabs.in does not have a status descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "ERROR" redisclusters.redis.redis.opstreelabs.in does not have a status descriptor
      • +
      • "ERROR" diskSize does not have a spec descriptor
      • +
      • "ERROR" gateway does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for kubernetesConfig
      • +
      • "ERROR" token does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for redisExporter
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for clusterSize
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for kubernetesConfig
      • +
      • "ERROR" externalDb does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for redisExporter
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for redisLeader
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for redisFollower
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "ERROR" login does not have a spec descriptor
      • +
      • "ERROR" adminPassword does not have a spec descriptor
      • -
        -

        For redis-operator.v0.4.0:

        +

      • "ERROR" licenseToken does not have a spec descriptor
      • -
      • "ERROR" redis.redis.redis.opstreelabs.in does not have a status descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" size does not have a spec descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" master does not have a spec descriptor
      • +
      • "ERROR" externalDb does not have a spec descriptor
      • + +
      • "ERROR" deploy does not have a spec descriptor
      • + +
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • + +
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • -
      • "ERROR" slave does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
      • -
      • "ERROR" mode does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • -
      • "ERROR" global does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `registry` in AquaCsp/v1alpha1
      • -
      • "ERROR" service does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • -
      • "ERROR" redisConfig does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • -
      • "ERROR" redisExporter does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for size
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for master
      • +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for slave
      • +
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for global
      • +
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for service
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for redisConfig
      • +
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for redisExporter
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • -
      -
      - -
      -

      PASS

      - - -

      NOT USED

      Grade B
      (600)
      azure-service-operator -

      COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • - -
        -

        For azure-service-operator.v1.0.28631:

        +

      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • -
      • "ERROR" apimgmtapis.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
      • -
      • "ERROR" apimservices.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
      • -
      • "ERROR" appinsights.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" appinsightsapikeys.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for adminPassword
      • -
      • "ERROR" azureloadbalancers.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for licenseToken
      • -
      • "ERROR" azurenetworkinterfaces.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" azurenetworkinterfaces.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for registry
      • -
      • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for database
      • -
      • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for gateway
      • -
      • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" azuresqlmanagedusers.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" azuresqlusers.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for diskSize
      • -
      • "ERROR" azuresqlvnetrules.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for gateway
      • -
      • "ERROR" azuresqlactions.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for token
      • -
      • "ERROR" azuresqldatabases.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" azuresqldatabases.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" azuresqlfailovergroups.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" azuresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for externalDb
      • -
      • "ERROR" azuresqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" azuresqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" azurevmscalesets.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" azurevirtualmachines.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for login
      • -
      • "ERROR" azurevirtualmachines.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for adminPassword
      • -
      • "ERROR" azurevirtualmachineextensions.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for licenseToken
      • -
      • "ERROR" blobcontainers.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" consumergroups.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" cosmosdbs.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for externalDb
      • -
      • "ERROR" cosmosdbs.azure.microsoft.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" eventhubs.azure.microsoft.com does not have a status descriptor
      • -
      • "ERROR" eventhubs.azure.microsoft.com does not have a status descriptor
      • +
        +

        For aqua-operator.v5.3.0:

        -

      • "ERROR" eventhubnamespaces.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" keyvaults.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" keyvaults.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" keyvaultkeys.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" mysqldatabases.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" mysqldatabases.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" mysqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" mysqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
      • -
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" route does not have a spec descriptor
      • -
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" mysqlusers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" mysqlvnetrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "ERROR" postgresqldatabases.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" gateway does not have a spec descriptor
      • -
      • "ERROR" postgresqldatabases.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" postgresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" postgresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" diskSize does not have a spec descriptor
      • -
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" postgresqlusers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "ERROR" postgresqlvnetrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" gateway does not have a spec descriptor
      • -
      • "ERROR" rediscaches.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" token does not have a spec descriptor
      • -
      • "ERROR" rediscacheactions.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" rediscachefirewallrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" resourcegroups.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" token does not have a spec descriptor
      • -
      • "ERROR" storageaccounts.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" externalDb does not have a spec descriptor
      • -
      • "ERROR" virtualnetworks.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "ERROR" virtualnetworks.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" blobcontainers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" mysqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" postgresqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" azuresqldatabases.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "ERROR" azuresqlfailovergroups.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" login does not have a spec descriptor
      • -
      • "ERROR" azuresqlfirewallrules.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • -
      • "ERROR" azuresqlservers.azure.microsoft.com does not have a status descriptor
      • +
      • "ERROR" common does not have a spec descriptor
      • -
      • "ERROR" apiId does not have a spec descriptor
      • +
      • "ERROR" externalDb does not have a spec descriptor
      • -
      • "ERROR" apiService does not have a spec descriptor
      • +
      • "ERROR" deploy does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" properties does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
      • -
      • "ERROR" publisherEmail does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
      • -
      • "ERROR" publisherName does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
      • -
      • "ERROR" vnetResourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
      • -
      • "ERROR" vnetSubnetName does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
      • -
      • "ERROR" appInsightsName does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
      • -
      • "ERROR" appInsightsResourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
      • -
      • "ERROR" tier does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
      • -
      • "ERROR" vnetName does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
      • -
      • "ERROR" vnetType does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" applicationType does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaEnforcer/v1alpha1
      • -
      • "ERROR" kind does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
      • -
      • "ERROR" appInsights does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
      • -
      • "ERROR" authSDKControlChannel does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
      • -
      • "ERROR" readTelemetry does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
      • -
      • "ERROR" writeAnnotations does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaScanner/v1alpha1
      • -
      • "ERROR" backendPort does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
      • -
      • "ERROR" frontendPortRangeEnd does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
      • -
      • "ERROR" frontendPortRangeStart does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
      • -
      • "ERROR" inboundNatPoolName does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
      • -
      • "ERROR" publicIPAddressName does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "ERROR" backendAddressPoolName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for route
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" publicIPAddressName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for database
      • -
      • "ERROR" subnetName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for gateway
      • -
      • "ERROR" vnetName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" publicIPAddressName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" subnetName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for diskSize
      • -
      • "ERROR" vnetName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" skuName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for gateway
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for token
      • -
      • "ERROR" publicIPAddressVersion does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for config
      • -
      • "ERROR" publicIPAllocationMethod does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for token
      • -
      • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for externalDb
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" publicIPAddressVersion does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" publicIPAllocationMethod does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" skuName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" publicIPAddressVersion does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for login
      • -
      • "ERROR" publicIPAllocationMethod does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for infra
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for common
      • -
      • "ERROR" skuName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for externalDb
      • -
      • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for deploy
      • -
      • "ERROR" dbName does not have a spec descriptor
      • -
      • "ERROR" managedIdentityClientId does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" roles does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
        +

        For aqua-operator.v6.0.0:

        -

      • "ERROR" dbName does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" (aqua-operator.v6.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" roles does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" server does not have a spec descriptor
      • -
      • "ERROR" ignoreMissingServiceEndpoint does not have a spec descriptor
      • +
        +

        For aqua-operator.v6.2.0:

        -

      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" (aqua-operator.v6.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" subnetName does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" vNetName does not have a spec descriptor
      • -
      • "ERROR" vNetResourceGroup does not have a spec descriptor
      • +
        +

        For aqua-operator.v1.0.2:

        -

      • "ERROR" vNetSubscriptionID does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" (aqua-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" serverName does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" resourcegroup does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
        +

        For aqua-operator.v5.3.0:

        -

      • "ERROR" edition does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" (aqua-operator.v5.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" edition does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" location does not have a spec descriptor
      • -
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      pcc-operator +

      COMPLY

      +
      +

      COMPLY

      + + +
      +

      USED

      + + +

      USED

      +

      ONLY ERRORS

      + + + +Info +
      +
        -
      • "ERROR" resourcegroup does not have a spec descriptor
      • + +
        +

        For pcc-operator.v0.1.0:

        -

      • "ERROR" secondaryserver does not have a spec descriptor
      • +
      • "ERROR" consoles.pcc.paloaltonetworks.com does not have a status descriptor
      • -
      • "ERROR" secondaryserverresourcegroup does not have a spec descriptor
      • +
      • "ERROR" consoledefenders.pcc.paloaltonetworks.com does not have a status descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "ERROR" defenders.pcc.paloaltonetworks.com does not have a status descriptor
      • -
      • "ERROR" databaselist does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" failovergraceperiod does not have a spec descriptor
      • -
      • "ERROR" failoverpolicy does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" endipaddress does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
        +

        For pcc-operator.v0.1.0:

        -

      • "ERROR" startipaddress does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" (pcc-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "ERROR" resourcegroup does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade B
      (800)
      portworx +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ONLY ERRORS

      + + + +Info +
      +
        -
      • "ERROR" location does not have a spec descriptor
      • + +
        +

        For portworx-operator.v1.5.0:

        -

      • "ERROR" osType does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" platformImageURN does not have a spec descriptor
      • +
      • "ERROR" error spec does not exist
      • -
      • "ERROR" subnetName does not have a spec descriptor
      • -
      • "ERROR" adminUserName does not have a spec descriptor
      • -
      • "ERROR" backendAddressPoolName does not have a spec descriptor
      • +
        +

        For portworx-operator.v1.5.0:

        -

      • "ERROR" inboundNatPoolName does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" sshPublicKeyData does not have a spec descriptor
      • +
      • "ERROR" error spec does not exist
      • -
      • "ERROR" virtualNetworkName does not have a spec descriptor
      • -
      • "ERROR" vmSize does not have a spec descriptor
      • -
      • "ERROR" capacity does not have a spec descriptor
      • -
      • "ERROR" loadBalancerName does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
        +

        For portworx-operator.v1.5.0:

        -

      • "ERROR" networkInterfaceName does not have a spec descriptor
      • -
      • "ERROR" osType does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
      • -
      • "ERROR" platformImageURN does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
        +

        For portworx-operator.v1.5.0:

        -

      • "ERROR" sshPublicKeyData does not have a spec descriptor
      • -
      • "ERROR" vmSize does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
      • -
      • "ERROR" adminUserName does not have a spec descriptor
      • -
      • "ERROR" osType does not have a spec descriptor
      • -
      • "ERROR" platformImageURN does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      project-quay +

      NOT COMPLY

      +
      +

      COMPLY

      + + +
      +

      REQUIRED

      + + + +Info +
      +

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      +
        + +
      • project-quay.v1.1.2
      • + +
      +
      + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" resourceGroup does not have a spec descriptor
      • + +
        +

        For project-quay.v1.1.2:

        -

      • "ERROR" sshPublicKeyData does not have a spec descriptor
      • +
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • -
      • "ERROR" vmSize does not have a spec descriptor
      • +
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • -
      • "ERROR" adminUserName does not have a spec descriptor
      • +
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • -
      • "ERROR" networkInterfaceName does not have a spec descriptor
      • +
      • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
      • -
      • "ERROR" forceUpdateTag does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" protectedSettings does not have a spec descriptor
      • +
      • "ERROR" clair does not have a spec descriptor
      • -
      • "ERROR" publisher does not have a spec descriptor
      • +
      • "ERROR" quay does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" clair does not have a spec descriptor
      • -
      • "ERROR" settings does not have a spec descriptor
      • +
      • "ERROR" quay does not have a spec descriptor
      • -
      • "ERROR" typeHandlerVersion does not have a spec descriptor
      • +
      • "ERROR" redis does not have a spec descriptor
      • -
      • "ERROR" autoUpgradeMinorVersion does not have a spec descriptor
      • +
      • "ERROR" quay does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" quay does not have a spec descriptor
      • -
      • "ERROR" typeName does not have a spec descriptor
      • +
      • "ERROR" clair does not have a spec descriptor
      • -
      • "ERROR" vmName does not have a spec descriptor
      • +
      • "ERROR" quay does not have a spec descriptor
      • -
      • "ERROR" accesslevel does not have a spec descriptor
      • -
      • "ERROR" accountname does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for clair
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for quay
      • -
      • "ERROR" resourcegroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for clair
      • -
      • "ERROR" eventHub does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for quay
      • -
      • "ERROR" namespace does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for redis
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for quay
      • -
      • "ERROR" kind does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for quay
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for clair
      • -
      • "ERROR" properties does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for quay
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" locations does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
        +

        For project-quay.v1.1.2:

        -

      • "ERROR" ipRules does not have a spec descriptor
      • -
      • "ERROR" kind does not have a spec descriptor
      • +
      • "WARNING" (project-quay.v1.1.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io"])
      • -
      • "ERROR" namespace does not have a spec descriptor
      • -
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (200)
      starboard-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" authorizationRule does not have a spec descriptor
      • + +
        +

        For starboard-operator.v0.11.0:

        -

      • "ERROR" namespace does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value aquasecurity.github.io/v1alpha1, Kind=VulnerabilityReport: provided API should have an example annotation
      • -
      • "ERROR" authorizationRule does not have a spec descriptor
      • +
      • "WARNING" Warning: Value aquasecurity.github.io/v1alpha1, Kind=ConfigAuditReport: provided API should have an example annotation
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Warning: Value aquasecurity.github.io/v1alpha1, Kind=CISKubeBenchReport: provided API should have an example annotation
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" sku does not have a spec descriptor
      • -
      • "ERROR" sku does not have a spec descriptor
      • +
        +

        For starboard-operator.v0.11.0:

        -

      • "ERROR" accessPolicies does not have a spec descriptor
      • -
      • "ERROR" enableSoftDelete does not have a spec descriptor
      • +
      • "WARNING" (starboard-operator.v0.11.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" networkPolicies does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" enableSoftDelete does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade C
      (500)
      steerd-presto-operator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" location does not have a spec descriptor
      • + +
        +

        For steerd-presto-operator.v0.1.0:

        -

      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" additionalPrestoPropFiles does not have a spec descriptor
      • -
      • "ERROR" keySize does not have a spec descriptor
      • +
      • "ERROR" service does not have a spec descriptor
      • -
      • "ERROR" keyVault does not have a spec descriptor
      • +
      • "ERROR" catalogs does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" volumes does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "ERROR" coordinator does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" worker does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "ERROR" imageDetails does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" prestos.falarica.io does not have a status descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" startIpAddress does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for additionalPrestoPropFiles
      • -
      • "ERROR" endIpAddress does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for service
      • -
      • "ERROR" endIpAddress does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for catalogs
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for volumes
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for coordinator
      • -
      • "ERROR" startIpAddress does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for worker
      • -
      • "ERROR" createMode does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for imageDetails
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" replicaProperties does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" serverVersion does not have a spec descriptor
      • -
      • "ERROR" sku does not have a spec descriptor
      • +
        +

        For steerd-presto-operator.v0.1.0:

        -

      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      • "ERROR" createMode does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["prestos.falarica.io"])
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" serverVersion does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      wso2am-operator +

      NOT COMPLY

      +
      +

      COMPLY

      + + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" sku does not have a spec descriptor
      • + +
        +

        For wso2am-operator.v1.1.0:

        -

      • "ERROR" sslEnforcement does not have a spec descriptor
      • +
      • "ERROR" profiles does not have a spec descriptor
      • -
      • "ERROR" createMode does not have a spec descriptor
      • +
      • "ERROR" pattern does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" service does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" useMysql does not have a spec descriptor
      • -
      • "ERROR" dbName does not have a spec descriptor
      • +
      • "ERROR" apimanagers.apim.wso2.com does not have a status descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" roles does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for APIManager/v1alpha1
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for profiles
      • -
      • "ERROR" ignoreMissingServiceEndpoint does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for pattern
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for service
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for useMysql
      • -
      • "ERROR" subnetName does not have a spec descriptor
      • -
      • "ERROR" vNetName does not have a spec descriptor
      • -
      • "ERROR" vNetResourceGroup does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" vNetSubscriptionID does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
        +

        For wso2am-operator.v1.1.0:

        -

      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" (wso2am-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apim.wso2.com"])
      • -
      • "ERROR" endIpAddress does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (200)
      project-quay-container-security-operator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      REQUIRED

      + + + +Info +
      +

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      +
        + +
      • project-quay-container-security-operator.v1.0.6
      • + +
      +
      + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" startIpAddress does not have a spec descriptor
      • + +
        +

        For project-quay-container-security-operator.v1.0.6:

        -

      • "ERROR" startIpAddress does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" endIpAddress does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value : (project-quay-container-security-operator.v1.0.6) example annotations not found
      • -
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" createMode does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" replicaProperties does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
        +

        For project-quay-container-security-operator.v1.0.6:

        -

      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" serverVersion does not have a spec descriptor
      • +
      • "WARNING" (project-quay-container-security-operator.v1.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" sku does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
      • -
      • "ERROR" sslEnforcement does not have a spec descriptor
      • +
      • "WARNING" (project-quay-container-security-operator.v1.0.6) example annotations not found
      • -
      • "ERROR" createMode does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      t8c +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" resourceGroup does not have a spec descriptor
      • + +
        +

        For t8c-operator.v7.22.0:

        -

      • "ERROR" serverVersion does not have a spec descriptor
      • +
      • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
      • -
      • "ERROR" sku does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" sslEnforcement does not have a spec descriptor
      • +
      • "ERROR" global does not have a spec descriptor
      • -
      • "ERROR" dbName does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for global
      • -
      • "ERROR" roles does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
        +

        For t8c-operator.v8.2.0:

        -

      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" subnetName does not have a spec descriptor
      • +
      • "ERROR" global does not have a spec descriptor
      • -
      • "ERROR" vNetName does not have a spec descriptor
      • -
      • "ERROR" vNetResourceGroup does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for global
      • -
      • "ERROR" vNetSubscriptionID does not have a spec descriptor
      • -
      • "ERROR" ignoreMissingServiceEndpoint does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" properties does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
        +

        For t8c-operator.v7.22.0:

        -

      • "ERROR" actionName does not have a spec descriptor
      • -
      • "ERROR" cacheName does not have a spec descriptor
      • +
      • "WARNING" (t8c-operator.v7.22.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" properties does not have a spec descriptor
      • -
      • "ERROR" redisCache does not have a spec descriptor
      • +
        +

        For t8c-operator.v8.2.0:

        -

      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" (t8c-operator.v8.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" sku does not have a spec descriptor
      • -
      • "ERROR" supportsHttpsTrafficOnly does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      tf-operator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" accessTier does not have a spec descriptor
      • + +
        +

        For tf-operator.v0.0.1-2011:

        -

      • "ERROR" kind does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" managers.tf.tungsten.io does not have a status descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" commonConfiguration does not have a spec descriptor
      • -
      • "ERROR" subnets does not have a spec descriptor
      • +
      • "ERROR" services does not have a spec descriptor
      • -
      • "ERROR" addressSpace does not have a spec descriptor
      • -
      • "ERROR" subnets does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for commonConfiguration
      • -
      • "ERROR" addressSpace does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for services
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Vrouter: provided API should have an example annotation
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Webui: provided API should have an example annotation
      • -
      • "ERROR" accessLevel does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Zookeeper: provided API should have an example annotation
      • -
      • "ERROR" accountName does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Rabbitmq: provided API should have an example annotation
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsAlarm: provided API should have an example annotation
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsSnmp: provided API should have an example annotation
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Cassandra: provided API should have an example annotation
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Config: provided API should have an example annotation
      • -
      • "ERROR" serverVersion does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Control: provided API should have an example annotation
      • -
      • "ERROR" sku does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Kubemanager: provided API should have an example annotation
      • -
      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      • "ERROR" createMode does not have a spec descriptor
      • +
        +

        For tf-operator.latest:

        -

      • "ERROR" createMode does not have a spec descriptor
      • +
      • "ERROR" error getting custom resources
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" serverVersion does not have a spec descriptor
      • +
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • -
      • "ERROR" sku does not have a spec descriptor
      • +
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • -
      • "ERROR" sslEnforcement does not have a spec descriptor
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Vrouter: provided API should have an example annotation
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Webui: provided API should have an example annotation
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Analytics: provided API should have an example annotation
      • -
      • "ERROR" sku does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsAlarm: provided API should have an example annotation
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Cassandra: provided API should have an example annotation
      • -
      • "ERROR" secondaryServer does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Redis: provided API should have an example annotation
      • -
      • "ERROR" secondaryServerResourceGroup does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Control: provided API should have an example annotation
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Zookeeper: provided API should have an example annotation
      • -
      • "ERROR" databaseList does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsSnmp: provided API should have an example annotation
      • -
      • "ERROR" failoverGracePeriod does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Kubemanager: provided API should have an example annotation
      • -
      • "ERROR" failoverPolicy does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Rabbitmq: provided API should have an example annotation
      • -
      • "ERROR" location does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=QueryEngine: provided API should have an example annotation
      • -
      • "ERROR" endIpAddress does not have a spec descriptor
      • +
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Config: provided API should have an example annotation
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" startIpAddress does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" location does not have a spec descriptor
      • -
      • "ERROR" resourceGroup does not have a spec descriptor
      • +
        +

        For tf-operator.v0.0.1-2011:

        -

      • "WARNING" Warning: Value azure.microsoft.com/v1alpha2, Kind=MySQLAADUser: provided API should have an example annotation
      • +
      • "WARNING" (tf-operator.v0.0.1-2011) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=MySQLServerAdministrator: provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["analyticsalarm.tf.tungsten.io" "analyticssnmp.tf.tungsten.io" "cassandras.tf.tungsten.io" "configs.tf.tungsten.io" "controls.tf.tungsten.io" "kubemanagers.tf.tungsten.io" "managers.tf.tungsten.io" "rabbitmqs.tf.tungsten.io" "vrouters.tf.tungsten.io" "webuis.tf.tungsten.io" "zookeepers.tf.tungsten.io"])
      • -
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha2, Kind=MySQLUser: provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=MySQLAADUser: provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=CosmosDBSQLDatabase: provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for apiId
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for apiService
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for publisherEmail
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for publisherName
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for vnetResourceGroup
      • -
      • "WARNING" Add a spec descriptor for vnetSubnetName
      • +
        +

        For tf-operator.latest:

        -

      • "WARNING" Add a spec descriptor for appInsightsName
      • -
      • "WARNING" Add a spec descriptor for appInsightsResourceGroup
      • +
      • "WARNING" (tf-operator.latest) csv.metadata.Name tf-operator.latest is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" Add a spec descriptor for tier
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["analytics.tf.tungsten.io" "analyticsalarm.tf.tungsten.io" "analyticssnmp.tf.tungsten.io" "cassandras.tf.tungsten.io" "configs.tf.tungsten.io" "controls.tf.tungsten.io" "kubemanagers.tf.tungsten.io" "managers.tf.tungsten.io" "queryengine.tf.tungsten.io" "rabbitmqs.tf.tungsten.io" "redis.tf.tungsten.io" "vrouters.tf.tungsten.io" "webuis.tf.tungsten.io" "zookeepers.tf.tungsten.io"])
      • -
      • "WARNING" Add a spec descriptor for vnetName
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for vnetType
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for applicationType
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for kind
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for appInsights
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for authSDKControlChannel
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for readTelemetry
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for writeAnnotations
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for backendPort
      • -
      • "WARNING" Add a spec descriptor for frontendPortRangeEnd
      • -
      • "WARNING" Add a spec descriptor for frontendPortRangeStart
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      rook-edgefs +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • beta
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for inboundNatPoolName
      • + +
        +

        For rook-edgefs.v1.0.1:

        -

      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=ISGW: example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for publicIPAddressName
      • +
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=NFS: example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=S3: example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for backendAddressPoolName
      • +
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=S3X: example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=SWIFT: example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for publicIPAddressName
      • +
      • "ERROR" Error: Value edgefs.rook.io/v1, Kind=ISCSI: example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for subnetName
      • +
      • "ERROR" edgefsImageName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for vnetName
      • +
      • "ERROR" serviceAccount does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for publicIPAddressName
      • +
      • "ERROR" dataDirHostPath does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" storage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for subnetName
      • +
      • "ERROR" annotations does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for vnetName
      • +
      • "ERROR" remoteURL does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" direction does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for skuName
      • +
      • "ERROR" instances does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
      • +
      • "ERROR" instances does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" instances does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for publicIPAddressVersion
      • +
      • "ERROR" instances does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for publicIPAllocationMethod
      • +
      • "ERROR" clusters.edgefs.rook.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" iscsis.edgefs.rook.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
      • +
      • "ERROR" isgws.edgefs.rook.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" nfss.edgefs.rook.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for publicIPAddressVersion
      • +
      • "ERROR" s3s.edgefs.rook.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for publicIPAllocationMethod
      • +
      • "ERROR" s3xs.edgefs.rook.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" swifts.edgefs.rook.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for skuName
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=ISGW: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for publicIPAddressVersion
      • +
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=S3: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for publicIPAllocationMethod
      • +
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=S3X: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=SWIFT: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for skuName
      • +
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=NFS: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
      • +
      • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=ISCSI: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for dbName
      • +
      • "WARNING" Add a spec descriptor for edgefsImageName
      • -
      • "WARNING" Add a spec descriptor for managedIdentityClientId
      • +
      • "WARNING" Add a spec descriptor for serviceAccount
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for dataDirHostPath
      • -
      • "WARNING" Add a spec descriptor for roles
      • +
      • "WARNING" Add a spec descriptor for storage
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for annotations
      • -
      • "WARNING" Add a spec descriptor for dbName
      • +
      • "WARNING" Add a spec descriptor for remoteURL
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for direction
      • -
      • "WARNING" Add a spec descriptor for roles
      • +
      • "WARNING" Add a spec descriptor for instances
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for instances
      • -
      • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
      • +
      • "WARNING" Add a spec descriptor for instances
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for instances
      • -
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for subnetName
      • -
      • "WARNING" Add a spec descriptor for vNetName
      • +
      +
      + +
      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for vNetResourceGroup
      • -
      • "WARNING" Add a spec descriptor for vNetSubscriptionID
      • +
        +

        For rook-edgefs.v1.0.1:

        -

      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for serverName
      • +
      • "ERROR" example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "ERROR" example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "ERROR" example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for edition
      • +
      • "ERROR" example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for edition
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusters.edgefs.rook.io" "iscsis.edgefs.rook.io" "isgws.edgefs.rook.io" "nfss.edgefs.rook.io" "s3s.edgefs.rook.io" "s3xs.edgefs.rook.io" "swifts.edgefs.rook.io"])
      • -
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for secondaryserver
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for secondaryserverresourcegroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for databaselist
      • -
      • "WARNING" Add a spec descriptor for failovergraceperiod
      • -
      • "WARNING" Add a spec descriptor for failoverpolicy
      • +
      +
      + +

      NOT USED

      Grade D
      (0)
      camel-k +

      COMPLY

      +
      +

      COMPLY

      + + +
      +

      NOT USED

      + + +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for location
      • + +
        +

        For camel-k-operator.v1.3.2:

        -

      • "WARNING" Add a spec descriptor for endipaddress
      • +
      • "ERROR" flows does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "ERROR" definition does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "ERROR" flow does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for startipaddress
      • +
      • "ERROR" source does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" sink does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for osType
      • +
      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for platformImageURN
      • +
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for subnetName
      • +
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for adminUserName
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for backendAddressPoolName
      • -
      • "WARNING" Add a spec descriptor for inboundNatPoolName
      • +
      • "WARNING" Add a spec descriptor for flows
      • -
      • "WARNING" Add a spec descriptor for sshPublicKeyData
      • +
      • "WARNING" Add a spec descriptor for definition
      • -
      • "WARNING" Add a spec descriptor for virtualNetworkName
      • +
      • "WARNING" Add a spec descriptor for flow
      • -
      • "WARNING" Add a spec descriptor for vmSize
      • +
      • "WARNING" Add a spec descriptor for source
      • -
      • "WARNING" Add a spec descriptor for capacity
      • +
      • "WARNING" Add a spec descriptor for sink
      • -
      • "WARNING" Add a spec descriptor for loadBalancerName
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
        +

        For camel-k-operator.v1.5.1:

        -

      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for networkInterfaceName
      • +
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for osType
      • +
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for platformImageURN
      • +
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for sshPublicKeyData
      • +
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for vmSize
      • +
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for adminUserName
      • +
      • "ERROR" flows does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for osType
      • +
      • "ERROR" definition does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for platformImageURN
      • +
      • "ERROR" flow does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" sink does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for sshPublicKeyData
      • +
      • "ERROR" source does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for vmSize
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for adminUserName
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for networkInterfaceName
      • +
      • "WARNING" Add a spec descriptor for flows
      • -
      • "WARNING" Add a spec descriptor for forceUpdateTag
      • +
      • "WARNING" Add a spec descriptor for definition
      • -
      • "WARNING" Add a spec descriptor for protectedSettings
      • +
      • "WARNING" Add a spec descriptor for flow
      • -
      • "WARNING" Add a spec descriptor for publisher
      • +
      • "WARNING" Add a spec descriptor for sink
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for source
      • -
      • "WARNING" Add a spec descriptor for settings
      • -
      • "WARNING" Add a spec descriptor for typeHandlerVersion
      • +
        +

        For camel-k-operator.v1.5.1:

        -

      • "WARNING" Add a spec descriptor for autoUpgradeMinorVersion
      • +
      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for typeName
      • +
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for vmName
      • +
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for accesslevel
      • +
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for accountname
      • +
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourcegroup
      • +
      • "ERROR" flows does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for eventHub
      • +
      • "ERROR" definition does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for namespace
      • +
      • "ERROR" flow does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" sink does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for kind
      • +
      • "ERROR" source does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for flows
      • -
      • "WARNING" Add a spec descriptor for locations
      • +
      • "WARNING" Add a spec descriptor for definition
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "WARNING" Add a spec descriptor for flow
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for sink
      • -
      • "WARNING" Add a spec descriptor for ipRules
      • +
      • "WARNING" Add a spec descriptor for source
      • -
      • "WARNING" Add a spec descriptor for kind
      • -
      • "WARNING" Add a spec descriptor for location
      • +
        +

        For camel-k-operator.v1.4.1:

        -

      • "WARNING" Add a spec descriptor for namespace
      • +
      • "ERROR" flows does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "ERROR" definition does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" flow does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for authorizationRule
      • +
      • "ERROR" source does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for namespace
      • +
      • "ERROR" sink does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for authorizationRule
      • +
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for accessPolicies
      • -
      • "WARNING" Add a spec descriptor for enableSoftDelete
      • +
      • "WARNING" Add a spec descriptor for flows
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for definition
      • -
      • "WARNING" Add a spec descriptor for networkPolicies
      • +
      • "WARNING" Add a spec descriptor for flow
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for source
      • -
      • "WARNING" Add a spec descriptor for enableSoftDelete
      • +
      • "WARNING" Add a spec descriptor for sink
      • -
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for type
      • +
        +

        For camel-k-operator.v1.3.2:

        -

      • "WARNING" Add a spec descriptor for keySize
      • -
      • "WARNING" Add a spec descriptor for keyVault
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["builds.camel.apache.org" "camelcatalogs.camel.apache.org" "integrationkits.camel.apache.org" "integrationplatforms.camel.apache.org" "integrations.camel.apache.org" "kameletbindings.camel.apache.org" "kamelets.camel.apache.org"])
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for server
      • +
        +

        For camel-k-operator.v1.5.1:

        -

      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
        +

        For camel-k-operator.v1.5.1:

        -

      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "WARNING" Add a spec descriptor for endIpAddress
      • +
        +

        For camel-k-operator.v1.4.1:

        -

      • "WARNING" Add a spec descriptor for endIpAddress
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for startIpAddress
      • +
      +
      + +

      NOT USED

      Grade B
      (700)
      deployment-validation-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for createMode
      • + +
        +

        For deployment-validation-operator.v0.0.10:

        -

      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for replicaProperties
      • +
      • "WARNING" Warning: Value : (deployment-validation-operator.v0.0.10) example annotations not found
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "WARNING" Add a spec descriptor for createMode
      • +
        +

        For deployment-validation-operator.v0.0.10:

        -

      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" (deployment-validation-operator.v0.0.10) csv.Spec.Icon not specified
      • -
      • "WARNING" Add a spec descriptor for serverVersion
      • +
      • "WARNING" (deployment-validation-operator.v0.0.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      • "WARNING" (deployment-validation-operator.v0.0.10) example annotations not found
      • -
      • "WARNING" Add a spec descriptor for sslEnforcement
      • -
      • "WARNING" Add a spec descriptor for createMode
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      +
      + +

      NOT USED

      Grade B
      (600)
      jenkins-operator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      REQUIRED

      + + + +Info +
      +

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      +
        + +
      • jenkins-operator.v0.3.0
      • + +
      +
      + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for resourceGroup
      • + +
        +

        For jenkins-operator.v0.3.0:

        -

      • "WARNING" Add a spec descriptor for dbName
      • +
      • "ERROR" jenkins.jenkins.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" jenkins.jenkins.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for roles
      • +
      • "ERROR" master does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "ERROR" seedJobs does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
      • +
      • "ERROR" master does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add CRD validation for Jenkins/v1alpha2
      • -
      • "WARNING" Add a spec descriptor for subnetName
      • +
      • "WARNING" Add CRD validation for Jenkins/v1alpha2
      • -
      • "WARNING" Add a spec descriptor for vNetName
      • +
      • "WARNING" Add a spec descriptor for master
      • -
      • "WARNING" Add a spec descriptor for vNetResourceGroup
      • +
      • "WARNING" Add a spec descriptor for seedJobs
      • -
      • "WARNING" Add a spec descriptor for vNetSubscriptionID
      • +
      • "WARNING" Add a spec descriptor for master
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for endIpAddress
      • +
        +

        For jenkins-operator.v0.3.0:

        -

      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jenkins.jenkins.io"])
      • -
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "WARNING" Add a spec descriptor for endIpAddress
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      radanalytics-spark +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for resourceGroup
      • + +
        +

        For sparkoperator.v1.0.2:

        -

      • "WARNING" Add a spec descriptor for server
      • +
      • "ERROR" worker does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for createMode
      • +
      • "ERROR" master does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" mainApplicationFile does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicaProperties
      • +
      • "ERROR" mainClass does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" driver does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" executor does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serverVersion
      • +
      • "ERROR" updateInterval does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      • "ERROR" retainedApplications does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for sslEnforcement
      • +
      • "ERROR" customImage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for createMode
      • +
      • "ERROR" sparkConfiguration does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" expose does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" logDirectory does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serverVersion
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      • "ERROR" sparkclusters.radanalytics.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for sslEnforcement
      • +
      • "ERROR" sparkapplications.radanalytics.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for dbName
      • +
      • "ERROR" sparkhistoryservers.radanalytics.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for roles
      • +
      • "WARNING" Add a spec descriptor for worker
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for master
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for mainApplicationFile
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for mainClass
      • -
      • "WARNING" Add a spec descriptor for subnetName
      • +
      • "WARNING" Add a spec descriptor for driver
      • -
      • "WARNING" Add a spec descriptor for vNetName
      • +
      • "WARNING" Add a spec descriptor for executor
      • -
      • "WARNING" Add a spec descriptor for vNetResourceGroup
      • +
      • "WARNING" Add a spec descriptor for updateInterval
      • -
      • "WARNING" Add a spec descriptor for vNetSubscriptionID
      • +
      • "WARNING" Add a spec descriptor for retainedApplications
      • -
      • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
      • +
      • "WARNING" Add a spec descriptor for customImage
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for sparkConfiguration
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for expose
      • -
      • "WARNING" Add a spec descriptor for actionName
      • +
      • "WARNING" Add a spec descriptor for logDirectory
      • -
      • "WARNING" Add a spec descriptor for cacheName
      • +
      • "WARNING" Add CRD validation for SparkCluster/v1
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add CRD validation for SparkApplication/v1
      • -
      • "WARNING" Add a spec descriptor for properties
      • +
      • "WARNING" Add CRD validation for SparkHistoryServer/v1
      • -
      • "WARNING" Add a spec descriptor for redisCache
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
        +

        For sparkoperator.v1.0.2:

        -

      • "WARNING" Add a spec descriptor for sku
      • -
      • "WARNING" Add a spec descriptor for supportsHttpsTrafficOnly
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sparkapplications.radanalytics.io" "sparkclusters.radanalytics.io" "sparkhistoryservers.radanalytics.io"])
      • -
      • "WARNING" Add a spec descriptor for accessTier
      • -
      • "WARNING" Add a spec descriptor for kind
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      eclipse-che +

      COMPLY

      +
      +

      COMPLY

      + + +
      +

      NOT USED

      + + +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for resourceGroup
      • + +
        +

        For eclipse-che.v7.35.2:

        -

      • "WARNING" Add a spec descriptor for subnets
      • +
      • "ERROR" auth does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for addressSpace
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for subnets
      • +
      • "ERROR" devWorkspace does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for addressSpace
      • +
      • "ERROR" k8s does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" metrics does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for accessLevel
      • +
      • "ERROR" storage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for accountName
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for auth
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for database
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for devWorkspace
      • -
      • "WARNING" Add a spec descriptor for serverVersion
      • +
      • "WARNING" Add a spec descriptor for k8s
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      • "WARNING" Add a spec descriptor for metrics
      • -
      • "WARNING" Add a spec descriptor for sslEnforcement
      • +
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for createMode
      • +
      • "WARNING" Add a spec descriptor for storage
      • -
      • "WARNING" Add a spec descriptor for createMode
      • +
      • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheBackupServerConfiguration: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheClusterBackup: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheClusterRestore: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for serverVersion
      • -
      • "WARNING" Add a spec descriptor for sku
      • -
      • "WARNING" Add a spec descriptor for sslEnforcement
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for location
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
        +

        For eclipse-che.v7.35.2:

        -

      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for sku
      • +
      • "WARNING" (eclipse-che.v7.35.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for secondaryServer
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for secondaryServerResourceGroup
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for databaseList
      • -
      • "WARNING" Add a spec descriptor for failoverGracePeriod
      • +
      +
      + +

      NOT USED

      Grade B
      (700)
      ham-deploy +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for failoverPolicy
      • + +
        +

        For ham-deploy.v0.1.0:

        -

      • "WARNING" Add a spec descriptor for location
      • +
      • "ERROR" core does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for endIpAddress
      • +
      • "ERROR" tools does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "ERROR" operators.deploy.hybridapp.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for startIpAddress
      • -
      • "WARNING" Add a spec descriptor for location
      • +
      • "WARNING" Add a spec descriptor for core
      • -
      • "WARNING" Add a spec descriptor for resourceGroup
      • +
      • "WARNING" Add a spec descriptor for tools
      • @@ -18600,35 +18482,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For azure-service-operator.v1.0.28631:

        - - -

      • "WARNING" (azure-service-operator.v1.0.28631) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For ham-deploy.v0.1.0:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["operators.deploy.hybridapp.io"])
      • @@ -18638,33 +18510,35 @@
        Grade

      NOT USED

      Grade B
      (700)
      Grade D
      (100)
      credstash-operatorkubemq-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • +
      • original
      • +
      @@ -18672,11 +18546,11 @@
      Grade

      NOT USED

      @@ -18686,37 +18560,36 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For credstash-operator.v1.13.0:

        +

        For kubemq-operator.v0.5.1:

        -

      • "ERROR" credstashsecrets.credstash.ouzi.tech does not have a status descriptor
      • +
      • "ERROR" Port does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Port
      • -
      • "ERROR" secrets does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `Port` in KubemqDashboard/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for type
      • +
        +

        For kubemq-operator.v0.3.2:

        -

      • "WARNING" Add a spec descriptor for name
      • +
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • -
      • "WARNING" Add a spec descriptor for secrets
      • @@ -18727,25 +18600,36 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For credstash-operator.v1.13.0:

        +

        For kubemq-operator.v0.5.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["credstashsecrets.credstash.ouzi.tech"])
      • +
      • "WARNING" (kubemq-operator.v0.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io" "kubemqdashboards.core.k8s.kubemq.io"])
      • + + +
        +

        For kubemq-operator.v0.3.2:

        + + +

      • "WARNING" (kubemq-operator.v0.3.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io"])
      • @@ -18759,41 +18643,31 @@
        Grade
      redis-enterprisesematext -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -18803,47 +18677,33 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For redis-enterprise-operator.v0.0.1:

        - -

      • "ERROR" redisenterpriseclusters.app.redislabs.com does not have a status descriptor
      • - -
      • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
      • - -
      • "ERROR" persistentSpec does not have a spec descriptor
      • - -
      • "ERROR" uiServiceType does not have a spec descriptor
      • - -
      • "ERROR" username does not have a spec descriptor
      • - -
      • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
      • - +

        For sematext-operator.v1.0.33:

        -

      • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1alpha1
      • +
      • "ERROR" region does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
      • +
      • "ERROR" sematextagents.sematext.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for persistentSpec
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for uiServiceType
      • -
      • "WARNING" Add a spec descriptor for username
      • +
      • "WARNING" Add a spec descriptor for region
      • -
      • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
      • +
      • "WARNING" Add CRD validation for SematextAgent/v1alpha1
      • @@ -18854,27 +18714,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For redis-enterprise-operator.v0.0.1:

        +

        For sematext-operator.v1.0.33:

        -

      • "WARNING" (redis-enterprise-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (sematext-operator.v1.0.33) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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" this bundle is using APIs which were deprecated 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"])
      • @@ -18884,28 +18744,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (200)
      apicast-community-operatorwavefront -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -18918,11 +18778,11 @@
        Grade

      NOT USED

      @@ -18932,92 +18792,65 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For apicast-community-operator.v0.4.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • - -
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • - -
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • - -
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • - -
      • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
      • - -
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • - -
      • "ERROR" exposedHost does not have a spec descriptor
      • +

        For wavefront-operator.v0.1.0:

        -

      • "ERROR" logLevel does not have a spec descriptor
      • +
      • "ERROR" wavefrontproxies.wavefront.com does not have a status descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" wavefrontcollectors.wavefront.com does not have a status descriptor
      • +
      • "ERROR" enableAutoUpgrade does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • +
      • "ERROR" token does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
      • +
      • "ERROR" url does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for exposedHost
      • +
      • "ERROR" daemon does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for logLevel
      • +
      • "ERROR" enableAutoUpgrade does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" env does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
        -

        For apicast-community-operator.v0.4.0:

        +

      • "ERROR" tolerations does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • - -
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • - -
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • - -
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • - -
      • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
      • - -
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • - -
      • "ERROR" exposedHost does not have a spec descriptor
      • -
      • "ERROR" logLevel does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for enableAutoUpgrade
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for token
      • +
      • "WARNING" Add a spec descriptor for url
      • -
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
      • +
      • "WARNING" Add a spec descriptor for daemon
      • -
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • +
      • "WARNING" Add a spec descriptor for enableAutoUpgrade
      • -
      • "WARNING" Add a spec descriptor for exposedHost
      • +
      • "WARNING" Add a spec descriptor for env
      • -
      • "WARNING" Add a spec descriptor for logLevel
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "WARNING" Add a spec descriptor for tolerations
      • @@ -19028,32 +18861,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For apicast-community-operator.v0.4.0:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
      • - +

        For wavefront-operator.v0.1.0:

        -
        -

        For apicast-community-operator.v0.4.0:

        +

      • "WARNING" (wavefront-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -19067,24 +18895,24 @@
        Grade
      ditto-operatorkeycloak-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -19097,11 +18925,11 @@
        Grade

      NOT USED

      @@ -19111,33 +18939,75 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For ditto-operator.v0.2.0:

        + +
        +

        For keycloak-operator.v15.0.2:

        + +

      • "ERROR" keycloaks.keycloak.org does not have a status descriptor
      • + +
      • "ERROR" keycloakrealms.keycloak.org does not have a status descriptor
      • + +
      • "ERROR" keycloakbackups.keycloak.org does not have a status descriptor
      • + +
      • "ERROR" keycloakclients.keycloak.org does not have a status descriptor
      • + +
      • "ERROR" keycloakusers.keycloak.org does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" mongoDb does not have a spec descriptor
      • +
      • "ERROR" instances does not have a spec descriptor
      • -
      • "ERROR" dittos.iot.eclipse.org does not have a status descriptor
      • +
      • "ERROR" extensions does not have a spec descriptor
      • +
      • "ERROR" externalAccess does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `mongoDb` in Ditto/v1alpha1
      • +
      • "ERROR" realm does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for mongoDb
      • +
      • "ERROR" instanceSelector does not have a spec descriptor
      • + +
      • "ERROR" instanceSelector does not have a spec descriptor
      • + +
      • "ERROR" realmSelector does not have a spec descriptor
      • + +
      • "ERROR" client does not have a spec descriptor
      • + +
      • "ERROR" realmSelector does not have a spec descriptor
      • + +
      • "ERROR" user does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for instances
      • + +
      • "WARNING" Add a spec descriptor for extensions
      • + +
      • "WARNING" Add a spec descriptor for externalAccess
      • + +
      • "WARNING" Add a spec descriptor for realm
      • + +
      • "WARNING" Add a spec descriptor for instanceSelector
      • + +
      • "WARNING" Add a spec descriptor for instanceSelector
      • + +
      • "WARNING" Add a spec descriptor for realmSelector
      • + +
      • "WARNING" Add a spec descriptor for client
      • + +
      • "WARNING" Add a spec descriptor for realmSelector
      • + +
      • "WARNING" Add a spec descriptor for user
      • @@ -19148,25 +19018,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ditto-operator.v0.2.0:

        +

        For keycloak-operator.v15.0.2:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["dittos.iot.eclipse.org"])
      • +
      • "WARNING" (keycloak-operator.v15.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -19176,28 +19046,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      lightbend-console-operatorsap-btp-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -19210,11 +19080,11 @@
        Grade

      NOT USED

      @@ -19224,201 +19094,159 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For lightbend-console-operator.v0.0.1:

        - -

      • "ERROR" consoles.app.lightbend.com does not have a status descriptor
      • - -
      • "ERROR" esConsoleExposePort does not have a spec descriptor
      • - -
      • "ERROR" esGrafanaEnvVars does not have a spec descriptor
      • - -
      • "ERROR" esMonitorVersion does not have a spec descriptor
      • - -
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • - -
      • "ERROR" prometheusDomain does not have a spec descriptor
      • - -
      • "ERROR" prometheusVersion does not have a spec descriptor
      • - -
      • "ERROR" defaultCPURequest does not have a spec descriptor
      • - -
      • "ERROR" deploymentApiVersion does not have a spec descriptor
      • - -
      • "ERROR" prometheusVolumeSize does not have a spec descriptor
      • - -
      • "ERROR" elasticsearchImage does not have a spec descriptor
      • - -
      • "ERROR" elasticsearchVersion does not have a spec descriptor
      • - -
      • "ERROR" kubeStateMetricsVersion does not have a spec descriptor
      • - -
      • "ERROR" configMapReloadImage does not have a spec descriptor
      • - -
      • "ERROR" defaultMemoryRequest does not have a spec descriptor
      • - -
      • "ERROR" prometheusMemoryRequest does not have a spec descriptor
      • - -
      • "ERROR" rbacApiVersion does not have a spec descriptor
      • - -
      • "ERROR" alpineVersion does not have a spec descriptor
      • - -
      • "ERROR" esGrafanaImage does not have a spec descriptor
      • - -
      • "ERROR" daemonSetApiVersion does not have a spec descriptor
      • - -
      • "ERROR" imageCredentials does not have a spec descriptor
      • - -
      • "ERROR" esConsoleVersion does not have a spec descriptor
      • - -
      • "ERROR" esGrafanaVolumeSize does not have a spec descriptor
      • - -
      • "ERROR" prometheusImage does not have a spec descriptor
      • - -
      • "ERROR" configMapReloadVersion does not have a spec descriptor
      • - -
      • "ERROR" consoleUIConfig does not have a spec descriptor
      • - -
      • "ERROR" apiGroupVersion does not have a spec descriptor
      • - -
      • "ERROR" busyboxImage does not have a spec descriptor
      • - -
      • "ERROR" enableElasticsearch does not have a spec descriptor
      • - -
      • "ERROR" esGrafanaVersion does not have a spec descriptor
      • - -
      • "ERROR" esMonitorImage does not have a spec descriptor
      • - -
      • "ERROR" goDnsmasqImage does not have a spec descriptor
      • - -
      • "ERROR" alertManagers does not have a spec descriptor
      • - -
      • "ERROR" alpineImage does not have a spec descriptor
      • - -
      • "ERROR" kubeStateMetricsImage does not have a spec descriptor
      • - -
      • "ERROR" exposeServices does not have a spec descriptor
      • - -
      • "ERROR" usePersistentVolumes does not have a spec descriptor
      • - -
      • "ERROR" consoleAPI does not have a spec descriptor
      • - -
      • "ERROR" elasticsearchMemoryRequest does not have a spec descriptor
      • - -
      • "ERROR" goDnsmasqVersion does not have a spec descriptor
      • - -
      • "ERROR" minikube does not have a spec descriptor
      • - -
      • "ERROR" podUID does not have a spec descriptor
      • - -
      • "ERROR" busyboxVersion does not have a spec descriptor
      • - -
      • "ERROR" esConsoleImage does not have a spec descriptor
      • - -
      • "ERROR" Error: Field metadata.namespace, Value : metadata.namespace: Forbidden: not allowed on this type
      • - - -
      • "WARNING" Add a spec descriptor for esConsoleExposePort
      • - -
      • "WARNING" Add a spec descriptor for esGrafanaEnvVars
      • - -
      • "WARNING" Add a spec descriptor for esMonitorVersion
      • - -
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • - -
      • "WARNING" Add a spec descriptor for prometheusDomain
      • - -
      • "WARNING" Add a spec descriptor for prometheusVersion
      • - -
      • "WARNING" Add a spec descriptor for defaultCPURequest
      • - -
      • "WARNING" Add a spec descriptor for deploymentApiVersion
      • - -
      • "WARNING" Add a spec descriptor for prometheusVolumeSize
      • - -
      • "WARNING" Add a spec descriptor for elasticsearchImage
      • - -
      • "WARNING" Add a spec descriptor for elasticsearchVersion
      • - -
      • "WARNING" Add a spec descriptor for kubeStateMetricsVersion
      • - -
      • "WARNING" Add a spec descriptor for configMapReloadImage
      • - -
      • "WARNING" Add a spec descriptor for defaultMemoryRequest
      • +

        For sap-btp-operator.v0.1.6:

        -

      • "WARNING" Add a spec descriptor for prometheusMemoryRequest
      • +
      • "ERROR" serviceInstanceName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for rbacApiVersion
      • +
      • "ERROR" serviceOfferingName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for alpineVersion
      • +
      • "ERROR" servicePlanName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for esGrafanaImage
      • +
      • "ERROR" servicebindings.services.cloud.sap.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for daemonSetApiVersion
      • +
      • "ERROR" serviceinstances.services.cloud.sap.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for imageCredentials
      • -
      • "WARNING" Add a spec descriptor for esConsoleVersion
      • +
      • "WARNING" Add a spec descriptor for serviceInstanceName
      • -
      • "WARNING" Add a spec descriptor for esGrafanaVolumeSize
      • +
      • "WARNING" Add a spec descriptor for serviceOfferingName
      • -
      • "WARNING" Add a spec descriptor for prometheusImage
      • +
      • "WARNING" Add a spec descriptor for servicePlanName
      • -
      • "WARNING" Add a spec descriptor for configMapReloadVersion
      • -
      • "WARNING" Add a spec descriptor for consoleUIConfig
      • -
      • "WARNING" Add a spec descriptor for apiGroupVersion
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for busyboxImage
      • -
      • "WARNING" Add a spec descriptor for enableElasticsearch
      • +
        +

        For sap-btp-operator.v0.1.6:

        -

      • "WARNING" Add a spec descriptor for esGrafanaVersion
      • -
      • "WARNING" Add a spec descriptor for esMonitorImage
      • +
      • "WARNING" (sap-btp-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for goDnsmasqImage
      • -
      • "WARNING" Add a spec descriptor for alertManagers
      • -
      • "WARNING" Add a spec descriptor for alpineImage
      • +
      +
      + +

      NOT USED

      Grade C
      (500)
      tackle-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ONLY ERRORS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for kubeStateMetricsImage
      • + +
        +

        For tackle-operator.v1.0.0:

        -

      • "WARNING" Add a spec descriptor for exposeServices
      • +
      • "ERROR" tackles.tackle.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for usePersistentVolumes
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for consoleAPI
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for elasticsearchMemoryRequest
      • -
      • "WARNING" Add a spec descriptor for goDnsmasqVersion
      • -
      • "WARNING" Add a spec descriptor for minikube
      • +
        +

        For tackle-operator.v1.0.0:

        -

      • "WARNING" Add a spec descriptor for podUID
      • +
      • "ERROR" tackles.tackle.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for busyboxVersion
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for esConsoleImage
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for Console/v1alpha1
      • @@ -19429,27 +19257,36 @@
        Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For lightbend-console-operator.v0.0.1:

        +

        For tackle-operator.v1.0.0:

        -

      • "ERROR" metadata.namespace: Forbidden: not allowed on this type
      • +
      • "ERROR" (tackle-operator.v1.0.0) csv.Metadata.Annotations["categories"] value Modernization & Migration is not in the set of default categories
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["consoles.app.lightbend.com"])
      • +
      • "WARNING" (tackle-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + + +
        +

        For tackle-operator.v1.0.0:

        + +

      • "ERROR" (tackle-operator.v1.0.0) csv.Metadata.Annotations["categories"] value Modernization & Migration is not in the set of default categories
      • + + +
      • "WARNING" (tackle-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -19459,34 +19296,34 @@
        Grade

      NOT USED

      Grade D
      (0)
      Grade C
      (400)
      noobaa-operatortopolvm-operator -

      PARTIAL COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • -
      • original
      • +
      • v1.0
      @@ -19495,11 +19332,11 @@
      Grade

      NOT USED

      @@ -19509,72 +19346,158 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For noobaa-operator.v5.8.0:

        +

        For topolvm-operator.v1.0.0:

        -

      • "ERROR" noobaas.noobaa.io does not have a status descriptor
      • +
      • "ERROR" topolvmclusters.topolvm.cybozu.com does not have a status descriptor
      • -
      • "ERROR" backingstores.noobaa.io does not have a status descriptor
      • +
      • "ERROR" logicalvolumes.topolvm.cybozu.com does not have a status descriptor
      • -
      • "ERROR" namespacestores.noobaa.io does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" bucketclasses.noobaa.io does not have a status descriptor
      • +
      • "ERROR" topolvmVersion does not have a spec descriptor
      • -
      • "ERROR" cleanupPolicy does not have a spec descriptor
      • +
      • "ERROR" deviceClasses does not have a spec descriptor
      • -
      • "ERROR" security does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for topolvmVersion
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for deviceClasses
      • -
      • "WARNING" Add a spec descriptor for cleanupPolicy
      • +
        +

        For topolvm-operator.v1.0.0:

        -

      • "WARNING" Add a spec descriptor for security
      • +
      • "ERROR" topolvmclusters.topolvm.cybozu.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "ERROR" logicalvolumes.topolvm.cybozu.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" topolvmVersion does not have a spec descriptor
      • -
        -

        For noobaa-operator.v2.1.1:

        +

      • "ERROR" deviceClasses does not have a spec descriptor
      • -
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • -
      • "ERROR" noobaas.noobaa.io does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for topolvmVersion
      • + +
      • "WARNING" Add a spec descriptor for deviceClasses
      • + + + +
      +
      + +
      +

      PASS

      + + +

      NOT USED

      Grade B
      (600)
      litmuschaos +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      • original
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" backingstores.noobaa.io does not have a status descriptor
      • + +
        +

        For chaosoperator.v1.9.0:

        -

      • "ERROR" bucketclasses.noobaa.io does not have a status descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" awsS3 does not have a spec descriptor
      • +
        +

        For chaosoperator.v0.1.0:

        -

      • "ERROR" placementPolicy does not have a spec descriptor
      • +
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add CRD validation for spec field `experiments` in ChaosEngine/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for awsS3
      • +
      • "WARNING" Add CRD validation for spec field `appinfo` in ChaosEngine/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for placementPolicy
      • +
      • "WARNING" Add CRD validation for spec field `chaosServiceAccount` in ChaosEngine/v1alpha1
      • @@ -19585,30 +19508,30 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For noobaa-operator.v5.8.0:

        +

        For chaosoperator.v1.9.0:


        -

        For noobaa-operator.v2.1.1:

        +

        For chaosoperator.v0.1.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["backingstores.noobaa.io" "bucketclasses.noobaa.io" "noobaas.noobaa.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["chaosengines.litmuschaos.io"])
      • @@ -19618,32 +19541,34 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      portworxbanzaicloud-kafka-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      • + +
      • original
      @@ -19652,11 +19577,11 @@
      Grade

      NOT USED

      @@ -19664,38 +19589,136 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For portworx-operator.v1.5.0:

        +

        For banzaicloud-kafka-operator.0.6.1:

        + +

      • "ERROR" kafkaclusters.kafka.banzaicloud.io does not have a status descriptor
      • + +
      • "ERROR" kafkatopics.kafka.banzaicloud.io does not have a status descriptor
      • + +
      • "ERROR" kafkausers.kafka.banzaicloud.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" error spec does not exist
      • +
      • "ERROR" brokers does not have a spec descriptor
      • + +
      • "ERROR" rollingUpgradeConfig does not have a spec descriptor
      • + +
      • "ERROR" listenersConfig does not have a spec descriptor
      • + +
      • "ERROR" headlessServiceEnabled does not have a spec descriptor
      • + +
      • "ERROR" zkAddresses does not have a spec descriptor
      • + +
      • "ERROR" oneBrokerPerNode does not have a spec descriptor
      • + +
      • "ERROR" cruiseControlConfig does not have a spec descriptor
      • + +
      • "ERROR" clusterImage does not have a spec descriptor
      • + +
      • "ERROR" readOnlyConfig does not have a spec descriptor
      • + +
      • "ERROR" brokerConfigGroups does not have a spec descriptor
      • + +
      • "ERROR" partitions does not have a spec descriptor
      • + +
      • "ERROR" replicationFactor does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" clusterRef does not have a spec descriptor
      • + +
      • "ERROR" name does not have a spec descriptor
      • + +
      • "ERROR" clusterRef does not have a spec descriptor
      • + +
      • "ERROR" secretName does not have a spec descriptor
      • + +
      • "ERROR" topicGrants does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for brokers
      • + +
      • "WARNING" Add a spec descriptor for rollingUpgradeConfig
      • + +
      • "WARNING" Add a spec descriptor for listenersConfig
      • + +
      • "WARNING" Add a spec descriptor for headlessServiceEnabled
      • + +
      • "WARNING" Add a spec descriptor for zkAddresses
      • + +
      • "WARNING" Add a spec descriptor for oneBrokerPerNode
      • + +
      • "WARNING" Add a spec descriptor for cruiseControlConfig
      • + +
      • "WARNING" Add a spec descriptor for clusterImage
      • + +
      • "WARNING" Add a spec descriptor for readOnlyConfig
      • + +
      • "WARNING" Add a spec descriptor for brokerConfigGroups
      • +
      • "WARNING" Add a spec descriptor for partitions
      • + +
      • "WARNING" Add a spec descriptor for replicationFactor
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for clusterRef
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add a spec descriptor for clusterRef
      • + +
      • "WARNING" Add a spec descriptor for secretName
      • + +
      • "WARNING" Add a spec descriptor for topicGrants

      • -

        For portworx-operator.v1.5.0:

        +

        For banzaicloud-kafka-operator.0.3.1:

        + +

      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • + +
      • "ERROR" Error: Value banzaicloud.banzaicloud.io/v1alpha1, Kind=KafkaCluster: example must have a provided API
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" error spec does not exist
      • +
      • "ERROR" kafkaclusters.kafka.banzaicloud.io does not have a status descriptor
      • + +
      • "ERROR" brokerConfigs does not have a spec descriptor
      • + +
      • "ERROR" listenersConfig does not have a spec descriptor
      • + +
      • "ERROR" serviceAccount does not have a spec descriptor
      • + +
      • "ERROR" zkAddresses does not have a spec descriptor
      • + +
      • "WARNING" Warning: Value kafka.banzaicloud.io/v1alpha1, Kind=KafkaCluster: provided API should have an example annotation
      • + +
      • "WARNING" Add a spec descriptor for brokerConfigs
      • + +
      • "WARNING" Add a spec descriptor for listenersConfig
      • + +
      • "WARNING" Add a spec descriptor for serviceAccount
      • + +
      • "WARNING" Add a spec descriptor for zkAddresses
      • @@ -19704,34 +19727,42 @@
        Grade
      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For portworx-operator.v1.5.0:

        +

        For banzaicloud-kafka-operator.0.6.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
      • +
      • "WARNING" (banzaicloud-kafka-operator.0.6.1) csv.metadata.Name banzaicloud-kafka-operator.0.6.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkaclusters.kafka.banzaicloud.io" "kafkatopics.kafka.banzaicloud.io" "kafkausers.kafka.banzaicloud.io"])

      • -

        For portworx-operator.v1.5.0:

        +

        For banzaicloud-kafka-operator.0.3.1:

        + +

      • "ERROR" example must have a provided API
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
      • +
      • "WARNING" (banzaicloud-kafka-operator.0.3.1) csv.metadata.Name banzaicloud-kafka-operator.0.3.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkaclusters.kafka.banzaicloud.io"])
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -19741,45 +19772,35 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (0)
      pulp-operatorcloud-native-postgresql -

      COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -19789,37 +19810,37 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For pulp-operator.v0.3.0:

        +

        For cloud-native-postgresql.v1.7.1:

        -

      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • +
      • "ERROR" cluster does not have a spec descriptor
      • -
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • +
      • "ERROR" storage does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" cluster does not have a spec descriptor
      • -
      • "ERROR" error getting custom resources
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • +
      • "WARNING" Add a spec descriptor for cluster
      • -
      • "WARNING" Warning: Value pulp.pulpproject.org/v1beta1, Kind=PulpBackup: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for storage
      • -
      • "WARNING" Warning: Value pulp.pulpproject.org/v1beta1, Kind=PulpRestore: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for cluster
      • @@ -19830,29 +19851,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +
        -
        -

        For pulp-operator.v0.3.0:

        - +
        +

        For cloud-native-postgresql.v1.7.1:

        -

      • "WARNING" (pulp-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (cloud-native-postgresql.v1.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -19862,79 +19881,85 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (300)
      chaosblade-operatorklusterlet -

      NOT COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For chaosblade-operator.v0.5.1:

        - -

      • "ERROR" chaosblades.chaosblade.io does not have a status descriptor
      • +

        For klusterlet.v0.4.0:

        -

      • "ERROR" experiments does not have a spec descriptor
      • +
      • "ERROR" klusterlets.operator.open-cluster-management.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" externalServerURLs does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for experiments
      • +
      • "ERROR" namespace does not have a spec descriptor
      • + +
      • "ERROR" registrationImagePullSpec does not have a spec descriptor
      • + +
      • "ERROR" workImagePullSpec does not have a spec descriptor
      • + +
      • "ERROR" clusterName does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for externalServerURLs
      • + +
      • "WARNING" Add a spec descriptor for namespace
      • + +
      • "WARNING" Add a spec descriptor for registrationImagePullSpec
      • + +
      • "WARNING" Add a spec descriptor for workImagePullSpec
      • + +
      • "WARNING" Add a spec descriptor for clusterName
      • @@ -19945,25 +19970,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For chaosblade-operator.v0.5.1:

        +

        For klusterlet.v0.4.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["chaosblades.chaosblade.io"])
      • +
      • "WARNING" (klusterlet.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -19973,45 +19998,35 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (700)
      composable-operatorkube-arangodb -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -20019,42 +20034,76 @@
      Grade

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For kube-arangodb.v1.0.2:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" arangodeployments.database.arangodb.com does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for ArangoDeployment/v1
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackupPolicy: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackup: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value replication.database.arangodb.com/v1, Kind=ArangoDeploymentReplication: provided API should have an example annotation
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For composable-operator.v0.1.3:

        +

        For kube-arangodb.v1.0.2:

        -

      • "WARNING" (composable-operator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["composables.ibmcloud.ibm.com"])
      • +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -20064,125 +20113,81 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade D
      (200)
      datadog-operatorminio-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For datadog-operator.v0.6.0:

        - -

      • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
      • - -
      • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
      • - -
      • "ERROR" datadogmonitors.datadoghq.com does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" clusterChecksRunner does not have a spec descriptor
      • - -
      • "ERROR" clusterName does not have a spec descriptor
      • - -
      • "ERROR" credentials does not have a spec descriptor
      • - -
      • "ERROR" agent does not have a spec descriptor
      • - -
      • "ERROR" clusterAgent does not have a spec descriptor
      • - -
      • "ERROR" query does not have a spec descriptor
      • - -
      • "ERROR" tags does not have a spec descriptor
      • - -
      • "ERROR" title does not have a spec descriptor
      • - -
      • "ERROR" type does not have a spec descriptor
      • - -
      • "ERROR" message does not have a spec descriptor
      • - -
      • "ERROR" query does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `title` in DatadogMonitor/v1alpha1
      • +

        For minio-operator.v1.0.3:

        -

      • "WARNING" Add a spec descriptor for clusterChecksRunner
      • +
      • "ERROR" error spec does not exist
      • -
      • "WARNING" Add a spec descriptor for clusterName
      • +
      • "ERROR" Error: Value /v1, Kind=Secret: example must have a provided API
      • -
      • "WARNING" Add a spec descriptor for credentials
      • +
      • "ERROR" Failed to find an owned CRD for CR minio-creds-secret with GVK /v1, Kind=Secret
      • -
      • "WARNING" Add a spec descriptor for agent
      • +
      • "ERROR" minioinstances.miniocontroller.min.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for clusterAgent
      • +
      • "ERROR" requestAutoCert does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for query
      • +
      • "ERROR" credsSecret does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for tags
      • -
      • "WARNING" Add a spec descriptor for title
      • +
      • "WARNING" Add a spec descriptor for requestAutoCert
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for credsSecret
      • -
      • "WARNING" Add a spec descriptor for message
      • +
      • "WARNING" Add CRD validation for spec field `credsSecret` in MinIOInstance/v1beta1
      • -
      • "WARNING" Add a spec descriptor for query
      • +
      • "WARNING" Add CRD validation for spec field `requestAutoCert` in MinIOInstance/v1beta1
      • @@ -20191,29 +20196,29 @@
        Grade
      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For datadog-operator.v0.6.0:

        +

        For minio-operator.v1.0.3:

        +

      • "ERROR" example must have a provided API
      • -
      • "WARNING" (datadog-operator.v0.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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" "datadogmonitors.datadoghq.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["minioinstances.miniocontroller.min.io"])
      • @@ -20223,33 +20228,35 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      intel-device-plugins-operatormongodb-atlas-kubernetes

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • +
      • beta
      • +
      @@ -20257,11 +20264,11 @@
      Grade

      NOT USED

      @@ -20271,327 +20278,128 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For intel-device-plugins-operator.v0.21.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" dsadeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • - -
      • "ERROR" fpgadeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • - -
      • "ERROR" gpudeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • - -
      • "ERROR" qatdeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • - -
      • "ERROR" sgxdeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • - -
      • "ERROR" logLevel does not have a spec descriptor
      • - -
      • "ERROR" sharedDevNum does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" nodeSelector does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" initImage does not have a spec descriptor
      • - -
      • "ERROR" logLevel does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" initImage does not have a spec descriptor
      • - -
      • "ERROR" logLevel does not have a spec descriptor
      • - -
      • "ERROR" nodeSelector does not have a spec descriptor
      • - -
      • "ERROR" sharedDevNum does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" kernelVfDrivers does not have a spec descriptor
      • - -
      • "ERROR" logLevel does not have a spec descriptor
      • - -
      • "ERROR" maxNumDevices does not have a spec descriptor
      • - -
      • "ERROR" nodeSelector does not have a spec descriptor
      • - -
      • "ERROR" dpdkDriver does not have a spec descriptor
      • - -
      • "ERROR" nodeSelector does not have a spec descriptor
      • - -
      • "ERROR" provisionLimit does not have a spec descriptor
      • - -
      • "ERROR" enclaveLimit does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" initImage does not have a spec descriptor
      • - -
      • "ERROR" logLevel does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" afuId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - -
      • "ERROR" interfaceId does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for logLevel
      • - -
      • "WARNING" Add a spec descriptor for sharedDevNum
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for nodeSelector
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for initImage
      • - -
      • "WARNING" Add a spec descriptor for logLevel
      • - -
      • "WARNING" Add a spec descriptor for mode
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for initImage
      • - -
      • "WARNING" Add a spec descriptor for logLevel
      • +

        For mongodb-atlas-kubernetes.v0.4.0:

        -

      • "WARNING" Add a spec descriptor for nodeSelector
      • +
      • "ERROR" atlasclusters.atlas.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for sharedDevNum
      • +
      • "ERROR" atlasdatabaseusers.atlas.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "ERROR" atlasprojects.atlas.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for kernelVfDrivers
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for logLevel
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for maxNumDevices
      • +
      • "ERROR" projectRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nodeSelector
      • +
      • "ERROR" providerSettings does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for dpdkDriver
      • +
      • "ERROR" databaseName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nodeSelector
      • +
      • "ERROR" passwordSecretRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for provisionLimit
      • +
      • "ERROR" projectRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for enclaveLimit
      • +
      • "ERROR" roles does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "ERROR" username does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for initImage
      • +
      • "ERROR" connectionSecretRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for logLevel
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "ERROR" projectIpAccessList does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for projectRef
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for providerSettings
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for databaseName
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for passwordSecretRef
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for projectRef
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for roles
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for username
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for connectionSecretRef
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for projectIpAccessList
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
        +

        For mongodb-atlas-kubernetes.v0.6.1:

        -

      • "WARNING" Add a spec descriptor for mode
      • +
      • "ERROR" atlasclusters.atlas.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "ERROR" atlasdatabaseusers.atlas.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "ERROR" atlasprojects.atlas.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "ERROR" projectRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "ERROR" providerSettings does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "ERROR" databaseName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "ERROR" passwordSecretRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "ERROR" projectRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "ERROR" roles does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "ERROR" username does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "ERROR" projectIpAccessList does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for mode
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for projectRef
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for providerSettings
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for databaseName
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for passwordSecretRef
      • -
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for projectRef
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for roles
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for username
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for projectIpAccessList
      • @@ -20600,29 +20408,34 @@
        Grade
      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For intel-device-plugins-operator.v0.21.0:

        +

        For mongodb-atlas-kubernetes.v0.4.0:

        -

      • "ERROR" (intel-device-plugins-operator.v0.21.0) csv.Metadata.Annotations["categories"] value Drivers and plugins is not in the set of default categories
      • +
      • "WARNING" (mongodb-atlas-kubernetes.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + + +
        +

        For mongodb-atlas-kubernetes.v0.6.1:

        -

      • "WARNING" (intel-device-plugins-operator.v0.21.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" (mongodb-atlas-kubernetes.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -20632,28 +20445,28 @@
        Grade

      NOT USED

      Grade C
      (500)
      Grade B
      (600)
      starboard-operatoroneagent -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -20666,46 +20479,40 @@
        Grade

      NOT USED

      NOT USED

      USED

      -

      ERRORS AND WARNINGS

      +

      ONLY ERRORS

      - +Info -
      + +Info +

        -

        For starboard-operator.v0.11.0:

        +

        For dynatrace-monitoring.v0.10.1:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Warning: Value aquasecurity.github.io/v1alpha1, Kind=VulnerabilityReport: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value aquasecurity.github.io/v1alpha1, Kind=ConfigAuditReport: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value aquasecurity.github.io/v1alpha1, Kind=CISKubeBenchReport: provided API should have an example annotation
      • -
      @@ -20715,31 +20522,25 @@
      Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For starboard-operator.v0.11.0:

        - - -

      • "WARNING" (starboard-operator.v0.11.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For dynatrace-monitoring.v0.10.1:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -20749,28 +20550,28 @@
        Grade

      NOT USED

      Grade C
      (500)
      Grade D
      (200)
      tackle-operatorpostgresql-operator-dev4devs-com -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -20783,11 +20584,11 @@
        Grade

      NOT USED

      @@ -20795,82 +20596,40 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For tackle-operator.v1.0.0:

        - -

      • "ERROR" tackles.tackle.io does not have a status descriptor
      • - -
      • "ERROR" error spec does not exist
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - - -
        -

        For tackle-operator.v1.0.0:

        - -

      • "ERROR" tackles.tackle.io does not have a status descriptor
      • - -
      • "ERROR" error spec does not exist
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - - - -
      -
      -
      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For tackle-operator.v1.0.0:

        - -

      • "ERROR" (tackle-operator.v1.0.0) csv.Metadata.Annotations["categories"] value Modernization & Migration is not in the set of default categories
      • - - -
      • "WARNING" (tackle-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - - -
        -

        For tackle-operator.v1.0.0:

        - -

      • "ERROR" (tackle-operator.v1.0.0) csv.Metadata.Annotations["categories"] value Modernization & Migration is not in the set of default categories
      • +

        For postgresql-operator.v0.1.1:

        -

      • "WARNING" (tackle-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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.dev4devs.com" "databases.postgresql.dev4devs.com"])
      • @@ -20880,28 +20639,28 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade D
      (300)
      prometheus-exporter-operatorchaosblade-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -20914,11 +20673,11 @@
        Grade

      NOT USED

      @@ -20928,43 +20687,31 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For prometheus-exporter-operator.v0.2.4:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" grafanaDashboard does not have a spec descriptor
      • - -
      • "ERROR" type does not have a spec descriptor
      • - -
      • "ERROR" dbHost does not have a spec descriptor
      • - -
      • "ERROR" dbPort does not have a spec descriptor
      • - -
      • "ERROR" prometheusexporters.monitoring.3scale.net does not have a status descriptor
      • +

        For chaosblade-operator.v0.5.1:

        +

      • "ERROR" chaosblades.chaosblade.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for grafanaDashboard
      • +
      • "ERROR" experiments does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for dbHost
      • -
      • "WARNING" Add a spec descriptor for dbPort
      • +
      • "WARNING" Add a spec descriptor for experiments
      • @@ -20975,27 +20722,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For prometheus-exporter-operator.v0.2.4:

        - +

        For chaosblade-operator.v0.5.1:

        -

      • "WARNING" (prometheus-exporter-operator.v0.2.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["prometheusexporters.monitoring.3scale.net"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["chaosblades.chaosblade.io"])
      • @@ -21009,41 +20754,31 @@
        Grade
      spinnaker-operatorcouchbase-enterprise -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -21053,53 +20788,111 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For spinnaker-operator.v1.20.3:

        +

        For couchbase-operator.v2.1.0:

        -

      • "ERROR" spinnakerFeatureFlags does not have a spec descriptor
      • +
      • "ERROR" upgradeStrategy does not have a spec descriptor
      • -
      • "ERROR" minio does not have a spec descriptor
      • +
      • "ERROR" monitoring does not have a spec descriptor
      • -
      • "ERROR" rbac does not have a spec descriptor
      • +
      • "ERROR" enablePreviewScaling does not have a spec descriptor
      • -
      • "ERROR" serviceAccount does not have a spec descriptor
      • +
      • "ERROR" cluster does not have a spec descriptor
      • -
      • "ERROR" halyard does not have a spec descriptor
      • +
      • "ERROR" recoveryPolicy does not have a spec descriptor
      • -
      • "ERROR" dockerRegistries does not have a spec descriptor
      • +
      • "ERROR" logRetentionTime does not have a spec descriptor
      • -
      • "ERROR" spinnakeroperators.charts.helm.k8s.io does not have a status descriptor
      • +
      • "ERROR" hibernate does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" hibernationStrategy does not have a spec descriptor
      • +
      • "ERROR" xdcr does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for spinnakerFeatureFlags
      • +
      • "ERROR" logRetentionCount does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for minio
      • +
      • "ERROR" backup does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for rbac
      • +
      • "ERROR" start does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceAccount
      • +
      • "ERROR" end does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for halyard
      • +
      • "ERROR" logRetention does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for dockerRegistries
      • +
      • "ERROR" servers does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for SpinnakerOperator/v1alpha1
      • +
      • "ERROR" couchbasebuckets.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbaseephemeralbuckets.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbasememcachedbuckets.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbaseusers.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbasegroups.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbaserolebindings.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbasereplications.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbasebackups.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbasebackuprestores.couchbase.com does not have a status descriptor
      • + +
      • "ERROR" couchbaseautoscalers.couchbase.com does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `logRetentionTime` in CouchbaseCluster/v2
      • + +
      • "WARNING" Add CRD validation for spec field `logRetentionCount` in CouchbaseCluster/v2
      • + +
      • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackup/v2
      • + +
      • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackupRestore/v2
      • + +
      • "WARNING" Add a spec descriptor for upgradeStrategy
      • + +
      • "WARNING" Add a spec descriptor for monitoring
      • + +
      • "WARNING" Add a spec descriptor for enablePreviewScaling
      • + +
      • "WARNING" Add a spec descriptor for cluster
      • + +
      • "WARNING" Add a spec descriptor for recoveryPolicy
      • + +
      • "WARNING" Add a spec descriptor for logRetentionTime
      • + +
      • "WARNING" Add a spec descriptor for hibernate
      • + +
      • "WARNING" Add a spec descriptor for hibernationStrategy
      • + +
      • "WARNING" Add a spec descriptor for xdcr
      • + +
      • "WARNING" Add a spec descriptor for logRetentionCount
      • + +
      • "WARNING" Add a spec descriptor for backup
      • + +
      • "WARNING" Add a spec descriptor for start
      • + +
      • "WARNING" Add a spec descriptor for end
      • + +
      • "WARNING" Add a spec descriptor for logRetention
      • + +
      • "WARNING" Add a spec descriptor for servers
      • @@ -21110,27 +20903,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For spinnaker-operator.v1.20.3:

        - +

        For couchbase-operator.v2.1.0:

        -

      • "WARNING" (spinnaker-operator.v1.20.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -21140,28 +20931,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (200)
      vault-helmknative-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -21174,185 +20965,233 @@
        Grade

      NOT USED

      - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        - - -
        -

        For vault-helm.v0.0.2:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" global does not have a spec descriptor
      • - -
      • "ERROR" injector does not have a spec descriptor
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" ui does not have a spec descriptor
      • - -
      • "ERROR" vaults.vault.sdbrett.com does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for global
      • - -
      • "WARNING" Add a spec descriptor for injector
      • - -
      • "WARNING" Add a spec descriptor for server
      • - -
      • "WARNING" Add a spec descriptor for ui
      • - -
      • "WARNING" Add CRD validation for spec field `injector` in Vault/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `server` in Vault/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `ui` in Vault/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `global` in Vault/v1alpha1
      • - - - -
      -
      +

      NOT USED

      -

      ONLY WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For vault-helm.v0.0.2:

        - - -

      • "WARNING" (vault-helm.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["vaults.vault.sdbrett.com"])
      • - - - -
      -
      +
      +

      PASS

      +

      NOT USED

      Grade D
      (200)
      Grade B
      (800)
      apimatic-kubernetes-operatormetering-upstream -

      COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      USED

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For metering-operator-upstream.v4.2.0:

        + +

      • "ERROR" storage does not have a spec descriptor
      • + +
      • "ERROR" query does not have a spec descriptor
      • + +
      • "ERROR" schedule does not have a spec descriptor
      • + +
      • "ERROR" columns does not have a spec descriptor
      • + +
      • "ERROR" inputs does not have a spec descriptor
      • + +
      • "ERROR" query does not have a spec descriptor
      • + +
      • "ERROR" prometheusMetricsImporter does not have a spec descriptor
      • + +
      • "ERROR" hive does not have a spec descriptor
      • + +
      • "ERROR" catalog does not have a spec descriptor
      • + +
      • "ERROR" unmanaged does not have a spec descriptor
      • + +
      • "ERROR" columns does not have a spec descriptor
      • + +
      • "ERROR" createTableAs does not have a spec descriptor
      • + +
      • "ERROR" query does not have a spec descriptor
      • + +
      • "ERROR" schema does not have a spec descriptor
      • + +
      • "ERROR" tableName does not have a spec descriptor
      • + +
      • "ERROR" columns does not have a spec descriptor
      • + +
      • "ERROR" databaseName does not have a spec descriptor
      • + +
      • "ERROR" external does not have a spec descriptor
      • + +
      • "ERROR" fileFormat does not have a spec descriptor
      • + +
      • "ERROR" location does not have a spec descriptor
      • + +
      • "ERROR" rowFormat does not have a spec descriptor
      • + +
      • "ERROR" tableName does not have a spec descriptor
      • + +
      • "ERROR" meteringconfigs.metering.openshift.io does not have a status descriptor
      • + +
      • "ERROR" reports.metering.openshift.io does not have a status descriptor
      • + +
      • "ERROR" reportqueries.metering.openshift.io does not have a status descriptor
      • + +
      • "ERROR" reportdatasources.metering.openshift.io does not have a status descriptor
      • + +
      • "ERROR" storagelocations.metering.openshift.io does not have a status descriptor
      • + +
      • "ERROR" prestotables.metering.openshift.io does not have a status descriptor
      • + +
      • "ERROR" hivetables.metering.openshift.io does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for storage
      • + +
      • "WARNING" Add a spec descriptor for query
      • + +
      • "WARNING" Add a spec descriptor for schedule
      • + +
      • "WARNING" Add a spec descriptor for columns
      • + +
      • "WARNING" Add a spec descriptor for inputs
      • + +
      • "WARNING" Add a spec descriptor for query
      • + +
      • "WARNING" Add a spec descriptor for prometheusMetricsImporter
      • + +
      • "WARNING" Add a spec descriptor for hive
      • + +
      • "WARNING" Add a spec descriptor for catalog
      • + +
      • "WARNING" Add a spec descriptor for unmanaged
      • + +
      • "WARNING" Add a spec descriptor for columns
      • + +
      • "WARNING" Add a spec descriptor for createTableAs
      • + +
      • "WARNING" Add a spec descriptor for query
      • + +
      • "WARNING" Add a spec descriptor for schema
      • + +
      • "WARNING" Add a spec descriptor for tableName
      • + +
      • "WARNING" Add a spec descriptor for columns
      • + +
      • "WARNING" Add a spec descriptor for databaseName
      • + +
      • "WARNING" Add a spec descriptor for external
      • + +
      • "WARNING" Add a spec descriptor for fileFormat
      • + +
      • "WARNING" Add a spec descriptor for location
      • + +
      • "WARNING" Add a spec descriptor for rowFormat
      • + +
      • "WARNING" Add a spec descriptor for tableName
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For apimatic-kubernetes-operator.v0.0.1:

        +

        For metering-operator-upstream.v4.2.0:

        -

      • "WARNING" (apimatic-kubernetes-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hivetables.metering.openshift.io" "meteringconfigs.metering.openshift.io" "prestotables.metering.openshift.io" "reportdatasources.metering.openshift.io" "reportqueries.metering.openshift.io" "reports.metering.openshift.io" "storagelocations.metering.openshift.io"])
      • @@ -21362,33 +21201,31 @@
        Grade

      NOT USED

      Grade B
      (800)
      Grade D
      (200)
      awss3-operator-registrysplunk -

      PARTIAL COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • original
      • -
      • alpha
      @@ -21398,11 +21235,11 @@
      Grade

      NOT USED

      @@ -21412,68 +21249,45 @@
      Grade

      ERRORS AND WARNINGS

      - - +Info -
      -
        - - -
        -

        For awss3operator.v1.0.0:

        - -

      • "ERROR" generateBucketName does not have a spec descriptor
      • - -
      • "ERROR" bucketName does not have a spec descriptor
      • - -
      • "ERROR" storageClassName does not have a spec descriptor
      • - -
      • "ERROR" Connection does not have a spec descriptor
      • - -
      • "ERROR" claimRef does not have a spec descriptor
      • - -
      • "ERROR" reclaimPolicy does not have a spec descriptor
      • - -
      • "ERROR" storageClassName does not have a spec descriptor
      • - -
      • "ERROR" objectbucketclaims.objectbucket.io does not have a status descriptor
      • - -
      • "ERROR" objectbuckets.objectbucket.io does not have a status descriptor
      • - -
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • + } + + + +Info +
        +
          + +
          +

          For splunk.v0.1.0:

          -

        • "WARNING" Add a spec descriptor for generateBucketName
        • +
        • "ERROR" replicas does not have a spec descriptor
        • -
        • "WARNING" Add a spec descriptor for bucketName
        • +
        • "ERROR" replicas does not have a spec descriptor
        • -
        • "WARNING" Add a spec descriptor for storageClassName
        • +
        • "ERROR" replicas does not have a spec descriptor
        • -
        • "WARNING" Add a spec descriptor for Connection
        • +
        • "ERROR" indexerclusters.enterprise.splunk.com does not have a status descriptor
        • -
        • "WARNING" Add a spec descriptor for claimRef
        • +
        • "ERROR" licensemasters.enterprise.splunk.com does not have a status descriptor
        • -
        • "WARNING" Add a spec descriptor for reclaimPolicy
        • +
        • "ERROR" searchheadclusters.enterprise.splunk.com does not have a status descriptor
        • -
        • "WARNING" Add a spec descriptor for storageClassName
        • +
        • "ERROR" sparks.enterprise.splunk.com does not have a status descriptor
        • -
        • "WARNING" Add CRD validation for ObjectBucketClaim/v1alpha1
        • +
        • "ERROR" standalones.enterprise.splunk.com does not have a status descriptor
        • -
        • "WARNING" Add CRD validation for ObjectBucket/v1alpha1
        • +
        • "WARNING" Add a spec descriptor for replicas
        • -
          -

          For awss3operator.v1.0.1:

          +

        • "WARNING" Add a spec descriptor for replicas
        • +
        • "WARNING" Add a spec descriptor for replicas
        • @@ -21484,34 +21298,25 @@
          Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For awss3operator.v1.0.0:

        - - -

      • "WARNING" (awss3operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["objectbucketclaims.objectbucket.io" "objectbuckets.objectbucket.io"])
      • - - -
        -

        For awss3operator.v1.0.1:

        +

        For splunk.v0.1.0:

        -

      • "WARNING" (awss3operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -21521,45 +21326,35 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      clickhousestorageos -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • latest
      • - -
      -
      -

      NOT USED

      @@ -21567,99 +21362,31 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For clickhouse-operator.v0.15.0:

        - -

      • "ERROR" clickhouseinstallations.clickhouse.altinity.com does not have a status descriptor
      • - -
      • "ERROR" clickhouseinstallationtemplates.clickhouse.altinity.com does not have a status descriptor
      • - -
      • "ERROR" clickhouseoperatorconfigurations.clickhouse.altinity.com does not have a status descriptor
      • - -
      • "ERROR" configuration does not have a spec descriptor
      • - -
      • "ERROR" configuration does not have a spec descriptor
      • - -
      • "ERROR" chiTemplatesPath does not have a spec descriptor
      • - -
      • "ERROR" onStatefulSetCreateFailureAction does not have a spec descriptor
      • - -
      • "ERROR" chConfigUserDefaultProfile does not have a spec descriptor
      • - -
      • "ERROR" chConfigUserDefaultQuota does not have a spec descriptor
      • - -
      • "ERROR" chConfigUserDefaultPassword does not have a spec descriptor
      • - -
      • "ERROR" chUsername does not have a spec descriptor
      • - -
      • "ERROR" chCommonConfigsPath does not have a spec descriptor
      • - -
      • "ERROR" chHostConfigsPath does not have a spec descriptor
      • - -
      • "ERROR" statefulSetUpdatePollPeriod does not have a spec descriptor
      • - -
      • "ERROR" onStatefulSetUpdateFailureAction does not have a spec descriptor
      • - -
      • "ERROR" chConfigUserDefaultNetworksIP does not have a spec descriptor
      • - -
      • "ERROR" chUsersConfigsPath does not have a spec descriptor
      • - -
      • "ERROR" chPort does not have a spec descriptor
      • - -
      • "ERROR" statefulSetUpdateTimeout does not have a spec descriptor
      • - -
      • "ERROR" chPassword does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for configuration
      • - -
      • "WARNING" Add a spec descriptor for configuration
      • - -
      • "WARNING" Add a spec descriptor for chiTemplatesPath
      • - -
      • "WARNING" Add a spec descriptor for onStatefulSetCreateFailureAction
      • - -
      • "WARNING" Add a spec descriptor for chConfigUserDefaultProfile
      • - -
      • "WARNING" Add a spec descriptor for chConfigUserDefaultQuota
      • - -
      • "WARNING" Add a spec descriptor for chConfigUserDefaultPassword
      • - -
      • "WARNING" Add a spec descriptor for chUsername
      • - -
      • "WARNING" Add a spec descriptor for chCommonConfigsPath
      • - -
      • "WARNING" Add a spec descriptor for chHostConfigsPath
      • - -
      • "WARNING" Add a spec descriptor for statefulSetUpdatePollPeriod
      • - -
      • "WARNING" Add a spec descriptor for onStatefulSetUpdateFailureAction
      • - -
      • "WARNING" Add a spec descriptor for chConfigUserDefaultNetworksIP
      • +

        For storageosoperator.v2.4.2:

        -

      • "WARNING" Add a spec descriptor for chUsersConfigsPath
      • -
      • "WARNING" Add a spec descriptor for chPort
      • +
      • "WARNING" Warning: Value storageos.com/v1, Kind=Job: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for statefulSetUpdateTimeout
      • +
      • "WARNING" Warning: Value storageos.com/v1, Kind=StorageOSUpgrade: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for chPassword
      • +
      • "WARNING" Warning: Value storageos.com/v1, Kind=NFSServer: provided API should have an example annotation
      • @@ -21670,25 +21397,31 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For clickhouse-operator.v0.15.0:

        +

        For storageosoperator.v2.4.2:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clickhouseinstallations.clickhouse.altinity.com" "clickhouseinstallationtemplates.clickhouse.altinity.com" "clickhouseoperatorconfigurations.clickhouse.altinity.com"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageosclusters.storageos.com" "jobs.storageos.com" "nfsservers.storageos.com" "storageosupgrades.storageos.com"])
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -21698,28 +21431,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (300)
      ibmcloud-iam-operatorpostgresql-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -21732,11 +21465,11 @@
        Grade

      NOT USED

      @@ -21744,42 +21477,72 @@
      Grade

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For postgresql-operator.v0.0.1:

        + +

      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" postgresqls.postgresql.example.com does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for Postgresql/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for size
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ibmcloud-iam-operator.v0.1.0:

        +

        For postgresql-operator.v0.0.1:

        -

      • "WARNING" (ibmcloud-iam-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (postgresql-operator.v0.0.1) csv.Spec.Icon not specified
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["accessgroups.ibmcloud.ibm.com" "accesspolicies.ibmcloud.ibm.com" "authorizationpolicies.ibmcloud.ibm.com" "customroles.ibmcloud.ibm.com"])
      • +
      • "WARNING" (postgresql-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["postgresqls.postgresql.example.com"])
      • @@ -21789,28 +21552,28 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade D
      (100)
      taggersigstore-helm-operator

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -21823,11 +21586,11 @@
        Grade

      NOT USED

      @@ -21837,39 +21600,33 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For tagger.v2.1.17:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" from does not have a spec descriptor
      • - -
      • "ERROR" generation does not have a spec descriptor
      • +

        For sigstore-helm-operator.v0.0.1:

        -

      • "ERROR" mirror does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      • "ERROR" tags.tagger.dev does not have a status descriptor
      • +
      • "ERROR" rekors.helm.sigstore.dev does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for from
      • -
      • "WARNING" Add a spec descriptor for generation
      • +
      • "WARNING" Add CRD validation for spec field `server` in Rekor/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for mirror
      • +
      • "WARNING" Add a spec descriptor for server
      • @@ -21880,25 +21637,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For tagger.v2.1.17:

        +

        For sigstore-helm-operator.v0.0.1:

        -

      • "WARNING" (tagger.v2.1.17) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (sigstore-helm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -21912,24 +21669,24 @@
        Grade
      zoperatorakka-cluster-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -21942,11 +21699,11 @@
        Grade

      NOT USED

      @@ -21954,42 +21711,58 @@
      Grade

      NOT USED

      -

      PASS

      +

      ONLY WARNINGS

      + +Info +
      +
        + + +
        +

        For akka-cluster-operator.v1.0.0:

        + + +

      • "WARNING" Add CRD validation for spec field `replicas` in AkkaCluster/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `template` in AkkaCluster/v1alpha1
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For zoperator.v0.3.6:

        - +

        For akka-cluster-operator.v1.0.0:

        -

      • "WARNING" (zoperator.v0.3.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -21999,276 +21772,529 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade D
      (200)
      elastic-cloud-eckcockroachdb -

      PARTIAL COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      -

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For elastic-cloud-eck.v1.3.0:

        + +
        +

        For cockroachdb.v3.0.7:

        + +

      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" service does not have a spec descriptor
      • + +
      • "ERROR" storage does not have a spec descriptor
      • + +
      • "ERROR" init does not have a spec descriptor
      • + +
      • "ERROR" tls does not have a spec descriptor
      • + +
      • "ERROR" networkPolicy does not have a spec descriptor
      • + +
      • "ERROR" labels does not have a spec descriptor
      • + +
      • "ERROR" clusterDomain does not have a spec descriptor
      • + +
      • "ERROR" conf does not have a spec descriptor
      • + +
      • "ERROR" statefulset does not have a spec descriptor
      • + +
      • "ERROR" cockroachdbs.charts.helm.k8s.io does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `labels` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `conf` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `storage` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `tls` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `networkPolicy` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `image` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `clusterDomain` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `statefulset` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `service` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `init` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for service
      • + +
      • "WARNING" Add a spec descriptor for storage
      • + +
      • "WARNING" Add a spec descriptor for init
      • + +
      • "WARNING" Add a spec descriptor for tls
      • + +
      • "WARNING" Add a spec descriptor for networkPolicy
      • + +
      • "WARNING" Add a spec descriptor for labels
      • + +
      • "WARNING" Add a spec descriptor for clusterDomain
      • + +
      • "WARNING" Add a spec descriptor for conf
      • + +
      • "WARNING" Add a spec descriptor for statefulset
      • + + +
        +

        For cockroachdb.v5.0.4:

        + +

      • "ERROR" cockroachdbs.charts.operatorhub.io does not have a status descriptor
      • + +
      • "ERROR" labels does not have a spec descriptor
      • + +
      • "ERROR" networkPolicy does not have a spec descriptor
      • + +
      • "ERROR" tls does not have a spec descriptor
      • + +
      • "ERROR" conf does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" init does not have a spec descriptor
      • + +
      • "ERROR" serviceMonitor does not have a spec descriptor
      • + +
      • "ERROR" statefulset does not have a spec descriptor
      • + +
      • "ERROR" storage does not have a spec descriptor
      • + +
      • "ERROR" clusterDomain does not have a spec descriptor
      • + +
      • "ERROR" ingress does not have a spec descriptor
      • + +
      • "ERROR" service does not have a spec descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `ingress` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `init` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `networkPolicy` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `serviceMonitor` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `statefulset` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `tls` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `clusterDomain` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `conf` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `image` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `labels` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `service` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `storage` in Cockroachdb/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for labels
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for networkPolicy
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for tls
      • -
      • "ERROR" nodeSets does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for conf
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "ERROR" count does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for init
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for serviceMonitor
      • -
      • "ERROR" podTemplate does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for statefulset
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for storage
      • -
      • "ERROR" count does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for clusterDomain
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ingress
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for service
      • -
      • "ERROR" config does not have a spec descriptor
      • -
      • "ERROR" count does not have a spec descriptor
      • +
        +

        For cockroachdb.v2.1.11:

        -

      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "ERROR" cockroachdbs.charts.helm.k8s.io does not have a status descriptor
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "ERROR" ImageTag does not have a spec descriptor
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "ERROR" PodManagementPolicy does not have a spec descriptor
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "ERROR" Tolerations does not have a spec descriptor
      • -
      • "ERROR" deployment does not have a spec descriptor
      • +
      • "ERROR" Replicas does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" HttpName does not have a spec descriptor
      • -
      • "ERROR" elasticsearches.elasticsearch.k8s.elastic.co does not have a status descriptor
      • +
      • "ERROR" Resources does not have a spec descriptor
      • -
      • "ERROR" kibanas.kibana.k8s.elastic.co does not have a status descriptor
      • +
      • "ERROR" CacheSize does not have a spec descriptor
      • -
      • "ERROR" apmservers.apm.k8s.elastic.co does not have a status descriptor
      • +
      • "ERROR" Name does not have a spec descriptor
      • -
      • "ERROR" enterprisesearches.enterprisesearch.k8s.elastic.co does not have a status descriptor
      • +
      • "ERROR" MaxUnavailable does not have a spec descriptor
      • -
      • "ERROR" beats.beat.k8s.elastic.co does not have a status descriptor
      • +
      • "ERROR" InternalGrpcPort does not have a spec descriptor
      • +
      • "ERROR" ExternalGrpcName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" ClusterDomain does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for nodeSets
      • +
      • "ERROR" NetworkPolicy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" Secure does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for count
      • +
      • "ERROR" Component does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • +
      • "ERROR" ExternalGrpcPort does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for podTemplate
      • +
      • "ERROR" Image does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" InternalGrpcName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for count
      • +
      • "ERROR" StorageClass does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • +
      • "ERROR" Service does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" UpdateStrategy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "ERROR" ImagePullPolicy does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for count
      • +
      • "ERROR" NodeSelector does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • +
      • "ERROR" ExternalHttpPort does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" MaxSQLMemory does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • +
      • "ERROR" InternalHttpPort does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "ERROR" InitPodResources does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for deployment
      • +
      • "ERROR" Storage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add CRD validation for Cockroachdb/v1alpha1
      • -
        -

        For elastic-cloud-eck.v1.7.1:

        +

      • "WARNING" Add a spec descriptor for ImageTag
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for PodManagementPolicy
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Tolerations
      • -
      • "ERROR" nodeSets does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Replicas
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for HttpName
      • -
      • "ERROR" podTemplate does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Resources
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for CacheSize
      • -
      • "ERROR" count does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Name
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for MaxUnavailable
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for InternalGrpcPort
      • -
      • "ERROR" count does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ExternalGrpcName
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ClusterDomain
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for NetworkPolicy
      • -
      • "ERROR" count does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Secure
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Component
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ExternalGrpcPort
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Image
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for InternalGrpcName
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for StorageClass
      • -
      • "ERROR" deployment does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for Service
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for UpdateStrategy
      • -
      • "ERROR" elasticsearchRefs does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ImagePullPolicy
      • -
      • "ERROR" daemonSet does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for NodeSelector
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ExternalHttpPort
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for MaxSQLMemory
      • -
      • "ERROR" count does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for InternalHttpPort
      • -
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for InitPodResources
      • -
      • "ERROR" elasticsearches.elasticsearch.k8s.elastic.co does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for Storage
      • -
      • "ERROR" kibanas.kibana.k8s.elastic.co does not have a status descriptor
      • -
      • "ERROR" apmservers.apm.k8s.elastic.co does not have a status descriptor
      • -
      • "ERROR" enterprisesearches.enterprisesearch.k8s.elastic.co does not have a status descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" beats.beat.k8s.elastic.co does not have a status descriptor
      • -
      • "ERROR" agents.agent.k8s.elastic.co does not have a status descriptor
      • +
        +

        For cockroachdb.v3.0.7:

        -

      • "ERROR" elasticmapsservers.maps.k8s.elastic.co does not have a status descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cockroachdbs.charts.helm.k8s.io"])
      • -
      • "WARNING" Add a spec descriptor for version
      • -
      • "WARNING" Add a spec descriptor for nodeSets
      • +
        +

        For cockroachdb.v5.0.4:

        -

      • "WARNING" Add a spec descriptor for elasticsearchRef
      • -
      • "WARNING" Add a spec descriptor for podTemplate
      • -
      • "WARNING" Add a spec descriptor for version
      • +
        +

        For cockroachdb.v2.1.11:

        -

      • "WARNING" Add a spec descriptor for count
      • -
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cockroachdbs.charts.helm.k8s.io"])
      • -
      • "WARNING" Add a spec descriptor for version
      • -
      • "WARNING" Add a spec descriptor for count
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      +
      + +

      NOT USED

      Grade B
      (700)
      hedvig-operator +

      NOT COMPLY

      +
      +

      COMPLY

      + + +
      +

      NOT USED

      + + +

      NOT USED

      +

      PASS

      + + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for count
      • +
        +

        For hedvig-operator.v1.0.1:

        -

      • "WARNING" Add a spec descriptor for elasticsearchRef
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" (hedvig-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • -
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • -
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for deployment
      • +
      +
      + +

      NOT USED

      Grade C
      (400)
      joget-tomcat-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Add a spec descriptor for version
      • + +
        +

        For joget-tomcat-operator.v0.0.1:

        -

      • "WARNING" Add a spec descriptor for elasticsearchRefs
      • +
      • "ERROR" size does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for daemonSet
      • +
      • "ERROR" jogettomcats.apps.joget.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for config
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for version
      • -
      • "WARNING" Add a spec descriptor for count
      • +
      • "WARNING" Add a spec descriptor for size
      • -
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • +
      • "WARNING" Add CRD validation for spec field `size` in JogetTomcat/v1alpha1
      • @@ -22279,30 +22305,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For elastic-cloud-eck.v1.3.0:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apmservers.apm.k8s.elastic.co" "beats.beat.k8s.elastic.co" "elasticsearches.elasticsearch.k8s.elastic.co" "enterprisesearches.enterprisesearch.k8s.elastic.co" "kibanas.kibana.k8s.elastic.co"])
      • - +

        For joget-tomcat-operator.v0.0.1:

        -
        -

        For elastic-cloud-eck.v1.7.1:

        +

      • "WARNING" (joget-tomcat-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -22312,28 +22333,28 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade B
      (600)
      jenkins-operatormcad-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -22344,69 +22365,109 @@
        Grade
      -

      REQUIRED

      +

      NOT USED

      - +Info -
      -

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
        - -
      • jenkins-operator.v0.3.0
      • - -
      -
      -

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For jenkins-operator.v0.3.0:

        +

        For mcad-operator.v0.1.9:

        -

      • "ERROR" jenkins.jenkins.io does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" jenkins.jenkins.io does not have a status descriptor
      • +
      • "ERROR" deploymentName does not have a spec descriptor
      • -
      • "ERROR" master does not have a spec descriptor
      • +
      • "ERROR" imagePullSecret does not have a spec descriptor
      • -
      • "ERROR" seedJobs does not have a spec descriptor
      • +
      • "ERROR" nodeSelector does not have a spec descriptor
      • -
      • "ERROR" master does not have a spec descriptor
      • +
      • "ERROR" volumes does not have a spec descriptor
      • +
      • "ERROR" serviceAccount does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Jenkins/v1alpha2
      • +
      • "ERROR" configMap does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Jenkins/v1alpha2
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for master
      • +
      • "ERROR" loglevel does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for seedJobs
      • +
      • "ERROR" namespace does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for master
      • +
      • "ERROR" replicaCount does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" mcadhelmconfigs.mcad.ibm.com does not have a status descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `loglevel` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `nodeSelector` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `replicaCount` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `resources` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `volumes` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `configMap` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `deploymentName` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `image` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `imagePullSecret` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `namespace` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add CRD validation for spec field `serviceAccount` in MCADHelmConfig/v1beta1
      • + +
      • "WARNING" Add a spec descriptor for deploymentName
      • + +
      • "WARNING" Add a spec descriptor for imagePullSecret
      • + +
      • "WARNING" Add a spec descriptor for nodeSelector
      • + +
      • "WARNING" Add a spec descriptor for volumes
      • + +
      • "WARNING" Add a spec descriptor for serviceAccount
      • + +
      • "WARNING" Add a spec descriptor for configMap
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for loglevel
      • + +
      • "WARNING" Add a spec descriptor for namespace
      • + +
      • "WARNING" Add a spec descriptor for replicaCount
      • + +
      • "WARNING" Add a spec descriptor for resources
      • @@ -22417,25 +22478,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For jenkins-operator.v0.3.0:

        +

        For mcad-operator.v0.1.9:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jenkins.jenkins.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mcadhelmconfigs.mcad.ibm.com"])
      • @@ -22449,31 +22510,29 @@
        Grade
      mongodb-atlas-kubernetesmicrocks -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • -
      • beta
      • -
      @@ -22481,142 +22540,122 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For mongodb-atlas-kubernetes.v0.4.0:

        - -

      • "ERROR" atlasclusters.atlas.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" atlasdatabaseusers.atlas.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" atlasprojects.atlas.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" name does not have a spec descriptor
      • - -
      • "ERROR" projectRef does not have a spec descriptor
      • +

        For microcks-operator.v0.3.0:

        -

      • "ERROR" providerSettings does not have a spec descriptor
      • +
      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • -
      • "ERROR" databaseName does not have a spec descriptor
      • +
      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • -
      • "ERROR" passwordSecretRef does not have a spec descriptor
      • +
      • "ERROR" microcks does not have a spec descriptor
      • -
      • "ERROR" projectRef does not have a spec descriptor
      • +
      • "ERROR" postman does not have a spec descriptor
      • -
      • "ERROR" roles does not have a spec descriptor
      • +
      • "ERROR" keycloak does not have a spec descriptor
      • -
      • "ERROR" username does not have a spec descriptor
      • +
      • "ERROR" mongodb does not have a spec descriptor
      • -
      • "ERROR" connectionSecretRef does not have a spec descriptor
      • +
      • "ERROR" microcks does not have a spec descriptor
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "ERROR" postman does not have a spec descriptor
      • -
      • "ERROR" projectIpAccessList does not have a spec descriptor
      • +
      • "ERROR" keycloak does not have a spec descriptor
      • +
      • "ERROR" mongodb does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for name
      • -
      • "WARNING" Add a spec descriptor for projectRef
      • +
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for providerSettings
      • +
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for databaseName
      • +
      • "WARNING" Add a spec descriptor for microcks
      • -
      • "WARNING" Add a spec descriptor for passwordSecretRef
      • +
      • "WARNING" Add a spec descriptor for postman
      • -
      • "WARNING" Add a spec descriptor for projectRef
      • +
      • "WARNING" Add a spec descriptor for keycloak
      • -
      • "WARNING" Add a spec descriptor for roles
      • +
      • "WARNING" Add a spec descriptor for mongodb
      • -
      • "WARNING" Add a spec descriptor for username
      • +
      • "WARNING" Add a spec descriptor for microcks
      • -
      • "WARNING" Add a spec descriptor for connectionSecretRef
      • +
      • "WARNING" Add a spec descriptor for postman
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for keycloak
      • -
      • "WARNING" Add a spec descriptor for projectIpAccessList
      • +
      • "WARNING" Add a spec descriptor for mongodb

      • -

        For mongodb-atlas-kubernetes.v0.6.1:

        - -

      • "ERROR" atlasclusters.atlas.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" atlasdatabaseusers.atlas.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" atlasprojects.atlas.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" name does not have a spec descriptor
      • +

        For microcks-operator.v1.3.0:

        -

      • "ERROR" projectRef does not have a spec descriptor
      • +
      • "ERROR" microcks does not have a spec descriptor
      • -
      • "ERROR" providerSettings does not have a spec descriptor
      • +
      • "ERROR" postman does not have a spec descriptor
      • -
      • "ERROR" databaseName does not have a spec descriptor
      • +
      • "ERROR" keycloak does not have a spec descriptor
      • -
      • "ERROR" passwordSecretRef does not have a spec descriptor
      • +
      • "ERROR" mongodb does not have a spec descriptor
      • -
      • "ERROR" projectRef does not have a spec descriptor
      • +
      • "ERROR" microcks does not have a spec descriptor
      • -
      • "ERROR" roles does not have a spec descriptor
      • +
      • "ERROR" postman does not have a spec descriptor
      • -
      • "ERROR" username does not have a spec descriptor
      • +
      • "ERROR" keycloak does not have a spec descriptor
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "ERROR" mongodb does not have a spec descriptor
      • -
      • "ERROR" projectIpAccessList does not have a spec descriptor
      • +
      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add a spec descriptor for microcks
      • -
      • "WARNING" Add a spec descriptor for projectRef
      • +
      • "WARNING" Add a spec descriptor for postman
      • -
      • "WARNING" Add a spec descriptor for providerSettings
      • +
      • "WARNING" Add a spec descriptor for keycloak
      • -
      • "WARNING" Add a spec descriptor for databaseName
      • +
      • "WARNING" Add a spec descriptor for mongodb
      • -
      • "WARNING" Add a spec descriptor for passwordSecretRef
      • +
      • "WARNING" Add a spec descriptor for microcks
      • -
      • "WARNING" Add a spec descriptor for projectRef
      • +
      • "WARNING" Add a spec descriptor for postman
      • -
      • "WARNING" Add a spec descriptor for roles
      • +
      • "WARNING" Add a spec descriptor for keycloak
      • -
      • "WARNING" Add a spec descriptor for username
      • +
      • "WARNING" Add a spec descriptor for mongodb
      • -
      • "WARNING" Add a spec descriptor for name
      • +
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for projectIpAccessList
      • +
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • @@ -22627,32 +22666,36 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For mongodb-atlas-kubernetes.v0.4.0:

        +

        For microcks-operator.v0.3.0:

        -

      • "WARNING" (mongodb-atlas-kubernetes.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (microcks-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["microcksinstalls.microcks.github.io"])

      • -

        For mongodb-atlas-kubernetes.v0.6.1:

        +

        For microcks-operator.v1.3.0:

        -

      • "WARNING" (mongodb-atlas-kubernetes.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (microcks-operator.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["microcksinstalls.microcks.github.io"])
      • @@ -22662,28 +22705,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      sealed-secrets-operator-helmpmem-csi-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -22696,188 +22739,113 @@
        Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For sealed-secrets-operator-helm.v0.0.2:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" affinity does not have a spec descriptor
      • +

        For pmem-csi-operator.v1.0.0:

        -

      • "ERROR" secretName does not have a spec descriptor
      • +
      • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" deviceMode does not have a spec descriptor
      • "ERROR" nodeSelector does not have a spec descriptor
      • -
      • "ERROR" tolerations does not have a spec descriptor
      • - -
      • "ERROR" rbac does not have a spec descriptor
      • - -
      • "ERROR" podAnnotations does not have a spec descriptor
      • - -
      • "ERROR" podLabels does not have a spec descriptor
      • - -
      • "ERROR" securityContext does not have a spec descriptor
      • - -
      • "ERROR" controller does not have a spec descriptor
      • - -
      • "ERROR" ingress does not have a spec descriptor
      • - -
      • "ERROR" crd does not have a spec descriptor
      • - -
      • "ERROR" priorityClassName does not have a spec descriptor
      • - -
      • "ERROR" resources does not have a spec descriptor
      • - -
      • "ERROR" serviceAccount does not have a spec descriptor
      • - -
      • "ERROR" networkPolicy does not have a spec descriptor
      • - -
      • "ERROR" sealedsecretcontrollers.bitnami.com does not have a status descriptor
      • - -
      • "WARNING" Add a spec descriptor for affinity
      • - -
      • "WARNING" Add a spec descriptor for secretName
      • - -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for deviceMode
      • "WARNING" Add a spec descriptor for nodeSelector
      • -
      • "WARNING" Add a spec descriptor for tolerations
      • - -
      • "WARNING" Add a spec descriptor for rbac
      • - -
      • "WARNING" Add a spec descriptor for podAnnotations
      • - -
      • "WARNING" Add a spec descriptor for podLabels
      • - -
      • "WARNING" Add a spec descriptor for securityContext
      • - -
      • "WARNING" Add a spec descriptor for controller
      • - -
      • "WARNING" Add a spec descriptor for ingress
      • - -
      • "WARNING" Add a spec descriptor for crd
      • - -
      • "WARNING" Add a spec descriptor for priorityClassName
      • - -
      • "WARNING" Add a spec descriptor for resources
      • - -
      • "WARNING" Add a spec descriptor for serviceAccount
      • - -
      • "WARNING" Add a spec descriptor for networkPolicy
      • - -
      • "WARNING" Add CRD validation for SealedSecretController/v1alpha1
      • - +
        +

        For pmem-csi-operator.v1.0.0:

        -

      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        - +
      • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
      • -
        -

        For sealed-secrets-operator-helm.v0.0.2:

        +

      • "ERROR" deviceMode does not have a spec descriptor
      • +
      • "ERROR" nodeSelector does not have a spec descriptor
      • -
      • "WARNING" (sealed-secrets-operator-helm.v0.0.2) csv.Spec.Icon not specified
      • -
      • "WARNING" (sealed-secrets-operator-helm.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for deviceMode
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sealedsecretcontrollers.bitnami.com"])
      • +
      • "WARNING" Add a spec descriptor for nodeSelector
      +
      +

      PASS

      + +

      NOT USED

      Grade D
      (100)
      Grade B
      (700)
      appsody-operatorportworx-essentials -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      -

      NOT USED

      @@ -22885,42 +22853,58 @@
      Grade

      NOT USED

      -

      PASS

      +

      ONLY ERRORS

      + +Info +
      +
        + + +
        +

        For portworx-essentials.v1.3.3:

        + +

      • "ERROR" error spec does not exist
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For appsody-operator.v0.6.0:

        - +

        For portworx-essentials.v1.3.3:

        -

      • "WARNING" (appsody-operator.v0.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
      • @@ -22930,31 +22914,33 @@
        Grade

      NOT USED

      Grade D
      (300)
      Grade D
      (200)
      radanalytics-sparkawss3-operator-registry -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        +
      • original
      • +
      • alpha
      @@ -22964,11 +22950,11 @@
      Grade

      NOT USED

      @@ -22978,89 +22964,68 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For sparkoperator.v1.0.2:

        - -

      • "ERROR" worker does not have a spec descriptor
      • - -
      • "ERROR" master does not have a spec descriptor
      • - -
      • "ERROR" mainApplicationFile does not have a spec descriptor
      • +

        For awss3operator.v1.0.0:

        -

      • "ERROR" mainClass does not have a spec descriptor
      • +
      • "ERROR" generateBucketName does not have a spec descriptor
      • -
      • "ERROR" driver does not have a spec descriptor
      • +
      • "ERROR" bucketName does not have a spec descriptor
      • -
      • "ERROR" executor does not have a spec descriptor
      • +
      • "ERROR" storageClassName does not have a spec descriptor
      • -
      • "ERROR" updateInterval does not have a spec descriptor
      • +
      • "ERROR" Connection does not have a spec descriptor
      • -
      • "ERROR" retainedApplications does not have a spec descriptor
      • +
      • "ERROR" claimRef does not have a spec descriptor
      • -
      • "ERROR" customImage does not have a spec descriptor
      • +
      • "ERROR" reclaimPolicy does not have a spec descriptor
      • -
      • "ERROR" sparkConfiguration does not have a spec descriptor
      • +
      • "ERROR" storageClassName does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" objectbucketclaims.objectbucket.io does not have a status descriptor
      • -
      • "ERROR" expose does not have a spec descriptor
      • +
      • "ERROR" objectbuckets.objectbucket.io does not have a status descriptor
      • -
      • "ERROR" logDirectory does not have a spec descriptor
      • +
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" sparkclusters.radanalytics.io does not have a status descriptor
      • - -
      • "ERROR" sparkapplications.radanalytics.io does not have a status descriptor
      • - -
      • "ERROR" sparkhistoryservers.radanalytics.io does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for worker
      • - -
      • "WARNING" Add a spec descriptor for master
      • - -
      • "WARNING" Add a spec descriptor for mainApplicationFile
      • - -
      • "WARNING" Add a spec descriptor for mainClass
      • -
      • "WARNING" Add a spec descriptor for driver
      • +
      • "WARNING" Add a spec descriptor for generateBucketName
      • -
      • "WARNING" Add a spec descriptor for executor
      • +
      • "WARNING" Add a spec descriptor for bucketName
      • -
      • "WARNING" Add a spec descriptor for updateInterval
      • +
      • "WARNING" Add a spec descriptor for storageClassName
      • -
      • "WARNING" Add a spec descriptor for retainedApplications
      • +
      • "WARNING" Add a spec descriptor for Connection
      • -
      • "WARNING" Add a spec descriptor for customImage
      • +
      • "WARNING" Add a spec descriptor for claimRef
      • -
      • "WARNING" Add a spec descriptor for sparkConfiguration
      • +
      • "WARNING" Add a spec descriptor for reclaimPolicy
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for storageClassName
      • -
      • "WARNING" Add a spec descriptor for expose
      • +
      • "WARNING" Add CRD validation for ObjectBucketClaim/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for logDirectory
      • +
      • "WARNING" Add CRD validation for ObjectBucket/v1alpha1
      • -
      • "WARNING" Add CRD validation for SparkCluster/v1
      • -
      • "WARNING" Add CRD validation for SparkApplication/v1
      • +
        +

        For awss3operator.v1.0.1:

        -

      • "WARNING" Add CRD validation for SparkHistoryServer/v1
      • @@ -23071,25 +23036,34 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For sparkoperator.v1.0.2:

        +

        For awss3operator.v1.0.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sparkapplications.radanalytics.io" "sparkclusters.radanalytics.io" "sparkhistoryservers.radanalytics.io"])
      • +
      • "WARNING" (awss3operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["objectbucketclaims.objectbucket.io" "objectbuckets.objectbucket.io"])
      • + + +
        +

        For awss3operator.v1.0.1:

        + + +

      • "WARNING" (awss3operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -23099,28 +23073,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      nsm-operator-registrycredstash-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -23133,11 +23107,11 @@
        Grade

      NOT USED

      @@ -23147,31 +23121,37 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For nsm-operator.v0.0.1:

        +

        For credstash-operator.v1.13.0:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" credstashsecrets.credstash.ouzi.tech does not have a status descriptor
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkServiceEndpoint: provided API should have an example annotation
      • +
      • "ERROR" name does not have a spec descriptor
      • -
      • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkService: provided API should have an example annotation
      • +
      • "ERROR" secrets does not have a spec descriptor
      • -
      • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkServiceManager: provided API should have an example annotation
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for name
      • + +
      • "WARNING" Add a spec descriptor for secrets
      • @@ -23182,33 +23162,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For nsm-operator.v0.0.1:

        - - -

      • "WARNING" (nsm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["networkserviceendpoints.networkservicemesh.io" "networkservicemanagers.networkservicemesh.io" "networkservices.networkservicemesh.io" "nsms.nsm.networkservicemesh.io"])
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For credstash-operator.v1.13.0:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["credstashsecrets.credstash.ouzi.tech"])
      • @@ -23222,92 +23194,98 @@
        Grade
      openshift-qiskit-operatorember-csi-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      -

      REQUIRED

      +

      NOT USED

      - +Info -
      -

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
        - -
      • openshift-qiskit-operator.v0.2.0
      • - -
      -
      -

      USED

      NOT USED

      -

      PASS

      +

      ONLY WARNINGS

      + +Info +
      +
        + + +
        +

        For ember-csi-operator.v0.9.4:

        + + +

      • "WARNING" Add CRD validation for EmberStorageBackend/v1alpha1
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For openshift-qiskit-operator.v0.2.0:

        +

        For ember-csi-operator.v0.9.4:

        -

      • "WARNING" (openshift-qiskit-operator.v0.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["embercsis.ember-csi.io"])
      • @@ -23317,35 +23295,47 @@
        Grade

      NOT USED

      Grade B
      (800)
      Grade D
      (200)
      camel-kkogito-operator -

      PARTIAL COMPLY

      +

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • 1.x
      • + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -23355,188 +23345,96 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For camel-k-operator.v1.5.1:

        - -

      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" flows does not have a spec descriptor
      • - -
      • "ERROR" definition does not have a spec descriptor
      • - -
      • "ERROR" flow does not have a spec descriptor
      • - -
      • "ERROR" sink does not have a spec descriptor
      • - -
      • "ERROR" source does not have a spec descriptor
      • - -
      • "ERROR" error spec does not exist
      • +

        For kogito-operator.v1.10.0:

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" kogitobuilds.app.kiegroup.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for flows
      • - -
      • "WARNING" Add a spec descriptor for definition
      • - -
      • "WARNING" Add a spec descriptor for flow
      • - -
      • "WARNING" Add a spec descriptor for sink
      • - -
      • "WARNING" Add a spec descriptor for source
      • - - -
        -

        For camel-k-operator.v1.5.1:

        - -

      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" kogitoinfras.app.kiegroup.org does not have a status descriptor
      • -
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" kogitoruntimes.app.kiegroup.org does not have a status descriptor
      • -
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" kogitosupportingservices.app.kiegroup.org does not have a status descriptor
      • -
      • "ERROR" flows does not have a spec descriptor
      • +
      • "ERROR" gitSource does not have a spec descriptor
      • -
      • "ERROR" definition does not have a spec descriptor
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" flow does not have a spec descriptor
      • +
      • "ERROR" resource does not have a spec descriptor
      • -
      • "ERROR" sink does not have a spec descriptor
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" source does not have a spec descriptor
      • +
      • "ERROR" serviceType does not have a spec descriptor
      • -
      • "ERROR" error spec does not exist
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for gitSource
      • -
      • "WARNING" Add a spec descriptor for flows
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for definition
      • +
      • "WARNING" Add a spec descriptor for resource
      • -
      • "WARNING" Add a spec descriptor for flow
      • +
      • "WARNING" Add a spec descriptor for replicas
      • -
      • "WARNING" Add a spec descriptor for sink
      • +
      • "WARNING" Add a spec descriptor for serviceType
      • -
      • "WARNING" Add a spec descriptor for source
      • +
      • "WARNING" Add a spec descriptor for replicas

      • -

        For camel-k-operator.v1.4.1:

        - -

      • "ERROR" flows does not have a spec descriptor
      • - -
      • "ERROR" definition does not have a spec descriptor
      • - -
      • "ERROR" flow does not have a spec descriptor
      • - -
      • "ERROR" source does not have a spec descriptor
      • - -
      • "ERROR" sink does not have a spec descriptor
      • - -
      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • - -
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • +

        For kogito-operator.v1.10.0:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" error spec does not exist
      • - - -
      • "WARNING" Add a spec descriptor for flows
      • - -
      • "WARNING" Add a spec descriptor for definition
      • - -
      • "WARNING" Add a spec descriptor for flow
      • - -
      • "WARNING" Add a spec descriptor for source
      • - -
      • "WARNING" Add a spec descriptor for sink
      • - - -
        -

        For camel-k-operator.v1.3.2:

        - -

      • "ERROR" flows does not have a spec descriptor
      • - -
      • "ERROR" definition does not have a spec descriptor
      • - -
      • "ERROR" flow does not have a spec descriptor
      • +
      • "ERROR" kogitobuilds.app.kiegroup.org does not have a status descriptor
      • -
      • "ERROR" source does not have a spec descriptor
      • +
      • "ERROR" kogitoinfras.app.kiegroup.org does not have a status descriptor
      • -
      • "ERROR" sink does not have a spec descriptor
      • +
      • "ERROR" kogitoruntimes.app.kiegroup.org does not have a status descriptor
      • -
      • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" kogitosupportingservices.app.kiegroup.org does not have a status descriptor
      • -
      • "ERROR" integrations.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" gitSource does not have a spec descriptor
      • -
      • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" resource does not have a spec descriptor
      • -
      • "ERROR" builds.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" kamelets.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" serviceType does not have a spec descriptor
      • -
      • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for gitSource
      • -
      • "WARNING" Add a spec descriptor for flows
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for definition
      • +
      • "WARNING" Add a spec descriptor for resource
      • -
      • "WARNING" Add a spec descriptor for flow
      • +
      • "WARNING" Add a spec descriptor for replicas
      • -
      • "WARNING" Add a spec descriptor for source
      • +
      • "WARNING" Add a spec descriptor for serviceType
      • -
      • "WARNING" Add a spec descriptor for sink
      • +
      • "WARNING" Add a spec descriptor for replicas
      • @@ -23547,40 +23445,32 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For camel-k-operator.v1.5.1:

        - - - -
        -

        For camel-k-operator.v1.5.1:

        - - +

        For kogito-operator.v1.10.0:

        -
        -

        For camel-k-operator.v1.4.1:

        +

      • "WARNING" (kogito-operator.v1.10.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.

      • -

        For camel-k-operator.v1.3.2:

        +

        For kogito-operator.v1.10.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["builds.camel.apache.org" "camelcatalogs.camel.apache.org" "integrationkits.camel.apache.org" "integrationplatforms.camel.apache.org" "integrations.camel.apache.org" "kameletbindings.camel.apache.org" "kamelets.camel.apache.org"])
      • +
      • "WARNING" (kogito-operator.v1.10.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -23590,35 +23480,45 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade B
      (600)
      hedvig-operatorruntime-component-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • beta
      • + +
      +
      +

      NOT USED

      @@ -23628,11 +23528,11 @@
      Grade

      PASS

      @@ -23641,27 +23541,27 @@
      Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For hedvig-operator.v1.0.1:

        +

        For runtime-component-operator.v0.7.0:

        -

      • "WARNING" (hedvig-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (runtime-component-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -23671,81 +23571,71 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade D
      (300)
      joget-tomcat-operatorkubernetes-imagepuller-operator

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For joget-tomcat-operator.v0.0.1:

        +

        For kubernetes-imagepuller-operator.v0.0.9:

        -

      • "ERROR" size does not have a spec descriptor
      • +
      • "ERROR" daemonsetName does not have a spec descriptor
      • -
      • "ERROR" jogettomcats.apps.joget.com does not have a status descriptor
      • +
      • "ERROR" images does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" kubernetesimagepullers.che.eclipse.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for size
      • +
      • "WARNING" Add a spec descriptor for daemonsetName
      • -
      • "WARNING" Add CRD validation for spec field `size` in JogetTomcat/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for images
      • @@ -23756,25 +23646,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For joget-tomcat-operator.v0.0.1:

        +

        For kubernetes-imagepuller-operator.v0.0.9:

        -

      • "WARNING" (joget-tomcat-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (kubernetes-imagepuller-operator.v0.0.9) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -23788,30 +23678,30 @@
        Grade
      kubemq-operatoropen-liberty -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      • alpha
      • -
      • original
      • +
      • beta
      @@ -23820,11 +23710,11 @@
      Grade

      NOT USED

      @@ -23834,36 +23724,116 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kubemq-operator.v0.5.1:

        +

        For open-liberty-0.0.1:

        -

      • "ERROR" Port does not have a spec descriptor
      • +
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • +
      • "ERROR" service does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for Port
      • +
      • "ERROR" jmsService does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `Port` in KubemqDashboard/v1alpha1
      • +
      • "ERROR" ssl does not have a spec descriptor
      • + +
      • "ERROR" ingress does not have a spec descriptor
      • + +
      • "ERROR" autoscaling does not have a spec descriptor
      • + +
      • "ERROR" pod does not have a spec descriptor
      • + +
      • "ERROR" rbac does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" deployment does not have a spec descriptor
      • + +
      • "ERROR" iiopService does not have a spec descriptor
      • + +
      • "ERROR" persistence does not have a spec descriptor
      • + +
      • "ERROR" logs does not have a spec descriptor
      • + +
      • "ERROR" microprofile does not have a spec descriptor
      • + +
      • "ERROR" monitoring does not have a spec descriptor
      • + +
      • "ERROR" arch does not have a spec descriptor
      • + +
      • "ERROR" env does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for service
      • + +
      • "WARNING" Add a spec descriptor for jmsService
      • + +
      • "WARNING" Add a spec descriptor for ssl
      • + +
      • "WARNING" Add a spec descriptor for ingress
      • + +
      • "WARNING" Add a spec descriptor for autoscaling
      • + +
      • "WARNING" Add a spec descriptor for pod
      • + +
      • "WARNING" Add a spec descriptor for rbac
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for deployment
      • + +
      • "WARNING" Add a spec descriptor for iiopService
      • + +
      • "WARNING" Add a spec descriptor for persistence
      • + +
      • "WARNING" Add a spec descriptor for logs
      • + +
      • "WARNING" Add a spec descriptor for microprofile
      • + +
      • "WARNING" Add a spec descriptor for monitoring
      • + +
      • "WARNING" Add a spec descriptor for arch
      • + +
      • "WARNING" Add a spec descriptor for env

      • -

        For kubemq-operator.v0.3.2:

        +

        For open-liberty-operator.v0.7.0:

        -

      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • +
      • "ERROR" openlibertydumps.openliberty.io does not have a status descriptor
      • + +
      • "ERROR" openlibertytraces.openliberty.io does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" podName does not have a spec descriptor
      • + +
      • "ERROR" include does not have a spec descriptor
      • + +
      • "ERROR" podName does not have a spec descriptor
      • + +
      • "ERROR" traceSpecification does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for podName
      • + +
      • "WARNING" Add a spec descriptor for include
      • + +
      • "WARNING" Add a spec descriptor for podName
      • +
      • "WARNING" Add a spec descriptor for traceSpecification
      • @@ -23874,36 +23844,36 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubemq-operator.v0.5.1:

        +

        For open-liberty-0.0.1:

        -

      • "WARNING" (kubemq-operator.v0.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (open-liberty-0.0.1) csv.metadata.Name open-liberty-0.0.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io" "kubemqdashboards.core.k8s.kubemq.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openliberties.openliberty.io"])

      • -

        For kubemq-operator.v0.3.2:

        +

        For open-liberty-operator.v0.7.0:

        -

      • "WARNING" (kubemq-operator.v0.3.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (open-liberty-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -23917,24 +23887,24 @@
        Grade
      siddhi-operatoropentelemetry-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -23947,51 +23917,45 @@
        Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For siddhi-operator.v0.2.2:

        - -

      • "ERROR" siddhiprocesses.siddhi.io does not have a status descriptor
      • - -
      • "ERROR" apps does not have a spec descriptor
      • - -
      • "ERROR" container does not have a spec descriptor
      • +

        For opentelemetry-operator.v0.33.0:

        +

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for spec field `apps` in SiddhiProcess/v1alpha2
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `container` in SiddhiProcess/v1alpha2
      • +
      • "ERROR" opentelemetrycollectors.opentelemetry.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for apps
      • -
      • "WARNING" Add a spec descriptor for container
      • +
      • "WARNING" Add a spec descriptor for config
      • @@ -24002,27 +23966,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For siddhi-operator.v0.2.2:

        - +

        For opentelemetry-operator.v0.33.0:

        -

      • "WARNING" (siddhi-operator.v0.2.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["siddhiprocesses.siddhi.io"])
      • +
      • "WARNING" (opentelemetry-operator.v0.33.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -24032,28 +23994,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      istio-workspace-operatorpulp-operator

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -24066,11 +24028,11 @@
        Grade

      NOT USED

      @@ -24080,35 +24042,37 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For istio-workspace-operator.v0.3.0:

        +

        For pulp-operator.v0.3.0:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • -
      • "ERROR" sessions.maistra.io does not have a status descriptor
      • +
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • -
      • "ERROR" ref does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" route does not have a spec descriptor
      • +
      • "ERROR" error getting custom resources
      • +
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • -
      • "WARNING" Add a spec descriptor for ref
      • -
      • "WARNING" Add a spec descriptor for route
      • +
      • "WARNING" Warning: Value pulp.pulpproject.org/v1beta1, Kind=PulpBackup: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value pulp.pulpproject.org/v1beta1, Kind=PulpRestore: provided API should have an example annotation
      • @@ -24119,25 +24083,29 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For istio-workspace-operator.v0.3.0:

        +

        For pulp-operator.v0.3.0:

        -

      • "WARNING" (istio-workspace-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (pulp-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -24151,24 +24119,24 @@
        Grade
      microcksdruid-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -24181,11 +24149,11 @@
        Grade

      NOT USED

      @@ -24195,179 +24163,131 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For microcks-operator.v0.3.0:

        - -

      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • - -
      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • - -
      • "ERROR" microcks does not have a spec descriptor
      • - -
      • "ERROR" postman does not have a spec descriptor
      • - -
      • "ERROR" keycloak does not have a spec descriptor
      • - -
      • "ERROR" mongodb does not have a spec descriptor
      • - -
      • "ERROR" microcks does not have a spec descriptor
      • - -
      • "ERROR" postman does not have a spec descriptor
      • - -
      • "ERROR" keycloak does not have a spec descriptor
      • - -
      • "ERROR" mongodb does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • - -
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for microcks
      • - -
      • "WARNING" Add a spec descriptor for postman
      • - -
      • "WARNING" Add a spec descriptor for keycloak
      • - -
      • "WARNING" Add a spec descriptor for mongodb
      • - -
      • "WARNING" Add a spec descriptor for microcks
      • - -
      • "WARNING" Add a spec descriptor for postman
      • - -
      • "WARNING" Add a spec descriptor for keycloak
      • - -
      • "WARNING" Add a spec descriptor for mongodb
      • - - -
        -

        For microcks-operator.v1.3.0:

        - -

      • "ERROR" microcks does not have a spec descriptor
      • +

        For druid-operator.v0.0.6:

        -

      • "ERROR" postman does not have a spec descriptor
      • +
      • "ERROR" startScript does not have a spec descriptor
      • -
      • "ERROR" keycloak does not have a spec descriptor
      • +
      • "ERROR" securityContext does not have a spec descriptor
      • -
      • "ERROR" mongodb does not have a spec descriptor
      • +
      • "ERROR" jvm.options does not have a spec descriptor
      • -
      • "ERROR" microcks does not have a spec descriptor
      • +
      • "ERROR" podLabels does not have a spec descriptor
      • -
      • "ERROR" postman does not have a spec descriptor
      • +
      • "ERROR" services does not have a spec descriptor
      • -
      • "ERROR" keycloak does not have a spec descriptor
      • +
      • "ERROR" log4j.config does not have a spec descriptor
      • -
      • "ERROR" mongodb does not have a spec descriptor
      • +
      • "ERROR" env does not have a spec descriptor
      • -
      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
      • +
      • "ERROR" podAnnotations does not have a spec descriptor
      • +
      • "ERROR" readinessProbe does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for microcks
      • +
      • "ERROR" commonConfigMountPath does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for postman
      • +
      • "ERROR" volumeMounts does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for keycloak
      • +
      • "ERROR" common.runtime.properties does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for mongodb
      • +
      • "ERROR" volumes does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for microcks
      • +
      • "ERROR" nodes does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for postman
      • +
      • "ERROR" druids.druid.apache.org does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for keycloak
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for mongodb
      • -
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for startScript
      • -
      • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for securityContext
      • +
      • "WARNING" Add a spec descriptor for jvm.options
      • +
      • "WARNING" Add a spec descriptor for podLabels
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for services
      • +
      • "WARNING" Add a spec descriptor for log4j.config
      • -
        -

        For microcks-operator.v0.3.0:

        +

      • "WARNING" Add a spec descriptor for env
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" (microcks-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for podAnnotations
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["microcksinstalls.microcks.github.io"])
      • +
      • "WARNING" Add a spec descriptor for readinessProbe
      • +
      • "WARNING" Add a spec descriptor for commonConfigMountPath
      • -
        -

        For microcks-operator.v1.3.0:

        +

      • "WARNING" Add a spec descriptor for volumeMounts
      • +
      • "WARNING" Add a spec descriptor for common.runtime.properties
      • -
      • "WARNING" (microcks-operator.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for volumes
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["microcksinstalls.microcks.github.io"])
      • +
      • "WARNING" Add a spec descriptor for nodes
      +
      +

      PASS

      + +

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      myvirtualdirectoryelastic-cloud-eck -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -24380,11 +24300,11 @@
        Grade

      NOT USED

      @@ -24394,69 +24314,228 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For myvirtualdirectory.1.0.0:

        +

        For elastic-cloud-eck.v1.3.0:

        -

      • "ERROR" myvirtualdirectories.myvirtualdirectory.tremolo.io does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" dest_cfg_map does not have a spec descriptor
      • +
      • "ERROR" version does not have a spec descriptor
      • -
      • "ERROR" source_secret does not have a spec descriptor
      • +
      • "ERROR" nodeSets does not have a spec descriptor
      • -
      • "ERROR" secret_data does not have a spec descriptor
      • +
      • "ERROR" version does not have a spec descriptor
      • -
      • "ERROR" myvd_props does not have a spec descriptor
      • +
      • "ERROR" count does not have a spec descriptor
      • -
      • "ERROR" key_store does not have a spec descriptor
      • +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" podTemplate does not have a spec descriptor
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" version does not have a spec descriptor
      • -
      • "ERROR" dest_secret does not have a spec descriptor
      • +
      • "ERROR" count does not have a spec descriptor
      • -
      • "ERROR" non_secret_data does not have a spec descriptor
      • +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • -
      • "ERROR" myvd_log4j2_xml does not have a spec descriptor
      • +
      • "ERROR" version does not have a spec descriptor
      • -
      • "ERROR" myvd_network_configuration does not have a spec descriptor
      • +
      • "ERROR" config does not have a spec descriptor
      • +
      • "ERROR" count does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for dest_cfg_map
      • +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for source_secret
      • +
      • "ERROR" version does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for secret_data
      • +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for myvd_props
      • +
      • "ERROR" config does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for key_store
      • +
      • "ERROR" deployment does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "ERROR" elasticsearches.elasticsearch.k8s.elastic.co does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for dest_secret
      • +
      • "ERROR" kibanas.kibana.k8s.elastic.co does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for non_secret_data
      • +
      • "ERROR" apmservers.apm.k8s.elastic.co does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for myvd_log4j2_xml
      • +
      • "ERROR" enterprisesearches.enterprisesearch.k8s.elastic.co does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for myvd_network_configuration
      • +
      • "ERROR" beats.beat.k8s.elastic.co does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for nodeSets
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for count
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for podTemplate
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for count
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for count
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for deployment
      • + +
      • "WARNING" Add a spec descriptor for type
      • + + +
        +

        For elastic-cloud-eck.v1.7.1:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" nodeSets does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • + +
      • "ERROR" podTemplate does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" count does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" count does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" count does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • + +
      • "ERROR" type does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" deployment does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchRefs does not have a spec descriptor
      • + +
      • "ERROR" daemonSet does not have a spec descriptor
      • + +
      • "ERROR" config does not have a spec descriptor
      • + +
      • "ERROR" version does not have a spec descriptor
      • + +
      • "ERROR" count does not have a spec descriptor
      • + +
      • "ERROR" elasticsearchRef does not have a spec descriptor
      • + +
      • "ERROR" elasticsearches.elasticsearch.k8s.elastic.co does not have a status descriptor
      • + +
      • "ERROR" kibanas.kibana.k8s.elastic.co does not have a status descriptor
      • + +
      • "ERROR" apmservers.apm.k8s.elastic.co does not have a status descriptor
      • + +
      • "ERROR" enterprisesearches.enterprisesearch.k8s.elastic.co does not have a status descriptor
      • + +
      • "ERROR" beats.beat.k8s.elastic.co does not have a status descriptor
      • + +
      • "ERROR" agents.agent.k8s.elastic.co does not have a status descriptor
      • + +
      • "ERROR" elasticmapsservers.maps.k8s.elastic.co does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for nodeSets
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for podTemplate
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for count
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for count
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for count
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for type
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for deployment
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRefs
      • + +
      • "WARNING" Add a spec descriptor for daemonSet
      • + +
      • "WARNING" Add a spec descriptor for config
      • + +
      • "WARNING" Add a spec descriptor for version
      • + +
      • "WARNING" Add a spec descriptor for count
      • + +
      • "WARNING" Add a spec descriptor for elasticsearchRef
      • @@ -24467,27 +24546,30 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For myvirtualdirectory.1.0.0:

        +

        For elastic-cloud-eck.v1.3.0:

        -

      • "WARNING" (myvirtualdirectory.1.0.0) csv.metadata.Name myvirtualdirectory.1.0.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apmservers.apm.k8s.elastic.co" "beats.beat.k8s.elastic.co" "elasticsearches.elasticsearch.k8s.elastic.co" "enterprisesearches.enterprisesearch.k8s.elastic.co" "kibanas.kibana.k8s.elastic.co"])
      • + + +
        +

        For elastic-cloud-eck.v1.7.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["myvirtualdirectories.myvirtualdirectory.tremolo.io"])
      • @@ -24497,32 +24579,32 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      service-binding-operatorhazelcast-jet-enterprise-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • alpha
      @@ -24531,59 +24613,59 @@
      Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For service-binding-operator.v0.9.1:

        +

        For hazelcast-jet-enterprise-operator.v0.5.0:

        -

      • "ERROR" application does not have a spec descriptor
      • +
      • "ERROR" hazelcastjetenterprises.hazelcast.com does not have a status descriptor
      • -
      • "ERROR" services does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" service does not have a spec descriptor
      • +
      • "ERROR" cluster does not have a spec descriptor
      • -
      • "ERROR" application does not have a spec descriptor
      • +
      • "ERROR" jet does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" securityContext does not have a spec descriptor
      • -
      • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
      • -
      • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJetEnterprise/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `jet` in HazelcastJetEnterprise/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for application
      • +
      • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJetEnterprise/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for services
      • +
      • "WARNING" Add a spec descriptor for cluster
      • -
      • "WARNING" Add a spec descriptor for service
      • +
      • "WARNING" Add a spec descriptor for jet
      • -
      • "WARNING" Add a spec descriptor for application
      • +
      • "WARNING" Add a spec descriptor for securityContext
      • @@ -24594,25 +24676,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For service-binding-operator.v0.9.1:

        +

        For hazelcast-jet-enterprise-operator.v0.5.0:

        -

      • "WARNING" (service-binding-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (hazelcast-jet-enterprise-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -24622,28 +24706,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      mariadb-operator-appkubefed-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -24656,11 +24740,11 @@
        Grade

      NOT USED

      @@ -24670,87 +24754,51 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For mariadb-operator.v0.0.4:

        - -

      • "ERROR" rootpwd does not have a spec descriptor
      • - -
      • "ERROR" size does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" dataStoragePath does not have a spec descriptor
      • - -
      • "ERROR" dataStorageSize does not have a spec descriptor
      • - -
      • "ERROR" database does not have a spec descriptor
      • - -
      • "ERROR" username does not have a spec descriptor
      • - -
      • "ERROR" password does not have a spec descriptor
      • - -
      • "ERROR" backupPath does not have a spec descriptor
      • - -
      • "ERROR" backupSize does not have a spec descriptor
      • - -
      • "ERROR" schedule does not have a spec descriptor
      • - -
      • "ERROR" size does not have a spec descriptor
      • - -
      • "ERROR" dataSourceName does not have a spec descriptor
      • +

        For kubefed-operator.v0.1.0:

        -

      • "ERROR" image does not have a spec descriptor
      • +
      • "ERROR" scope does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" mariadbs.mariadb.persistentsys does not have a status descriptor
      • - -
      • "ERROR" backups.mariadb.persistentsys does not have a status descriptor
      • - -
      • "ERROR" monitors.mariadb.persistentsys does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for rootpwd
      • - -
      • "WARNING" Add a spec descriptor for size
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for scope
      • -
      • "WARNING" Add a spec descriptor for dataStoragePath
      • +
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=DNSEndpoint: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for dataStorageSize
      • +
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=KubeFedCluster: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for database
      • +
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=FederatedTypeConfig: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for username
      • +
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=KubeFedConfig: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for password
      • +
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=PropagatedVersion: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for backupPath
      • +
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=ServiceDNSRecord: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for backupSize
      • +
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=ClusterPropagatedVersion: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for schedule
      • +
      • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=FederatedServiceStatus: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for size
      • +
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=IngressDNSRecord: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for dataSourceName
      • +
      • "WARNING" Warning: Value scheduling.kubefed.k8s.io/v1alpha1, Kind=ReplicaSchedulingPreference: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=Domain: provided API should have an example annotation
      • @@ -24761,25 +24809,49 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For mariadb-operator.v0.0.4:

        +

        For kubefed-operator.v0.1.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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.mariadb.persistentsys" "mariadbs.mariadb.persistentsys" "monitors.mariadb.persistentsys"])
      • +
      • "WARNING" (kubefed-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterpropagatedversions.core.kubefed.k8s.io" "dnsendpoints.multiclusterdns.kubefed.k8s.io" "domains.multiclusterdns.kubefed.k8s.io" "federatedservicestatuses.core.kubefed.k8s.io" "federatedtypeconfigs.core.kubefed.k8s.io" "ingressdnsrecords.multiclusterdns.kubefed.k8s.io" "kubefedclusters.core.kubefed.k8s.io" "kubefedconfigs.core.kubefed.k8s.io" "kubefeds.operator.kubefed.io" "propagatedversions.core.kubefed.k8s.io" "replicaschedulingpreferences.scheduling.kubefed.k8s.io" "servicednsrecords.multiclusterdns.kubefed.k8s.io"])
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -24793,31 +24865,41 @@
        Grade
      portworx-essentialsripsaw -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -24825,30 +24907,40 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For portworx-essentials.v1.3.3:

        +

        For ripsaw.v0.1.0:

        -

      • "ERROR" error spec does not exist
      • +
      • "ERROR" cleanup does not have a spec descriptor
      • + +
      • "ERROR" workload does not have a spec descriptor
      • + +
      • "ERROR" benchmarks.ripsaw.cloudbulldozer.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for cleanup
      • + +
      • "WARNING" Add a spec descriptor for workload
      • + +
      • "WARNING" Add CRD validation for Benchmark/v1alpha1
      • +
      @@ -24858,25 +24950,25 @@
      Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For portworx-essentials.v1.3.3:

        +

        For ripsaw.v0.1.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["benchmarks.ripsaw.cloudbulldozer.io"])
      • @@ -24886,35 +24978,45 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      cluster-manageristio-workspace-operator

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -24924,39 +25026,35 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For cluster-manager.v0.4.0:

        +

        For istio-workspace-operator.v0.3.0:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" placementImagePullSpec does not have a spec descriptor
      • - -
      • "ERROR" registrationImagePullSpec does not have a spec descriptor
      • - -
      • "ERROR" workImagePullSpec does not have a spec descriptor
      • +
      • "ERROR" sessions.maistra.io does not have a status descriptor
      • -
      • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
      • +
      • "ERROR" ref does not have a spec descriptor
      • +
      • "ERROR" route does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for placementImagePullSpec
      • -
      • "WARNING" Add a spec descriptor for registrationImagePullSpec
      • +
      • "WARNING" Add a spec descriptor for ref
      • -
      • "WARNING" Add a spec descriptor for workImagePullSpec
      • +
      • "WARNING" Add a spec descriptor for route
      • @@ -24967,25 +25065,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For cluster-manager.v0.4.0:

        +

        For istio-workspace-operator.v0.3.0:

        -

      • "WARNING" (cluster-manager.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (istio-workspace-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -24995,323 +25093,270 @@
        Grade

      NOT USED

      Grade B
      (700)
      Grade B
      (600)
      cockroachdbkubeturbo -

      PARTIAL COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For cockroachdb.v3.0.7:

        - -

      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" service does not have a spec descriptor
      • - -
      • "ERROR" storage does not have a spec descriptor
      • - -
      • "ERROR" init does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" networkPolicy does not have a spec descriptor
      • - -
      • "ERROR" labels does not have a spec descriptor
      • - -
      • "ERROR" clusterDomain does not have a spec descriptor
      • - -
      • "ERROR" conf does not have a spec descriptor
      • - -
      • "ERROR" statefulset does not have a spec descriptor
      • - -
      • "ERROR" cockroachdbs.charts.helm.k8s.io does not have a status descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `labels` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `conf` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `storage` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `tls` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `networkPolicy` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `image` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `clusterDomain` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `statefulset` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `service` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `init` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for service
      • - -
      • "WARNING" Add a spec descriptor for storage
      • - -
      • "WARNING" Add a spec descriptor for init
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for networkPolicy
      • - -
      • "WARNING" Add a spec descriptor for labels
      • - -
      • "WARNING" Add a spec descriptor for clusterDomain
      • - -
      • "WARNING" Add a spec descriptor for conf
      • - -
      • "WARNING" Add a spec descriptor for statefulset
      • - - -
        -

        For cockroachdb.v5.0.4:

        - -

      • "ERROR" cockroachdbs.charts.operatorhub.io does not have a status descriptor
      • - -
      • "ERROR" labels does not have a spec descriptor
      • - -
      • "ERROR" networkPolicy does not have a spec descriptor
      • - -
      • "ERROR" tls does not have a spec descriptor
      • - -
      • "ERROR" conf does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" init does not have a spec descriptor
      • - -
      • "ERROR" serviceMonitor does not have a spec descriptor
      • - -
      • "ERROR" statefulset does not have a spec descriptor
      • - -
      • "ERROR" storage does not have a spec descriptor
      • - -
      • "ERROR" clusterDomain does not have a spec descriptor
      • - -
      • "ERROR" ingress does not have a spec descriptor
      • - -
      • "ERROR" service does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `ingress` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `init` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `networkPolicy` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `serviceMonitor` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `statefulset` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `tls` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `clusterDomain` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `conf` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `image` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `labels` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `service` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `storage` in Cockroachdb/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for labels
      • - -
      • "WARNING" Add a spec descriptor for networkPolicy
      • - -
      • "WARNING" Add a spec descriptor for tls
      • - -
      • "WARNING" Add a spec descriptor for conf
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for init
      • - -
      • "WARNING" Add a spec descriptor for serviceMonitor
      • - -
      • "WARNING" Add a spec descriptor for statefulset
      • - -
      • "WARNING" Add a spec descriptor for storage
      • - -
      • "WARNING" Add a spec descriptor for clusterDomain
      • - -
      • "WARNING" Add a spec descriptor for ingress
      • +

        For kubeturbo-operator.v8.1.0:

        -

      • "WARNING" Add a spec descriptor for service
      • +
      • "ERROR" serverMeta does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
        -

        For cockroachdb.v2.1.11:

        +

      • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
      • -
      • "ERROR" cockroachdbs.charts.helm.k8s.io does not have a status descriptor
      • -
      • "ERROR" ImageTag does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for serverMeta
      • -
      • "ERROR" PodManagementPolicy does not have a spec descriptor
      • -
      • "ERROR" Tolerations does not have a spec descriptor
      • +
        +

        For kubeturbo-operator.v7.21.0:

        -

      • "ERROR" Replicas does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" HttpName does not have a spec descriptor
      • +
      • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
      • -
      • "ERROR" Resources does not have a spec descriptor
      • +
      • "ERROR" serverMeta does not have a spec descriptor
      • -
      • "ERROR" CacheSize does not have a spec descriptor
      • -
      • "ERROR" Name does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for Kubeturbo/v1alpha1
      • -
      • "ERROR" MaxUnavailable does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for serverMeta
      • -
      • "ERROR" InternalGrpcPort does not have a spec descriptor
      • -
      • "ERROR" ExternalGrpcName does not have a spec descriptor
      • -
      • "ERROR" ClusterDomain does not have a spec descriptor
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" NetworkPolicy does not have a spec descriptor
      • -
      • "ERROR" Secure does not have a spec descriptor
      • +
        +

        For kubeturbo-operator.v8.1.0:

        -

      • "ERROR" Component does not have a spec descriptor
      • -
      • "ERROR" ExternalGrpcPort does not have a spec descriptor
      • +
      • "WARNING" (kubeturbo-operator.v8.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" Image does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" InternalGrpcName does not have a spec descriptor
      • -
      • "ERROR" StorageClass does not have a spec descriptor
      • +
        +

        For kubeturbo-operator.v7.21.0:

        -

      • "ERROR" Service does not have a spec descriptor
      • -
      • "ERROR" UpdateStrategy does not have a spec descriptor
      • +
      • "WARNING" (kubeturbo-operator.v7.21.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" ImagePullPolicy does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" NodeSelector does not have a spec descriptor
      • -
      • "ERROR" ExternalHttpPort does not have a spec descriptor
      • -
      • "ERROR" MaxSQLMemory does not have a spec descriptor
      • +
      +
      + +

      NOT USED

      Grade D
      (100)
      virt-gateway-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" InternalHttpPort does not have a spec descriptor
      • + +
        +

        For virt-gateway-operator.v0.0.1:

        -

      • "ERROR" InitPodResources does not have a spec descriptor
      • +
      • "ERROR" route does not have a spec descriptor
      • -
      • "ERROR" Storage does not have a spec descriptor
      • +
      • "ERROR" serviceAccountAPIGroups does not have a spec descriptor
      • +
      • "ERROR" apiURL does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Cockroachdb/v1alpha1
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ImageTag
      • +
      • "ERROR" passThrough does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for PodManagementPolicy
      • +
      • "ERROR" serviceAccountResources does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for Tolerations
      • +
      • "ERROR" serviceAccountVerbs does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for Replicas
      • +
      • "ERROR" webAppImage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for HttpName
      • +
      • "ERROR" generateSecret does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for Resources
      • +
      • "ERROR" namespace does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for CacheSize
      • +
      • "ERROR" resourceNames does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for Name
      • +
      • "ERROR" resources does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for MaxUnavailable
      • +
      • "ERROR" APIGroups does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for InternalGrpcPort
      • +
      • "ERROR" generateServiceAccount does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ExternalGrpcName
      • +
      • "ERROR" gateservers.ocgate.yaacov.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for ClusterDomain
      • +
      • "ERROR" gatetokens.ocgate.yaacov.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for NetworkPolicy
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for Secure
      • -
      • "WARNING" Add a spec descriptor for Component
      • +
      • "WARNING" Add a spec descriptor for route
      • -
      • "WARNING" Add a spec descriptor for ExternalGrpcPort
      • +
      • "WARNING" Add a spec descriptor for serviceAccountAPIGroups
      • -
      • "WARNING" Add a spec descriptor for Image
      • +
      • "WARNING" Add a spec descriptor for apiURL
      • -
      • "WARNING" Add a spec descriptor for InternalGrpcName
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for StorageClass
      • +
      • "WARNING" Add a spec descriptor for passThrough
      • -
      • "WARNING" Add a spec descriptor for Service
      • +
      • "WARNING" Add a spec descriptor for serviceAccountResources
      • -
      • "WARNING" Add a spec descriptor for UpdateStrategy
      • +
      • "WARNING" Add a spec descriptor for serviceAccountVerbs
      • -
      • "WARNING" Add a spec descriptor for ImagePullPolicy
      • +
      • "WARNING" Add a spec descriptor for webAppImage
      • -
      • "WARNING" Add a spec descriptor for NodeSelector
      • +
      • "WARNING" Add a spec descriptor for generateSecret
      • -
      • "WARNING" Add a spec descriptor for ExternalHttpPort
      • +
      • "WARNING" Add a spec descriptor for namespace
      • -
      • "WARNING" Add a spec descriptor for MaxSQLMemory
      • +
      • "WARNING" Add a spec descriptor for resourceNames
      • -
      • "WARNING" Add a spec descriptor for InternalHttpPort
      • +
      • "WARNING" Add a spec descriptor for resources
      • -
      • "WARNING" Add a spec descriptor for InitPodResources
      • +
      • "WARNING" Add a spec descriptor for APIGroups
      • -
      • "WARNING" Add a spec descriptor for Storage
      • +
      • "WARNING" Add a spec descriptor for generateServiceAccount
      • @@ -25322,37 +25367,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For cockroachdb.v3.0.7:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cockroachdbs.charts.helm.k8s.io"])
      • - - -
        -

        For cockroachdb.v5.0.4:

        - - - -
        -

        For cockroachdb.v2.1.11:

        +

        For virt-gateway-operator.v0.0.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cockroachdbs.charts.helm.k8s.io"])
      • +
      • "WARNING" (virt-gateway-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -25362,79 +25395,67 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade B
      (600)
      kedajaeger

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      USED

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      ONLY ERRORS

      - +Info -
      + +Info +
        -
        -

        For keda.v2.4.0:

        - -

      • "ERROR" triggers does not have a spec descriptor
      • +
        +

        For jaeger-operator.v1.24.0:

        -

      • "ERROR" triggerauthentications.keda.sh does not have a status descriptor
      • +
      • "ERROR" error spec does not exist
      • -
      • "ERROR" clustertriggerauthentications.keda.sh does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for triggers
      • @@ -25443,46 +25464,62 @@
        Grade
      -

      PASS

      +

      ONLY WARNINGS

      + +Info +
      +
        + + +
        +

        For jaeger-operator.v1.24.0:

        + + +

      • "WARNING" (jaeger-operator.v1.24.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + + + +
      +
      +

      NOT USED

      Grade B
      (700)
      Grade B
      (600)
      kongneuvector-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      @@ -25491,11 +25528,11 @@
      Grade

      NOT USED

      @@ -25505,45 +25542,105 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kong.v0.8.0:

        +

        For neuvector-operator.v1.2.7:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" admissionwebhook does not have a spec descriptor
      • -
      • "ERROR" proxy does not have a spec descriptor
      • +
      • "ERROR" crdwebhook does not have a spec descriptor
      • -
      • "ERROR" env does not have a spec descriptor
      • +
      • "ERROR" enforcer does not have a spec descriptor
      • "ERROR" resources does not have a spec descriptor
      • -
      • "ERROR" ingressController does not have a spec descriptor
      • +
      • "ERROR" containerd does not have a spec descriptor
      • -
      • "ERROR" kongs.charts.helm.k8s.io does not have a status descriptor
      • +
      • "ERROR" openshift does not have a spec descriptor
      • +
      • "ERROR" cve does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for Kong/v1alpha1
      • +
      • "ERROR" crio does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for proxy
      • +
      • "ERROR" serviceAccount does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for env
      • +
      • "ERROR" bottlerocket does not have a spec descriptor
      • + +
      • "ERROR" tag does not have a spec descriptor
      • + +
      • "ERROR" oem does not have a spec descriptor
      • + +
      • "ERROR" psp does not have a spec descriptor
      • + +
      • "ERROR" manager does not have a spec descriptor
      • + +
      • "ERROR" docker does not have a spec descriptor
      • + +
      • "ERROR" k3s does not have a spec descriptor
      • + +
      • "ERROR" registry does not have a spec descriptor
      • + +
      • "ERROR" imagePullSecrets does not have a spec descriptor
      • + +
      • "ERROR" controller does not have a spec descriptor
      • + +
      • "ERROR" neuvectors.apm.neuvector.com does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for admissionwebhook
      • + +
      • "WARNING" Add a spec descriptor for crdwebhook
      • + +
      • "WARNING" Add a spec descriptor for enforcer
      • "WARNING" Add a spec descriptor for resources
      • -
      • "WARNING" Add a spec descriptor for ingressController
      • +
      • "WARNING" Add a spec descriptor for containerd
      • + +
      • "WARNING" Add a spec descriptor for openshift
      • + +
      • "WARNING" Add a spec descriptor for cve
      • + +
      • "WARNING" Add a spec descriptor for crio
      • + +
      • "WARNING" Add a spec descriptor for serviceAccount
      • + +
      • "WARNING" Add a spec descriptor for bottlerocket
      • + +
      • "WARNING" Add a spec descriptor for tag
      • + +
      • "WARNING" Add a spec descriptor for oem
      • + +
      • "WARNING" Add a spec descriptor for psp
      • + +
      • "WARNING" Add a spec descriptor for manager
      • + +
      • "WARNING" Add a spec descriptor for docker
      • + +
      • "WARNING" Add a spec descriptor for k3s
      • + +
      • "WARNING" Add a spec descriptor for registry
      • + +
      • "WARNING" Add a spec descriptor for imagePullSecrets
      • + +
      • "WARNING" Add a spec descriptor for controller
      • + +
      • "WARNING" Add CRD validation for Neuvector/v1alpha1
      • @@ -25554,27 +25651,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kong.v0.8.0:

        +

        For neuvector-operator.v1.2.7:

        -

      • "WARNING" (kong.v0.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (neuvector-operator.v1.2.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kongs.charts.helm.k8s.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -25588,31 +25685,41 @@
        Grade
      hpe-ezmeral-csi-operatormattermost-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -25620,40 +25727,64 @@
      Grade

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For mattermost-operator.v0.5.0:

        + +

      • "ERROR" ingressName does not have a spec descriptor
      • + +
      • "ERROR" clusterinstallations.mattermost.com does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add a spec descriptor for ingressName
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For hpe-ezmeral-csi-operator.v1.0.4:

        +

        For mattermost-operator.v0.5.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hpeezmeralcsidrivers.ezmeral.hpe.com" "hpeezmeralnfscsidrivers.ezmeral.hpe.com"])
      • +
      • "WARNING" (mattermost-operator.v0.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterinstallations.mattermost.com"])
      • @@ -25663,35 +25794,45 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade D
      (100)
      minio-operatormysql -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -25701,43 +25842,43 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For minio-operator.v1.0.3:

        +

        For mysqloperator.v1.0.0:

        -

      • "ERROR" error spec does not exist
      • +
      • "ERROR" clusterSpec does not have a spec descriptor
      • -
      • "ERROR" Error: Value /v1, Kind=Secret: example must have a provided API
      • +
      • "ERROR" databaseResource does not have a spec descriptor
      • -
      • "ERROR" Failed to find an owned CRD for CR minio-creds-secret with GVK /v1, Kind=Secret
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" minioinstances.miniocontroller.min.io does not have a status descriptor
      • +
      • "ERROR" slaveReplicas does not have a spec descriptor
      • -
      • "ERROR" requestAutoCert does not have a spec descriptor
      • +
      • "ERROR" mysqlclusters.mysql.grds.cloud does not have a status descriptor
      • -
      • "ERROR" credsSecret does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for requestAutoCert
      • +
      • "WARNING" Add a spec descriptor for clusterSpec
      • -
      • "WARNING" Add a spec descriptor for credsSecret
      • +
      • "WARNING" Add a spec descriptor for databaseResource
      • -
      • "WARNING" Add CRD validation for spec field `credsSecret` in MinIOInstance/v1beta1
      • +
      • "WARNING" Add a spec descriptor for replicas
      • -
      • "WARNING" Add CRD validation for spec field `requestAutoCert` in MinIOInstance/v1beta1
      • +
      • "WARNING" Add a spec descriptor for slaveReplicas
      • @@ -25746,29 +25887,27 @@
        Grade
      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For minio-operator.v1.0.3:

        - -

      • "ERROR" example must have a provided API
      • +

        For mysqloperator.v1.0.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["minioinstances.miniocontroller.min.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["mysqlclusters.mysql.grds.cloud"])
      • @@ -25782,85 +25921,106 @@
        Grade
      planetscalenfd-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • alpha
      -

      NOT USED

      +

      REQUIRED

      + +Info +
      +

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      +
        + +
      • nfd-operator.v0.2.0
      • + +
      • nfd-operator.v0.1.0
      • + +
      +
      +

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For planetscale-operator.v0.1.8:

        +

        For nfd-operator.v0.2.0:

        -

      • "ERROR" psclusters.planetscale.com does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" monitored does not have a spec descriptor
      • +
      • "ERROR" workerConfig does not have a spec descriptor
      • -
      • "ERROR" lockserver does not have a spec descriptor
      • +
      • "ERROR" operand does not have a spec descriptor
      • -
      • "ERROR" cells does not have a spec descriptor
      • +
      • "ERROR" nodefeaturediscoveries.nfd.kubernetes.io does not have a status descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for workerConfig
      • -
      • "WARNING" Add CRD validation for PsCluster/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for operand
      • -
      • "WARNING" Add a spec descriptor for monitored
      • -
      • "WARNING" Add a spec descriptor for lockserver
      • +
        +

        For nfd-operator.v0.1.0:

        -

      • "WARNING" Add a spec descriptor for cells
      • +
      • "ERROR" nodefeaturediscoveries.nfd.kubernetes.io does not have a status descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" namespace does not have a spec descriptor
      • + + +
      • "WARNING" Add CRD validation for spec field `namespace` in NodeFeatureDiscovery/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for namespace
      • @@ -25871,27 +26031,30 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For planetscale-operator.v0.1.8:

        +

        For nfd-operator.v0.2.0:

        -

      • "WARNING" (planetscale-operator.v0.1.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["psclusters.planetscale.com"])
      • +
        +

        For nfd-operator.v0.1.0:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nodefeaturediscoveries.nfd.kubernetes.io"])
      • @@ -25901,28 +26064,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      pystolopsmx-spinnaker-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -25935,11 +26098,11 @@
        Grade

      NOT USED

      @@ -25947,27 +26110,55 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For pystol.v0.8.17:

        +

        For opsmx-spinnaker-operator.v1.20.3:

        -

      • "ERROR" pystolactions.pystol.org does not have a status descriptor
      • +
      • "ERROR" halyard does not have a spec descriptor
      • + +
      • "ERROR" dockerRegistries does not have a spec descriptor
      • + +
      • "ERROR" spinnakerFeatureFlags does not have a spec descriptor
      • + +
      • "ERROR" minio does not have a spec descriptor
      • + +
      • "ERROR" rbac does not have a spec descriptor
      • + +
      • "ERROR" serviceAccount does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" opsmxspinnakeroperators.charts.helm.k8s.io does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for halyard
      • + +
      • "WARNING" Add a spec descriptor for dockerRegistries
      • + +
      • "WARNING" Add a spec descriptor for spinnakerFeatureFlags
      • +
      • "WARNING" Add a spec descriptor for minio
      • + +
      • "WARNING" Add a spec descriptor for rbac
      • + +
      • "WARNING" Add a spec descriptor for serviceAccount
      • + +
      • "WARNING" Add CRD validation for OpsmxSpinnakerOperator/v1alpha1
      • @@ -25978,25 +26169,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For pystol.v0.8.17:

        +

        For opsmx-spinnaker-operator.v1.20.3:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pystolactions.pystol.org"])
      • +
      • "WARNING" (opsmx-spinnaker-operator.v1.20.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["opsmxspinnakeroperators.charts.helm.k8s.io"])
      • @@ -26010,24 +26203,24 @@
        Grade
      enmasseapicast-community-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -26040,11 +26233,11 @@
        Grade

      NOT USED

      @@ -26054,101 +26247,92 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For enmasse.0.32.2:

        - -

      • "ERROR" standardinfraconfigs.admin.enmasse.io does not have a status descriptor
      • - -
      • "ERROR" brokeredinfraconfigs.admin.enmasse.io does not have a status descriptor
      • - -
      • "ERROR" addressplans.admin.enmasse.io does not have a status descriptor
      • - -
      • "ERROR" addressspaceplans.admin.enmasse.io does not have a status descriptor
      • +

        For apicast-community-operator.v0.4.0:

        -

      • "ERROR" authenticationservices.admin.enmasse.io does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" messagingusers.user.enmasse.io does not have a status descriptor
      • +
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • -
      • "ERROR" broker does not have a spec descriptor
      • +
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • -
      • "ERROR" router does not have a spec descriptor
      • +
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • -
      • "ERROR" broker does not have a spec descriptor
      • +
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • -
      • "ERROR" addressType does not have a spec descriptor
      • +
      • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • -
      • "ERROR" resourceLimits does not have a spec descriptor
      • +
      • "ERROR" exposedHost does not have a spec descriptor
      • -
      • "ERROR" addressPlans does not have a spec descriptor
      • +
      • "ERROR" logLevel does not have a spec descriptor
      • -
      • "ERROR" addressSpaceType does not have a spec descriptor
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" standard does not have a spec descriptor
      • -
      • "ERROR" address does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • -
      • "ERROR" authentication does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
      • -
      • "ERROR" authorization does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • -
      • "ERROR" adapters does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for exposedHost
      • -
      • "ERROR" services does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for logLevel
      • -
      • "ERROR" downstreamStrategy does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for replicas
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
        +

        For apicast-community-operator.v0.4.0:

        -

      • "WARNING" Warning: Value admin.enmasse.io/v1beta1, Kind=ConsoleService: provided API should have an example annotation
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Warning: Value enmasse.io/v1beta1, Kind=AddressSpaceSchema: provided API should have an example annotation
      • +
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for broker
      • +
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for router
      • +
      • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for broker
      • +
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for addressType
      • +
      • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for resourceLimits
      • +
      • "ERROR" exposedHost does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for addressPlans
      • +
      • "ERROR" logLevel does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for addressSpaceType
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for standard
      • -
      • "WARNING" Add a spec descriptor for address
      • +
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • -
      • "WARNING" Add a spec descriptor for authentication
      • +
      • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
      • -
      • "WARNING" Add a spec descriptor for authorization
      • +
      • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
      • -
      • "WARNING" Add a spec descriptor for adapters
      • +
      • "WARNING" Add a spec descriptor for exposedHost
      • -
      • "WARNING" Add a spec descriptor for services
      • +
      • "WARNING" Add a spec descriptor for logLevel
      • -
      • "WARNING" Add a spec descriptor for downstreamStrategy
      • +
      • "WARNING" Add a spec descriptor for replicas
      • @@ -26159,31 +26343,32 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For enmasse.0.32.2:

        +

        For apicast-community-operator.v0.4.0:

        -

      • "WARNING" (enmasse.0.32.2) csv.metadata.Name enmasse.0.32.2 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["addresses.enmasse.io" "addressplans.admin.enmasse.io" "addressspaceplans.admin.enmasse.io" "addressspaces.enmasse.io" "addressspaceschemas.enmasse.io" "authenticationservices.admin.enmasse.io" "brokeredinfraconfigs.admin.enmasse.io" "consoleservices.admin.enmasse.io" "iotconfigs.iot.enmasse.io" "iotprojects.iot.enmasse.io" "messagingusers.user.enmasse.io" "standardinfraconfigs.admin.enmasse.io"])
      • -
      • "WARNING" provided API should have an example annotation
      • +
        +

        For apicast-community-operator.v0.4.0:

        -

      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
      • @@ -26197,28 +26382,28 @@
        Grade
      esindex-operatorcluster-impairment-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      @@ -26227,79 +26412,175 @@
      Grade

      NOT USED

      - -

      NOT USED

      -

      PASS

      -

      USED

      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      -
        + +Info +
        +
          + +
          +

          For cluster-impairment-operator.v1.0.0:

          -
          -

          For esindex-operator.v0.1.0:

          +

        • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
        • +
        • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
        • -
        • "WARNING" (esindex-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
        • +
        • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
        • -
        • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["esindices.ibmcloud.ibm.com"])
        • +
        • "ERROR" clusterimpairments.apps.redhat.com does not have a status descriptor
        • + +
        • "ERROR" link_flapping does not have a spec descriptor
        • + +
        • "ERROR" start_delay does not have a spec descriptor
        • + +
        • "ERROR" duration does not have a spec descriptor
        • + +
        • "ERROR" egress does not have a spec descriptor
        • + +
        • "ERROR" ingress does not have a spec descriptor
        • + +
        • "ERROR" interfaces does not have a spec descriptor
        • + +
        • "ERROR" duration does not have a spec descriptor
        • + +
        • "ERROR" interfaces does not have a spec descriptor
        • + +
        • "ERROR" link_flapping does not have a spec descriptor
        • + +
        • "ERROR" start_delay does not have a spec descriptor
        • + +
        • "ERROR" duration does not have a spec descriptor
        • + +
        • "ERROR" egress does not have a spec descriptor
        • + +
        • "ERROR" ingress does not have a spec descriptor
        • + +
        • "ERROR" interfaces does not have a spec descriptor
        • + +
        • "ERROR" loss does not have a spec descriptor
        • + +
        • "ERROR" start_delay does not have a spec descriptor
        • + +
        • "ERROR" duration does not have a spec descriptor
        • + +
        • "ERROR" egress does not have a spec descriptor
        • + +
        • "ERROR" ingress does not have a spec descriptor
        • + +
        • "ERROR" interfaces does not have a spec descriptor
        • + +
        • "ERROR" node_selector does not have a spec descriptor
        • + +
        • "ERROR" start_delay does not have a spec descriptor
        • + +
        • "ERROR" Owned CRDs do not have resources specified
        • + + +
        • "WARNING" Add CRD validation for spec field `loss` in ClusterImpairment/v1alpha1
        • + +
        • "WARNING" Add a spec descriptor for link_flapping
        • + +
        • "WARNING" Add a spec descriptor for start_delay
        • + +
        • "WARNING" Add a spec descriptor for duration
        • + +
        • "WARNING" Add a spec descriptor for egress
        • + +
        • "WARNING" Add a spec descriptor for ingress
        • + +
        • "WARNING" Add a spec descriptor for interfaces
        • + +
        • "WARNING" Add a spec descriptor for duration
        • + +
        • "WARNING" Add a spec descriptor for interfaces
        • + +
        • "WARNING" Add a spec descriptor for link_flapping
        • + +
        • "WARNING" Add a spec descriptor for start_delay
        • + +
        • "WARNING" Add a spec descriptor for duration
        • + +
        • "WARNING" Add a spec descriptor for egress
        • + +
        • "WARNING" Add a spec descriptor for ingress
        • + +
        • "WARNING" Add a spec descriptor for interfaces
        • + +
        • "WARNING" Add a spec descriptor for loss
        • + +
        • "WARNING" Add a spec descriptor for start_delay
        • + +
        • "WARNING" Add a spec descriptor for duration
        • + +
        • "WARNING" Add a spec descriptor for egress
        • + +
        • "WARNING" Add a spec descriptor for ingress
        • + +
        • "WARNING" Add a spec descriptor for interfaces
        • + +
        • "WARNING" Add a spec descriptor for node_selector
        • + +
        • "WARNING" Add a spec descriptor for start_delay
        +
      +

      PASS

      + +

      NOT USED

      Grade D
      (300)
      Grade B
      (700)
      falcoibm-application-gateway-operator -

      NOT COMPLY

      +

      NOT COMPLY

      COMPLY

      @@ -26308,11 +26589,11 @@
      Grade

      NOT USED

      @@ -26322,41 +26603,37 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For falco-operator.v0.7.6:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" ebpf does not have a spec descriptor
      • +

        For ibm-application-gateway-operator.v21.6.0:

        -

      • "ERROR" customRules does not have a spec descriptor
      • +
      • "ERROR" configuration does not have a spec descriptor
      • -
      • "ERROR" falcos.falco.org does not have a status descriptor
      • +
      • "ERROR" deployment does not have a spec descriptor
      • -
      • "ERROR" falcos.falco.org does not have a status descriptor
      • +
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "ERROR" ibmapplicationgateways.ibm.com does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for Falco/v1alpha1
      • -
      • "WARNING" Add CRD validation for Falco/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for configuration
      • -
      • "WARNING" Add a spec descriptor for ebpf
      • +
      • "WARNING" Add a spec descriptor for deployment
      • -
      • "WARNING" Add a spec descriptor for customRules
      • +
      • "WARNING" Add a spec descriptor for replicas
      • @@ -26367,27 +26644,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For falco-operator.v0.7.6:

        +

        For ibm-application-gateway-operator.v21.6.0:

        -

      • "WARNING" (falco-operator.v0.7.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (ibm-application-gateway-operator.v21.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ibmapplicationgateways.ibm.com"])
      • @@ -26401,36 +26678,28 @@
        Grade
      hive-operatorkubemod -

      PARTIAL COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • ocm-2.3
      • - -
      • ocm-2.2
      • - -
      • alpha
      • - -
      • ocm-2.4
      • - -
      • ocm-2.1
      • +
      • beta
      @@ -26439,11 +26708,11 @@
      Grade

      NOT USED

      @@ -26451,271 +26720,56 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        - - -
        -

        For hive-operator.v1.1.9-1.1.8.2:

        - -

      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" managedDomains does not have a spec descriptor
      • - - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • - -
      • "WARNING" Add a spec descriptor for managedDomains
      • - - -
        -

        For hive-operator.v1.0.11:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • - -
      • "ERROR" managedDomains does not have a spec descriptor
      • - - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • - -
      • "WARNING" Add a spec descriptor for managedDomains
      • - - -
        -

        For hive-operator.v1.1.15:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" managedDomains does not have a spec descriptor
      • - -
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • - - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • - -
      • "WARNING" Add a spec descriptor for managedDomains
      • - - -
        -

        For hive-operator.v1.1.15:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" managedDomains does not have a spec descriptor
      • - -
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • - - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • - -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • - -
      • "WARNING" Add a spec descriptor for managedDomains
      • - +

        ONLY ERRORS

        + + + +Info +
        +
          +
          -

          For hive-operator.v1.0.17:

          - -

        • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
        • - -
        • "ERROR" managedDomains does not have a spec descriptor
        • - -
        • "ERROR" Owned CRDs do not have resources specified
        • - - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
        • - -
        • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
        • +

          For kubemod.v0.6.0:

          -

        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
        • +
        • "ERROR" modrules.api.kubemod.io does not have a status descriptor
        • -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
        • -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
        • -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
        • -
        • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
        • +
        +
        + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • +
        +

        For kubemod.v0.6.0:

        -

      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for managedDomains
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["modrules.api.kubemod.io"])
      • @@ -26723,436 +26777,486 @@
        Grade

      NOT USED

      Grade D
      (100)
      tektoncd-operator +

      COMPLY

      +
      -

      ONLY WARNINGS

      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      - +Info -
      -
        - - -
        -

        For hive-operator.v1.1.9-1.1.8.2:

        +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        + +
        +

        For tektoncd-operator.v0.49.0:

        -

      • "WARNING" (hive-operator.v1.1.9-1.1.8.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" tektonconfigs.operator.tekton.dev does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" tektondashboards.operator.tekton.dev does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" tektonpipelines.operator.tekton.dev does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" tektonresults.operator.tekton.dev does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" tektontriggers.operator.tekton.dev does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" profile does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetNamespace does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetNamespace does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetNamespace does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetNamespace does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetNamespace does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for profile
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for targetNamespace
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for targetNamespace
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for targetNamespace
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for targetNamespace
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for targetNamespace
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add CRD validation for spec field `profile` in TektonConfig/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonConfig/v1alpha1
      • -
        -

        For hive-operator.v1.0.11:

        +

      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonDashboard/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonPipeline/v1alpha1
      • -
      • "WARNING" (hive-operator.v1.0.11) csv.Spec.Icon not specified
      • +
      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonTrigger/v1alpha1
      • -
      • "WARNING" (hive-operator.v1.0.11) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io"])
      • -
      • "WARNING" provided API should have an example annotation
      • +
      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
        +

        For tektoncd-operator.v0.49.0:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (tektoncd-operator.v0.49.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      +
      + +

      NOT USED

      Grade B
      (600)
      victoriametrics-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • beta
      • + +
      +
      + +
      +

      NOT USED

      + + +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" provided API should have an example annotation
      • + +
        +

        For victoriametrics-operator.v0.18.1:

        -

      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmagents.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmalerts.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmalertmanagers.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmalertmanagerconfigs.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmauths.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmclusters.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmnodescrapes.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmpodscrapes.operator.victoriametrics.com does not have a status descriptor
      • +
      • "ERROR" vmprobes.operator.victoriametrics.com does not have a status descriptor
      • -
        -

        For hive-operator.v1.1.15:

        +

      • "ERROR" vmrules.operator.victoriametrics.com does not have a status descriptor
      • +
      • "ERROR" vmservicescrapes.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" (hive-operator.v1.1.15) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" vmservicescrapes.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmsingles.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmstaticscrapes.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmusers.operator.victoriametrics.com does not have a status descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" extraArgs does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" podScrapeSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" serviceScrapeSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" nodeScrapeSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" probeSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" remoteWrite does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" staticScrapeSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" evaluationInterval does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" notifiers does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" remoteRead does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" remoteWrite does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" ruleSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" datasource does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" configRawYaml does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" configSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" configNamespaceSelector does not have a spec descriptor
      • +
      • "ERROR" receivers does not have a spec descriptor
      • -
        -

        For hive-operator.v1.1.15:

        +

      • "ERROR" route does not have a spec descriptor
      • +
      • "ERROR" userNamespaceSelector does not have a spec descriptor
      • -
      • "WARNING" (hive-operator.v1.1.15) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" userSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vminsert does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmselect does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" vmstorage does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" replicationFactor does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" retentionPeriod does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" path does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" relabelConfigs does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" scheme does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetLabels does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" bearerTokenFile does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" interval does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" scrapeTimeout does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" selector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" tlsConfig does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" jobLabel does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" port does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" podMetricsEndpoints does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" selector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" module does not have a spec descriptor
      • +
      • "ERROR" targets does not have a spec descriptor
      • -
        -

        For hive-operator.v1.0.17:

        +

      • "ERROR" vmProberSpec does not have a spec descriptor
      • +
      • "ERROR" interval does not have a spec descriptor
      • -
      • "WARNING" (hive-operator.v1.0.17) csv.Spec.Icon not specified
      • +
      • "ERROR" jobName does not have a spec descriptor
      • -
      • "WARNING" (hive-operator.v1.0.17) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" groups does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io"])
      • +
      • "ERROR" selector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" endpoints does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" discoveryRole does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" endpoints does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" namespaceSelector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" selector does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" removePvcAfterDelete does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" retentionPeriod does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" storage does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" jobName does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetEndpoints does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" password does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" targetRefs does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" username does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for extraArgs
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for podScrapeSelector
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for serviceScrapeSelector
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for nodeScrapeSelector
      • +
      • "WARNING" Add a spec descriptor for probeSelector
      • +
      • "WARNING" Add a spec descriptor for remoteWrite
      • -
      -
      - -

      NOT USED

      Grade D
      (200)
      sigstore-helm-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for staticScrapeSelector
      • - -
        -

        For sigstore-helm-operator.v0.0.1:

        +

      • "WARNING" Add a spec descriptor for evaluationInterval
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for notifiers
      • -
      • "ERROR" rekors.helm.sigstore.dev does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for remoteRead
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for remoteWrite
      • +
      • "WARNING" Add a spec descriptor for ruleSelector
      • -
      • "WARNING" Add CRD validation for spec field `server` in Rekor/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for datasource
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for configRawYaml
      • +
      • "WARNING" Add a spec descriptor for configSelector
      • +
      • "WARNING" Add a spec descriptor for configNamespaceSelector
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for receivers
      • +
      • "WARNING" Add a spec descriptor for route
      • -
        -

        For sigstore-helm-operator.v0.0.1:

        +

      • "WARNING" Add a spec descriptor for userNamespaceSelector
      • +
      • "WARNING" Add a spec descriptor for userSelector
      • -
      • "WARNING" (sigstore-helm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for vminsert
      • +
      • "WARNING" Add a spec descriptor for vmselect
      • +
      • "WARNING" Add a spec descriptor for vmstorage
      • -
      -
      - -

      NOT USED

      Grade B
      (600)
      snapscheduler -

      COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      USED

      -

      ONLY ERRORS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for replicationFactor
      • - -
        -

        For snapscheduler.v2.0.0:

        +

      • "WARNING" Add a spec descriptor for retentionPeriod
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for path
      • + +
      • "WARNING" Add a spec descriptor for relabelConfigs
      • +
      • "WARNING" Add a spec descriptor for scheme
      • +
      • "WARNING" Add a spec descriptor for targetLabels
      • -
        -

        For snapscheduler.v2.0.0:

        +

      • "WARNING" Add a spec descriptor for bearerTokenFile
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for scrapeTimeout
      • + +
      • "WARNING" Add a spec descriptor for selector
      • + +
      • "WARNING" Add a spec descriptor for tlsConfig
      • + +
      • "WARNING" Add a spec descriptor for jobLabel
      • + +
      • "WARNING" Add a spec descriptor for port
      • + +
      • "WARNING" Add a spec descriptor for podMetricsEndpoints
      • + +
      • "WARNING" Add a spec descriptor for selector
      • + +
      • "WARNING" Add a spec descriptor for module
      • + +
      • "WARNING" Add a spec descriptor for targets
      • + +
      • "WARNING" Add a spec descriptor for vmProberSpec
      • + +
      • "WARNING" Add a spec descriptor for interval
      • + +
      • "WARNING" Add a spec descriptor for jobName
      • + +
      • "WARNING" Add a spec descriptor for groups
      • + +
      • "WARNING" Add a spec descriptor for selector
      • + +
      • "WARNING" Add a spec descriptor for endpoints
      • + +
      • "WARNING" Add a spec descriptor for discoveryRole
      • + +
      • "WARNING" Add a spec descriptor for endpoints
      • + +
      • "WARNING" Add a spec descriptor for namespaceSelector
      • + +
      • "WARNING" Add a spec descriptor for selector
      • + +
      • "WARNING" Add a spec descriptor for removePvcAfterDelete
      • + +
      • "WARNING" Add a spec descriptor for retentionPeriod
      • + +
      • "WARNING" Add a spec descriptor for storage
      • + +
      • "WARNING" Add a spec descriptor for jobName
      • + +
      • "WARNING" Add a spec descriptor for targetEndpoints
      • + +
      • "WARNING" Add a spec descriptor for password
      • + +
      • "WARNING" Add a spec descriptor for targetRefs
      • +
      • "WARNING" Add a spec descriptor for username
      • @@ -27161,115 +27265,58 @@
        Grade
      -

      PASS

      - - -

      NOT USED

      Grade B
      (800)
      synapse-helm -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      PASS

      +

      ONLY WARNINGS

      -
      -

      PASS

      - + +Info +
      +
        + + +
        +

        For victoriametrics-operator.v0.18.1:

        + + +

      • "WARNING" (victoriametrics-operator.v0.18.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + + + +
      +

      NOT USED

      Grade A
      (900)
      Grade B
      (600)
      t8cyaks -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -27282,11 +27329,11 @@
        Grade

      NOT USED

      @@ -27296,44 +27343,33 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For t8c-operator.v7.22.0:

        - -

      • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" global does not have a spec descriptor
      • - - -
      • "WARNING" Add a spec descriptor for global
      • - +

        For yaks-operator.v0.5.0:

        -
        -

        For t8c-operator.v8.2.0:

        +

      • "ERROR" tests.yaks.citrusframework.org does not have a status descriptor
      • -
      • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
      • +
      • "ERROR" source does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" global does not have a spec descriptor
      • +
      • "WARNING" Warning: Value yaks.citrusframework.org/v1alpha1, Kind=Instance: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for global
      • +
      • "WARNING" Add a spec descriptor for source
      • @@ -27344,36 +27380,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For t8c-operator.v7.22.0:

        - - -

      • "WARNING" (t8c-operator.v7.22.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - - -
        -

        For t8c-operator.v8.2.0:

        - +

        For yaks-operator.v0.5.0:

        -

      • "WARNING" (t8c-operator.v8.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" provided API should have an example annotation
      • @@ -27383,32 +27408,32 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      api-operatorovms-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • 2.x-stable
      • +
      • alpha
      @@ -27417,220 +27442,173 @@
      Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For api-operator.v2.0.0:

        - -

      • "ERROR" apis.wso2.com does not have a status descriptor
      • - -
      • "ERROR" integrations.wso2.com does not have a status descriptor
      • - -
      • "ERROR" targetendpoints.wso2.com does not have a status descriptor
      • - -
      • "ERROR" swaggerConfigMapName does not have a spec descriptor
      • - -
      • "ERROR" certsValues does not have a spec descriptor
      • - -
      • "ERROR" paramsValues does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" autoScale does not have a spec descriptor
      • - -
      • "ERROR" deploySpec does not have a spec descriptor
      • - -
      • "ERROR" env does not have a spec descriptor
      • - -
      • "ERROR" expose does not have a spec descriptor
      • - -
      • "ERROR" applicationProtocol does not have a spec descriptor
      • - -
      • "ERROR" deploy does not have a spec descriptor
      • - -
      • "ERROR" mode does not have a spec descriptor
      • - -
      • "ERROR" ports does not have a spec descriptor
      • +

        For ovms-operator.v0.1.0:

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" gcp_creds_secret_name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for swaggerConfigMapName
      • - -
      • "WARNING" Add a spec descriptor for certsValues
      • - -
      • "WARNING" Add a spec descriptor for paramsValues
      • - -
      • "WARNING" Add a spec descriptor for image
      • - -
      • "WARNING" Add a spec descriptor for autoScale
      • - -
      • "WARNING" Add a spec descriptor for deploySpec
      • - -
      • "WARNING" Add a spec descriptor for env
      • - -
      • "WARNING" Add a spec descriptor for expose
      • - -
      • "WARNING" Add a spec descriptor for applicationProtocol
      • - -
      • "WARNING" Add a spec descriptor for deploy
      • +
      • "ERROR" image_name does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for ports
      • +
      • "ERROR" s3_compat_api_endpoint does not have a spec descriptor
      • +
      • "ERROR" service_type does not have a spec descriptor
      • -
        -

        For api-operator.v1.2.3:

        +

      • "ERROR" aws_region does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" aws_secret_access_key does not have a spec descriptor
      • -
      • "ERROR" securities.wso2.com does not have a status descriptor
      • +
      • "ERROR" config_configmap_name does not have a spec descriptor
      • -
      • "ERROR" securities.wso2.com does not have a status descriptor
      • +
      • "ERROR" model_name does not have a spec descriptor
      • -
      • "ERROR" securities.wso2.com does not have a status descriptor
      • +
      • "ERROR" model_path does not have a spec descriptor
      • -
      • "ERROR" securities.wso2.com does not have a status descriptor
      • +
      • "ERROR" aws_access_key_id does not have a spec descriptor
      • -
      • "ERROR" securities.wso2.com does not have a status descriptor
      • +
      • "ERROR" log_level does not have a spec descriptor
      • -
      • "ERROR" apis.wso2.com does not have a status descriptor
      • +
      • "ERROR" nireq does not have a spec descriptor
      • -
      • "ERROR" ratelimitings.wso2.com does not have a status descriptor
      • +
      • "ERROR" plugin_config does not have a spec descriptor
      • -
      • "ERROR" targetendpoints.wso2.com does not have a status descriptor
      • +
      • "ERROR" rest_port does not have a spec descriptor
      • -
      • "ERROR" securityConfig does not have a spec descriptor
      • +
      • "ERROR" security_context does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" target_device does not have a spec descriptor
      • -
      • "ERROR" securityConfig does not have a spec descriptor
      • +
      • "ERROR" grpc_port does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" https_proxy does not have a spec descriptor
      • -
      • "ERROR" securityConfig does not have a spec descriptor
      • +
      • "ERROR" models_host_path does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" models_volume_claim does not have a spec descriptor
      • -
      • "ERROR" securityConfig does not have a spec descriptor
      • +
      • "ERROR" resources does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" ovms.intel.com does not have a status descriptor
      • -
      • "ERROR" securityConfig does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `grpc_port` in Ovms/v1alpha1
      • -
      • "ERROR" definition does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `https_proxy` in Ovms/v1alpha1
      • -
      • "ERROR" mode does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `image_name` in Ovms/v1alpha1
      • -
      • "ERROR" override does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `log_level` in Ovms/v1alpha1
      • -
      • "ERROR" replicas does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `models_volume_claim` in Ovms/v1alpha1
      • -
      • "ERROR" conditions does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `replicas` in Ovms/v1alpha1
      • -
      • "ERROR" description does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `aws_access_key_id` in Ovms/v1alpha1
      • -
      • "ERROR" requestCount does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `config_configmap_name` in Ovms/v1alpha1
      • -
      • "ERROR" stopOnQuotaReach does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `security_context` in Ovms/v1alpha1
      • -
      • "ERROR" timeUnit does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `nireq` in Ovms/v1alpha1
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `service_type` in Ovms/v1alpha1
      • -
      • "ERROR" unitTime does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `target_device` in Ovms/v1alpha1
      • -
      • "ERROR" bandwidth does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `aws_region` in Ovms/v1alpha1
      • -
      • "ERROR" applicationProtocol does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `gcp_creds_secret_name` in Ovms/v1alpha1
      • -
      • "ERROR" deploy does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `resources` in Ovms/v1alpha1
      • -
      • "ERROR" mode does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `rest_port` in Ovms/v1alpha1
      • -
      • "ERROR" ports does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `s3_compat_api_endpoint` in Ovms/v1alpha1
      • +
      • "WARNING" Add CRD validation for spec field `model_path` in Ovms/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for securityConfig
      • +
      • "WARNING" Add CRD validation for spec field `models_host_path` in Ovms/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add CRD validation for spec field `plugin_config` in Ovms/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for securityConfig
      • +
      • "WARNING" Add CRD validation for spec field `aws_secret_access_key` in Ovms/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add CRD validation for spec field `model_name` in Ovms/v1alpha1
      • -
      • "WARNING" Add a spec descriptor for securityConfig
      • +
      • "WARNING" Add a spec descriptor for gcp_creds_secret_name
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for image_name
      • -
      • "WARNING" Add a spec descriptor for securityConfig
      • +
      • "WARNING" Add a spec descriptor for replicas
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for s3_compat_api_endpoint
      • -
      • "WARNING" Add a spec descriptor for securityConfig
      • +
      • "WARNING" Add a spec descriptor for service_type
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for aws_region
      • -
      • "WARNING" Add a spec descriptor for definition
      • +
      • "WARNING" Add a spec descriptor for aws_secret_access_key
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for config_configmap_name
      • -
      • "WARNING" Add a spec descriptor for override
      • +
      • "WARNING" Add a spec descriptor for model_name
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "WARNING" Add a spec descriptor for model_path
      • -
      • "WARNING" Add a spec descriptor for conditions
      • +
      • "WARNING" Add a spec descriptor for aws_access_key_id
      • -
      • "WARNING" Add a spec descriptor for description
      • +
      • "WARNING" Add a spec descriptor for log_level
      • -
      • "WARNING" Add a spec descriptor for requestCount
      • +
      • "WARNING" Add a spec descriptor for nireq
      • -
      • "WARNING" Add a spec descriptor for stopOnQuotaReach
      • +
      • "WARNING" Add a spec descriptor for plugin_config
      • -
      • "WARNING" Add a spec descriptor for timeUnit
      • +
      • "WARNING" Add a spec descriptor for rest_port
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for security_context
      • -
      • "WARNING" Add a spec descriptor for unitTime
      • +
      • "WARNING" Add a spec descriptor for target_device
      • -
      • "WARNING" Add a spec descriptor for bandwidth
      • +
      • "WARNING" Add a spec descriptor for grpc_port
      • -
      • "WARNING" Add a spec descriptor for applicationProtocol
      • +
      • "WARNING" Add a spec descriptor for https_proxy
      • -
      • "WARNING" Add a spec descriptor for deploy
      • +
      • "WARNING" Add a spec descriptor for models_host_path
      • -
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for models_volume_claim
      • -
      • "WARNING" Add a spec descriptor for ports
      • +
      • "WARNING" Add a spec descriptor for resources
      • @@ -27641,36 +27619,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For api-operator.v2.0.0:

        - - -

      • "WARNING" (api-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apis.wso2.com" "integrations.wso2.com" "targetendpoints.wso2.com"])
      • - - -
        -

        For api-operator.v1.2.3:

        - +

        For ovms-operator.v0.1.0:

        -

      • "WARNING" (api-operator.v1.2.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apis.wso2.com" "ratelimitings.wso2.com" "securities.wso2.com" "targetendpoints.wso2.com"])
      • +
      • "WARNING" (ovms-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -27680,35 +27647,45 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade B
      (600)
      jaegerappdynamics-operator -

      COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -27716,31 +27693,83 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For jaeger-operator.v1.24.0:

        +

        For appdynamics-operator.v0.6.10:

        -

      • "ERROR" error spec does not exist
      • +
      • "ERROR" adams.appdynamics.com does not have a status descriptor
      • + +
      • "ERROR" clusteragents.appdynamics.com does not have a status descriptor
      • + +
      • "ERROR" infravizs.appdynamics.com does not have a status descriptor
      • + +
      • "ERROR" controllerUrl does not have a spec descriptor
      • + +
      • "ERROR" account does not have a spec descriptor
      • + +
      • "ERROR" appName does not have a spec descriptor
      • + +
      • "ERROR" controllerUrl does not have a spec descriptor
      • + +
      • "ERROR" stdoutLogging does not have a spec descriptor
      • + +
      • "ERROR" account does not have a spec descriptor
      • + +
      • "ERROR" controllerUrl does not have a spec descriptor
      • + +
      • "ERROR" enableDockerViz does not have a spec descriptor
      • + +
      • "ERROR" enableMasters does not have a spec descriptor
      • + +
      • "ERROR" globalAccount does not have a spec descriptor
      • + +
      • "ERROR" netVizPort does not have a spec descriptor
      • + +
      • "ERROR" stdoutLogging does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
      • +
      • "WARNING" Warning: Value appdynamics.com/v1alpha1, Kind=Clustercollector: provided API should have an example annotation
      • + +
      • "WARNING" Add a spec descriptor for controllerUrl
      • + +
      • "WARNING" Add a spec descriptor for account
      • + +
      • "WARNING" Add a spec descriptor for appName
      • + +
      • "WARNING" Add a spec descriptor for controllerUrl
      • + +
      • "WARNING" Add a spec descriptor for stdoutLogging
      • + +
      • "WARNING" Add a spec descriptor for account
      • + +
      • "WARNING" Add a spec descriptor for controllerUrl
      • + +
      • "WARNING" Add a spec descriptor for enableDockerViz
      • + +
      • "WARNING" Add a spec descriptor for enableMasters
      • + +
      • "WARNING" Add a spec descriptor for globalAccount
      • + +
      • "WARNING" Add a spec descriptor for netVizPort
      • + +
      • "WARNING" Add a spec descriptor for stdoutLogging
      • @@ -27751,25 +27780,29 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For jaeger-operator.v1.24.0:

        +

        For appdynamics-operator.v0.6.10:

        -

      • "WARNING" (jaeger-operator.v1.24.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (appdynamics-operator.v0.6.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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" "infravizs.appdynamics.com"])
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -27779,28 +27812,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      nfd-operatorelastic-phenix-operator -

      PARTIAL COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -27811,112 +27844,54 @@
        Grade
      -

      REQUIRED

      - - - +Info -
      -

      If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
        - -
      • nfd-operator.v0.2.0
      • - -
      • nfd-operator.v0.1.0
      • - -
      -
      - -

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      NOT USED

      - - +Info -
      -
        - - -
        -

        For nfd-operator.v0.2.0:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" workerConfig does not have a spec descriptor
      • - -
      • "ERROR" operand does not have a spec descriptor
      • - -
      • "ERROR" nodefeaturediscoveries.nfd.kubernetes.io does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for workerConfig
      • - -
      • "WARNING" Add a spec descriptor for operand
      • - - -
        -

        For nfd-operator.v0.1.0:

        - -

      • "ERROR" nodefeaturediscoveries.nfd.kubernetes.io does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" namespace does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `namespace` in NodeFeatureDiscovery/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for namespace
      • - - - -
      -
      + + #disco-showelastic-phenix-operator:target { + display: block; + } + + +

      NOT USED

      +

      PASS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For nfd-operator.v0.2.0:

        - - - -
        -

        For nfd-operator.v0.1.0:

        +

        For elastic-phenix-operator.v0.1.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nodefeaturediscoveries.nfd.kubernetes.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["elasticindices.elastic.carrefour.com" "elastictemplates.elastic.carrefour.com"])
      • @@ -27926,32 +27901,40 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (300)
      rook-cephhive-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • beta
      • +
      • ocm-2.3
      • + +
      • ocm-2.2
      • + +
      • alpha
      • + +
      • ocm-2.4
      • + +
      • ocm-2.1
      @@ -27960,11 +27943,11 @@
      Grade

      NOT USED

      @@ -27974,287 +27957,269 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For rook-ceph.v1.1.1:

        - -

      • "ERROR" cephclusters.ceph.rook.io does not have a status descriptor
      • - -
      • "ERROR" cephblockpools.ceph.rook.io does not have a status descriptor
      • +

        For hive-operator.v1.1.9-1.1.8.2:

        -

      • "ERROR" cephobjectstores.ceph.rook.io does not have a status descriptor
      • +
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • -
      • "ERROR" cephobjectstoreusers.ceph.rook.io does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" cephnfses.ceph.rook.io does not have a status descriptor
      • +
      • "ERROR" managedDomains does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" cephVersion does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • -
      • "ERROR" dataDirHostPath does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • -
      • "ERROR" mon does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • -
      • "ERROR" dashboard does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • -
      • "ERROR" network does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
      • -
      • "ERROR" rbdMirroring does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • -
      • "ERROR" failureDomain does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • -
      • "ERROR" replicated does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • -
      • "ERROR" annotations does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • -
      • "ERROR" dataPool does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • -
      • "ERROR" gateway does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • -
      • "ERROR" metadataPool does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • -
      • "ERROR" store does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • -
      • "ERROR" displayName does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • -
      • "ERROR" rados does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • -
      • "WARNING" Add CRD validation for spec field `rbdMirroring` in CephCluster/v1
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • -
      • "WARNING" Add CRD validation for CephBlockPool/v1
      • +
      • "WARNING" Add a spec descriptor for managedDomains
      • -
      • "WARNING" Add CRD validation for CephObjectStore/v1
      • -
      • "WARNING" Add CRD validation for CephObjectStoreUser/v1
      • +
        +

        For hive-operator.v1.0.11:

        -

      • "WARNING" Add a spec descriptor for cephVersion
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for dataDirHostPath
      • +
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for mon
      • +
      • "ERROR" managedDomains does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for dashboard
      • -
      • "WARNING" Add a spec descriptor for network
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for rbdMirroring
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for failureDomain
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for replicated
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for annotations
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for dataPool
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for gateway
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for metadataPool
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for store
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for displayName
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for rados
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • -
        -

        For rook-ceph.v1.1.1:

        +

      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for managedDomains
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cephblockpools.ceph.rook.io" "cephclusters.ceph.rook.io" "cephnfses.ceph.rook.io" "cephobjectstores.ceph.rook.io" "cephobjectstoreusers.ceph.rook.io"])
      • +
        +

        For hive-operator.v1.1.15:

        +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" managedDomains does not have a spec descriptor
      • + +
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • + + +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • + +
      • "WARNING" Add a spec descriptor for managedDomains
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      tf-operator -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        -
        -

        For tf-operator.v0.0.1-2011:

        +

        For hive-operator.v1.1.15:

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" managers.tf.tungsten.io does not have a status descriptor
      • +
      • "ERROR" managedDomains does not have a spec descriptor
      • -
      • "ERROR" commonConfiguration does not have a spec descriptor
      • +
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • -
      • "ERROR" services does not have a spec descriptor
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for commonConfiguration
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for services
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Vrouter: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Webui: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Zookeeper: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Rabbitmq: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsAlarm: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsSnmp: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Cassandra: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Config: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Control: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Kubemanager: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • + +
      • "WARNING" Add a spec descriptor for managedDomains

      • -

        For tf-operator.latest:

        +

        For hive-operator.v1.0.17:

        -

      • "ERROR" error getting custom resources
      • +
      • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
      • -
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • +
      • "ERROR" managedDomains does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • -
      • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Vrouter: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Webui: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Analytics: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsAlarm: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Cassandra: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Redis: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Control: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Zookeeper: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=AnalyticsSnmp: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Kubemanager: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Rabbitmq: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=QueryEngine: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Config: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
      • + +
      • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
      • + +
      • "WARNING" Add a spec descriptor for managedDomains
      • @@ -28265,27 +28230,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For tf-operator.v0.0.1-2011:

        +

        For hive-operator.v1.1.9-1.1.8.2:

        -

      • "WARNING" (tf-operator.v0.0.1-2011) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (hive-operator.v1.1.9-1.1.8.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["analyticsalarm.tf.tungsten.io" "analyticssnmp.tf.tungsten.io" "cassandras.tf.tungsten.io" "configs.tf.tungsten.io" "controls.tf.tungsten.io" "kubemanagers.tf.tungsten.io" "managers.tf.tungsten.io" "rabbitmqs.tf.tungsten.io" "vrouters.tf.tungsten.io" "webuis.tf.tungsten.io" "zookeepers.tf.tungsten.io"])
      • +
      • "WARNING" provided API should have an example annotation
      • "WARNING" provided API should have an example annotation
      • @@ -28307,14 +28272,15 @@
        Grade
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
        -

        For tf-operator.latest:

        +

      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" (tf-operator.latest) csv.metadata.Name tf-operator.latest is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["analytics.tf.tungsten.io" "analyticsalarm.tf.tungsten.io" "analyticssnmp.tf.tungsten.io" "cassandras.tf.tungsten.io" "configs.tf.tungsten.io" "controls.tf.tungsten.io" "kubemanagers.tf.tungsten.io" "managers.tf.tungsten.io" "queryengine.tf.tungsten.io" "rabbitmqs.tf.tungsten.io" "redis.tf.tungsten.io" "vrouters.tf.tungsten.io" "webuis.tf.tungsten.io" "zookeepers.tf.tungsten.io"])
      • +
      • "WARNING" provided API should have an example annotation
      • "WARNING" provided API should have an example annotation
      • @@ -28322,6 +28288,17 @@
        Grade
      • "WARNING" provided API should have an example annotation
      • + +
        +

        For hive-operator.v1.0.11:

        + + +

      • "WARNING" (hive-operator.v1.0.11) csv.Spec.Icon not specified
      • + +
      • "WARNING" (hive-operator.v1.0.11) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io"])
      • +
      • "WARNING" provided API should have an example annotation
      • "WARNING" provided API should have an example annotation
      • @@ -28342,384 +28319,158 @@
        Grade
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      varnish-operator -

      COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" provided API should have an example annotation
      • - -
        -

        For varnish-operator.v0.27.2:

        +

      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" varnishclusters.caching.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" varnish does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" vcl does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" backend does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" service does not have a spec descriptor
      • +
        +

        For hive-operator.v1.1.15:

        + -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" (hive-operator.v1.1.15) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for varnish
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for vcl
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for backend
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for replicas
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for service
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
        -

        For varnish-operator.v0.27.2:

        +

      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" (varnish-operator.v0.27.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      -
      - -

      NOT USED

      Grade B
      (600)
      wavefront -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" provided API should have an example annotation
      • - -
        -

        For wavefront-operator.v0.1.0:

        +

      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" wavefrontproxies.wavefront.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" wavefrontcollectors.wavefront.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" enableAutoUpgrade does not have a spec descriptor
      • -
      • "ERROR" token does not have a spec descriptor
      • +
        +

        For hive-operator.v1.1.15:

        -

      • "ERROR" url does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "WARNING" (hive-operator.v1.1.15) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" daemon does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" enableAutoUpgrade does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" env does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" image does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" tolerations does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for enableAutoUpgrade
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for token
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for url
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for daemon
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for enableAutoUpgrade
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for env
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for tolerations
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" provided API should have an example annotation

      • -

        For wavefront-operator.v0.1.0:

        +

        For hive-operator.v1.0.17:

        -

      • "WARNING" (wavefront-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (hive-operator.v1.0.17) csv.Spec.Icon not specified
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" (hive-operator.v1.0.17) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io"])
      • +
      • "WARNING" provided API should have an example annotation
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      oneagent -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      USED

      -

      ONLY ERRORS

      - - - +Info -
      -
        +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • - -
        -

        For dynatrace-monitoring.v0.10.1:

        +

      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
        -

        For dynatrace-monitoring.v0.10.1:

        +

      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" provided API should have an example annotation
      • @@ -28729,22 +28480,22 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade C
      (500)
      storageosmongodb-enterprise -

      NOT COMPLY

      +

      COMPLY

      COMPLY

      @@ -28753,178 +28504,252 @@
      Grade

      NOT USED

      NOT USED

      USED

      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For storageosoperator.v2.4.2:

        +

        For mongodb-enterprise.v1.12.0:

        +

      • "ERROR" opsmanagers.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Warning: Value storageos.com/v1, Kind=Job: provided API should have an example annotation
      • +
      • "ERROR" mongodbusers.mongodb.com does not have a status descriptor
      • -
      • "WARNING" Warning: Value storageos.com/v1, Kind=StorageOSUpgrade: provided API should have an example annotation
      • +
      • "ERROR" opsManager does not have a spec descriptor
      • -
      • "WARNING" Warning: Value storageos.com/v1, Kind=NFSServer: provided API should have an example annotation
      • +
      • "ERROR" mongosCount does not have a spec descriptor
      • +
      • "ERROR" opsManager does not have a spec descriptor
      • +
      • "ERROR" configServerCount does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" mongodsPerShardCount does not have a spec descriptor
      • +
      • "ERROR" shardCount does not have a spec descriptor
      • -
        -

        For storageosoperator.v2.4.2:

        +

      • "ERROR" applicationDatabase does not have a spec descriptor
      • +
      • "ERROR" configuration does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageosclusters.storageos.com" "jobs.storageos.com" "nfsservers.storageos.com" "storageosupgrades.storageos.com"])
      • +
      • "ERROR" externalConnectivity does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" mongodbResourceRef does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" roles does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • + +
      • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
      • + +
      • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
      • + +
      • "WARNING" Add a spec descriptor for opsManager
      • + +
      • "WARNING" Add a spec descriptor for mongosCount
      • + +
      • "WARNING" Add a spec descriptor for opsManager
      • + +
      • "WARNING" Add a spec descriptor for configServerCount
      • + +
      • "WARNING" Add a spec descriptor for mongodsPerShardCount
      • + +
      • "WARNING" Add a spec descriptor for shardCount
      • + +
      • "WARNING" Add a spec descriptor for applicationDatabase
      • + +
      • "WARNING" Add a spec descriptor for configuration
      • + +
      • "WARNING" Add a spec descriptor for externalConnectivity
      • + +
      • "WARNING" Add a spec descriptor for mongodbResourceRef
      • + +
      • "WARNING" Add a spec descriptor for roles
      +
      +

      PASS

      + +

      NOT USED

      Grade D
      (300)
      Grade B
      (800)
      eclipse-checommunity-kubevirt-hyperconverged

      COMPLY

      COMPLY

      -

      NOT USED

      +

      USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For eclipse-che.v7.35.2:

        +

        For kubevirt-hyperconverged-operator.v1.4.1:

        -

      • "ERROR" auth does not have a spec descriptor
      • +
      • "ERROR" multus does not have a spec descriptor
      • -
      • "ERROR" database does not have a spec descriptor
      • +
      • "ERROR" nmstate does not have a spec descriptor
      • -
      • "ERROR" devWorkspace does not have a spec descriptor
      • +
      • "ERROR" ovs does not have a spec descriptor
      • -
      • "ERROR" k8s does not have a spec descriptor
      • +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • -
      • "ERROR" metrics does not have a spec descriptor
      • +
      • "ERROR" kubeMacPool does not have a spec descriptor
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "ERROR" linuxBridge does not have a spec descriptor
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "ERROR" macvtap does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" commonTemplates does not have a spec descriptor
      • + +
      • "ERROR" templateValidator does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" nodeName does not have a spec descriptor
      • + +
      • "ERROR" reason does not have a spec descriptor
      • + +
      • "ERROR" pathConfig does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" hyperconvergeds.hco.kubevirt.io does not have a status descriptor
      • + +
      • "ERROR" networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io does not have a status descriptor
      • + +
      • "ERROR" kubevirts.kubevirt.io does not have a status descriptor
      • + +
      • "ERROR" ssps.ssp.kubevirt.io does not have a status descriptor
      • + +
      • "ERROR" cdis.cdi.kubevirt.io does not have a status descriptor
      • + +
      • "ERROR" nodemaintenances.nodemaintenance.kubevirt.io does not have a status descriptor
      • + +
      • "ERROR" hostpathprovisioners.hostpathprovisioner.kubevirt.io does not have a status descriptor
      • + +
      • "ERROR" vmimportconfigs.v2v.kubevirt.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for auth
      • +
      • "WARNING" Add a spec descriptor for multus
      • -
      • "WARNING" Add a spec descriptor for database
      • +
      • "WARNING" Add a spec descriptor for nmstate
      • -
      • "WARNING" Add a spec descriptor for devWorkspace
      • +
      • "WARNING" Add a spec descriptor for ovs
      • -
      • "WARNING" Add a spec descriptor for k8s
      • +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • -
      • "WARNING" Add a spec descriptor for metrics
      • +
      • "WARNING" Add a spec descriptor for kubeMacPool
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for linuxBridge
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "WARNING" Add a spec descriptor for macvtap
      • -
      • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheBackupServerConfiguration: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for commonTemplates
      • + +
      • "WARNING" Add a spec descriptor for templateValidator
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for nodeName
      • + +
      • "WARNING" Add a spec descriptor for reason
      • + +
      • "WARNING" Add a spec descriptor for pathConfig
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • -
      • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheClusterBackup: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=OVirtProvider: provided API should have an example annotation
      • -
      • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheClusterRestore: provided API should have an example annotation
      • +
      • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=V2VVmware: provided API should have an example annotation
      • @@ -28935,27 +28760,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For eclipse-che.v7.35.2:

        - +

        For kubevirt-hyperconverged-operator.v1.4.1:

        -

      • "WARNING" (eclipse-che.v7.35.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (kubevirt-hyperconverged-operator.v1.4.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • "WARNING" provided API should have an example annotation
      • @@ -28973,113 +28796,24 @@
        Grade
      logging-operator -

      NOT COMPLY

      -
      enc-key-sync

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      PASS

      - - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        - - -
        -

        For logging-operator.v0.2.0:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["elasticsearches.logging.opstreelabs.in" "fluentds.logging.opstreelabs.in" "indexlifecycles.logging.opstreelabs.in" "indextemplates.logging.opstreelabs.in" "kibanas.logging.opstreelabs.in"])
      • - - - -
      -
      - -

      NOT USED

      Grade D
      (300)
      machine-deletion-operator -

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -29092,47 +28826,53 @@
        Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For machine-deletion.v0.0.1:

        +

        For enc-key-sync-operator.v0.0.1:

        -

      • "ERROR" template does not have a spec descriptor
      • +
      • "ERROR" enckeysyncs.oci.crypt does not have a status descriptor
      • -
      • "ERROR" machinedeletions.machine-deletion.medik8s.io does not have a status descriptor
      • +
      • "ERROR" keysDir does not have a spec descriptor
      • -
      • "ERROR" machinedeletiontemplates.machine-deletion.medik8s.io does not have a status descriptor
      • +
      • "ERROR" isOpenShift does not have a spec descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for template
      • +
      • "WARNING" Add a spec descriptor for keysDir
      • + +
      • "WARNING" Add a spec descriptor for isOpenShift
      • + +
      • "WARNING" Add CRD validation for spec field `keysDir` in EncKeySync/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `isOpenShift` in EncKeySync/v1alpha1
      • @@ -29143,25 +28883,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For machine-deletion.v0.0.1:

        +

        For enc-key-sync-operator.v0.0.1:

        -

      • "WARNING" (machine-deletion.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["enckeysyncs.oci.crypt"])
      • @@ -29171,34 +28911,32 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      multicluster-operators-subscriptionmyvirtualdirectory -

      PARTIAL COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • release-2.3
      • - -
      • alpha
      • +
      • beta
      @@ -29207,11 +28945,11 @@
      Grade

      NOT USED

      @@ -29221,96 +28959,69 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For multicluster-operators-subscription.v0.2.8:

        - -

      • "ERROR" type does not have a spec descriptor
      • - -
      • "ERROR" pathname does not have a spec descriptor
      • - -
      • "ERROR" placement does not have a spec descriptor
      • - -
      • "ERROR" packageFilter does not have a spec descriptor
      • - -
      • "ERROR" packageOverrides does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for type
      • - -
      • "WARNING" Add a spec descriptor for pathname
      • - -
      • "WARNING" Add a spec descriptor for placement
      • - -
      • "WARNING" Add a spec descriptor for packageFilter
      • - -
      • "WARNING" Add a spec descriptor for packageOverrides
      • - -
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
      • +

        For myvirtualdirectory.1.0.0:

        -

      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
      • +
      • "ERROR" myvirtualdirectories.myvirtualdirectory.tremolo.io does not have a status descriptor
      • -
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
      • +
      • "ERROR" dest_cfg_map does not have a spec descriptor
      • -
      • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
      • +
      • "ERROR" source_secret does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for status field `state` in Channel/v1
      • +
      • "ERROR" secret_data does not have a spec descriptor
      • +
      • "ERROR" myvd_props does not have a spec descriptor
      • -
        -

        For multicluster-operators-subscription.v0.1.2:

        +

      • "ERROR" key_store does not have a spec descriptor
      • -
      • "ERROR" type does not have a spec descriptor
      • +
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" pathname does not have a spec descriptor
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "ERROR" packageFilter does not have a spec descriptor
      • +
      • "ERROR" dest_secret does not have a spec descriptor
      • -
      • "ERROR" packageOverrides does not have a spec descriptor
      • +
      • "ERROR" non_secret_data does not have a spec descriptor
      • -
      • "ERROR" placement does not have a spec descriptor
      • +
      • "ERROR" myvd_log4j2_xml does not have a spec descriptor
      • -
      • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
      • +
      • "ERROR" myvd_network_configuration does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for dest_cfg_map
      • -
      • "WARNING" Add a spec descriptor for type
      • +
      • "WARNING" Add a spec descriptor for source_secret
      • -
      • "WARNING" Add a spec descriptor for pathname
      • +
      • "WARNING" Add a spec descriptor for secret_data
      • -
      • "WARNING" Add a spec descriptor for packageFilter
      • +
      • "WARNING" Add a spec descriptor for myvd_props
      • -
      • "WARNING" Add a spec descriptor for packageOverrides
      • +
      • "WARNING" Add a spec descriptor for key_store
      • -
      • "WARNING" Add a spec descriptor for placement
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add CRD validation for status field `state` in Channel/v1
      • +
      • "WARNING" Add a spec descriptor for replicas
      • -
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for dest_secret
      • -
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for non_secret_data
      • -
      • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for myvd_log4j2_xml
      • -
      • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for myvd_network_configuration
      • @@ -29321,50 +29032,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For multicluster-operators-subscription.v0.2.8:

        - - -

      • "WARNING" (multicluster-operators-subscription.v0.2.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • - -
      • "WARNING" provided API should have an example annotation
      • - - -
        -

        For multicluster-operators-subscription.v0.1.2:

        - - -

      • "WARNING" (multicluster-operators-subscription.v0.1.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io"])
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For myvirtualdirectory.1.0.0:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (myvirtualdirectory.1.0.0) csv.metadata.Name myvirtualdirectory.1.0.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["myvirtualdirectories.myvirtualdirectory.tremolo.io"])
      • @@ -29374,45 +29062,35 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      hpa-operatorsysdig -

      COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      -

      NOT USED

      @@ -29420,27 +29098,51 @@
      Grade

      NOT USED

      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For hpa-operator.v0.1.6:

        +

        For sysdig-operator.v1.7.2:

        +

      • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
      • + +
      • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
      • + +
      • "ERROR" sysdig does not have a spec descriptor
      • + +
      • "ERROR" sysdig does not have a spec descriptor
      • + +
      • "ERROR" ebpf does not have a spec descriptor
      • + +
      • "ERROR" secure does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Warning: Value : (hpa-operator.v0.1.6) example annotations not found
      • + +
      • "WARNING" Add a spec descriptor for sysdig
      • + +
      • "WARNING" Add a spec descriptor for sysdig
      • + +
      • "WARNING" Add a spec descriptor for ebpf
      • + +
      • "WARNING" Add a spec descriptor for secure
      • + +
      • "WARNING" Add CRD validation for SysdigAgent/v1alpha1
      • + +
      • "WARNING" Add CRD validation for SysdigAgent/v1alpha1
      • @@ -29451,27 +29153,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For hpa-operator.v0.1.6:

        +

        For sysdig-operator.v1.7.2:

        -

      • "WARNING" (hpa-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (sysdig-operator.v1.7.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" (hpa-operator.v0.1.6) example annotations not found
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sysdigagents.sysdig.com"])
      • @@ -29481,35 +29183,45 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (200)
      kube-arangodbkubestone -

      NOT COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -29519,39 +29231,141 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kube-arangodb.v1.0.2:

        +

        For kubestone.v0.4.0:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" drills.perf.kubestone.xridge.io does not have a status descriptor
      • + +
      • "ERROR" fios.perf.kubestone.xridge.io does not have a status descriptor
      • + +
      • "ERROR" iopings.perf.kubestone.xridge.io does not have a status descriptor
      • + +
      • "ERROR" iperf3s.perf.kubestone.xridge.io does not have a status descriptor
      • + +
      • "ERROR" pgbenches.perf.kubestone.xridge.io does not have a status descriptor
      • + +
      • "ERROR" qperves.perf.kubestone.xridge.io does not have a status descriptor
      • + +
      • "ERROR" sysbenches.perf.kubestone.xridge.io does not have a status descriptor
      • + +
      • "ERROR" benchmarkFile does not have a spec descriptor
      • + +
      • "ERROR" benchmarksVolume does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" options does not have a spec descriptor
      • + +
      • "ERROR" cmdLineArgs does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" volume does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" volume does not have a spec descriptor
      • + +
      • "ERROR" args does not have a spec descriptor
      • + +
      • "ERROR" clientConfiguration does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" serverConfiguration does not have a spec descriptor
      • + +
      • "ERROR" udp does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" initArgs does not have a spec descriptor
      • + +
      • "ERROR" postgres does not have a spec descriptor
      • + +
      • "ERROR" serverConfiguration does not have a spec descriptor
      • + +
      • "ERROR" tests does not have a spec descriptor
      • + +
      • "ERROR" clientConfiguration does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" options does not have a spec descriptor
      • + +
      • "ERROR" testName does not have a spec descriptor
      • + +
      • "ERROR" command does not have a spec descriptor
      • "ERROR" image does not have a spec descriptor
      • -
      • "ERROR" arangodeployments.database.arangodb.com does not have a status descriptor
      • +
      • "ERROR" options does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for benchmarkFile
      • + +
      • "WARNING" Add a spec descriptor for benchmarksVolume
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for options
      • + +
      • "WARNING" Add a spec descriptor for cmdLineArgs
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for volume
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for volume
      • + +
      • "WARNING" Add a spec descriptor for args
      • + +
      • "WARNING" Add a spec descriptor for clientConfiguration
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for serverConfiguration
      • + +
      • "WARNING" Add a spec descriptor for udp
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for initArgs
      • + +
      • "WARNING" Add a spec descriptor for postgres
      • + +
      • "WARNING" Add a spec descriptor for serverConfiguration
      • +
      • "WARNING" Add a spec descriptor for tests
      • -
      • "WARNING" Add CRD validation for ArangoDeployment/v1
      • +
      • "WARNING" Add a spec descriptor for clientConfiguration
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackupPolicy: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for options
      • -
      • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackup: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for testName
      • -
      • "WARNING" Warning: Value replication.database.arangodb.com/v1, Kind=ArangoDeploymentReplication: provided API should have an example annotation
      • +
      • "WARNING" Add a spec descriptor for command
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for options
      • @@ -29562,31 +29376,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kube-arangodb.v1.0.2:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - -
      • "WARNING" provided API should have an example annotation
      • +

        For kubestone.v0.4.0:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["drills.perf.kubestone.xridge.io" "fios.perf.kubestone.xridge.io" "iopings.perf.kubestone.xridge.io" "iperf3s.perf.kubestone.xridge.io" "pgbenches.perf.kubestone.xridge.io" "qperves.perf.kubestone.xridge.io" "sysbenches.perf.kubestone.xridge.io"])
      • @@ -29596,45 +29404,35 @@
        Grade

      NOT USED

      Grade D
      (200)
      Grade D
      (100)
      kubeflowpercona-xtradb-cluster-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      -
      -

      NOT USED

      @@ -29644,165 +29442,159 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kubeflow.v1.2.0:

        +

        For percona-xtradb-cluster-operator.v1.8.0:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" vaultSecretName does not have a spec descriptor
      • -
      • "ERROR" applications does not have a spec descriptor
      • +
      • "ERROR" updateStrategy does not have a spec descriptor
      • -
      • "ERROR" repos does not have a spec descriptor
      • +
      • "ERROR" haproxy does not have a spec descriptor
      • -
      • "ERROR" version does not have a spec descriptor
      • +
      • "ERROR" backup does not have a spec descriptor
      • -
      • "ERROR" kfdefs.kfdef.apps.kubeflow.org does not have a status descriptor
      • +
      • "ERROR" sslSecretName does not have a spec descriptor
      • +
      • "ERROR" logCollectorSecretName does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `applications` in KfDef/v1
      • +
      • "ERROR" secretsName does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `repos` in KfDef/v1
      • +
      • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `version` in KfDef/v1
      • +
      • "ERROR" upgradeOptions does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for applications
      • +
      • "ERROR" pxc does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for repos
      • +
      • "ERROR" proxysql does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for version
      • +
      • "ERROR" logcollector does not have a spec descriptor
      • +
      • "ERROR" pmm does not have a spec descriptor
      • +
      • "ERROR" crVersion does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" sslInternalSecretName does not have a spec descriptor
      • +
      • "ERROR" pxcCluster does not have a spec descriptor
      • -
        -

        For kubeflow.v1.2.0:

        +

      • "ERROR" storageName does not have a spec descriptor
      • +
      • "ERROR" pxcCluster does not have a spec descriptor
      • -
      • "WARNING" (kubeflow.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" storageName does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kfdefs.kfdef.apps.kubeflow.org"])
      • +
      • "ERROR" backupName does not have a spec descriptor
      • +
      • "ERROR" pxcCluster does not have a spec descriptor
      • +
      • "ERROR" pxcCluster does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      litmuschaos -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • alpha
      • - -
      • original
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" storageName does not have a spec descriptor
      • + +
      • "ERROR" storageName does not have a spec descriptor
      • + +
      • "ERROR" pxcCluster does not have a spec descriptor
      • + +
      • "ERROR" pxcCluster does not have a spec descriptor
      • + +
      • "ERROR" backupName does not have a spec descriptor
      • + +
      • "ERROR" perconaxtradbclusters.pxc.percona.com does not have a status descriptor
      • + +
      • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
      • + +
      • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
      • + +
      • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
      • + +
      • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
      • + +
      • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
      • + +
      • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for vaultSecretName
      • + +
      • "WARNING" Add a spec descriptor for updateStrategy
      • + +
      • "WARNING" Add a spec descriptor for haproxy
      • + +
      • "WARNING" Add a spec descriptor for backup
      • + +
      • "WARNING" Add a spec descriptor for sslSecretName
      • + +
      • "WARNING" Add a spec descriptor for logCollectorSecretName
      • + +
      • "WARNING" Add a spec descriptor for secretsName
      • + +
      • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
      • + +
      • "WARNING" Add a spec descriptor for upgradeOptions
      • + +
      • "WARNING" Add a spec descriptor for pxc
      • + +
      • "WARNING" Add a spec descriptor for proxysql
      • + +
      • "WARNING" Add a spec descriptor for logcollector
      • + +
      • "WARNING" Add a spec descriptor for pmm
      • + +
      • "WARNING" Add a spec descriptor for crVersion
      • + +
      • "WARNING" Add a spec descriptor for sslInternalSecretName
      • + +
      • "WARNING" Add a spec descriptor for pxcCluster
      • + +
      • "WARNING" Add a spec descriptor for storageName
      • + +
      • "WARNING" Add a spec descriptor for pxcCluster
      • + +
      • "WARNING" Add a spec descriptor for storageName
      • + +
      • "WARNING" Add a spec descriptor for backupName
      • + +
      • "WARNING" Add a spec descriptor for pxcCluster
      • - -
        -

        For chaosoperator.v1.9.0:

        +

      • "WARNING" Add a spec descriptor for pxcCluster
      • +
      • "WARNING" Add a spec descriptor for storageName
      • +
      • "WARNING" Add a spec descriptor for storageName
      • -
        -

        For chaosoperator.v0.1.0:

        +

      • "WARNING" Add a spec descriptor for pxcCluster
      • -
      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • +
      • "WARNING" Add a spec descriptor for pxcCluster
      • +
      • "WARNING" Add a spec descriptor for backupName
      • -
      • "WARNING" Add CRD validation for spec field `experiments` in ChaosEngine/v1alpha1
      • +
      • "WARNING" Add CRD validation for PerconaXtraDBCluster/v1-8-0
      • -
      • "WARNING" Add CRD validation for spec field `appinfo` in ChaosEngine/v1alpha1
      • +
      • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
      • -
      • "WARNING" Add CRD validation for spec field `chaosServiceAccount` in ChaosEngine/v1alpha1
      • +
      • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
      • + +
      • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
      • + +
      • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
      • + +
      • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
      • + +
      • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
      • @@ -29813,30 +29605,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For chaosoperator.v1.9.0:

        - - +

        For percona-xtradb-cluster-operator.v1.8.0:

        -
        -

        For chaosoperator.v0.1.0:

        +

      • "WARNING" (percona-xtradb-cluster-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["chaosengines.litmuschaos.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaxtradbbackups.pxc.percona.com" "perconaxtradbclusterbackups.pxc.percona.com" "perconaxtradbclusterrestores.pxc.percona.com" "perconaxtradbclusters.pxc.percona.com"])
      • @@ -29846,32 +29635,32 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (200)
      alvearie-imaging-ingestionplanetscale -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • beta
      @@ -29880,52 +29669,86 @@
      Grade

      NOT USED

      USED

      NOT USED

      -

      PASS

      +

      ERRORS AND WARNINGS

      + +Info +
      +
        + + +
        +

        For planetscale-operator.v0.1.8:

        + +

      • "ERROR" psclusters.planetscale.com does not have a status descriptor
      • + +
      • "ERROR" monitored does not have a spec descriptor
      • + +
      • "ERROR" lockserver does not have a spec descriptor
      • + +
      • "ERROR" cells does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + + +
      • "WARNING" Add CRD validation for PsCluster/v1alpha1
      • + +
      • "WARNING" Add a spec descriptor for monitored
      • + +
      • "WARNING" Add a spec descriptor for lockserver
      • + +
      • "WARNING" Add a spec descriptor for cells
      • + + + +
      +
      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For imaging-ingestion-operator.v0.0.1:

        +

        For planetscale-operator.v0.1.8:

        -

      • "WARNING" (imaging-ingestion-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (planetscale-operator.v0.1.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["psclusters.planetscale.com"])
      • @@ -29935,32 +29758,40 @@
        Grade

      NOT USED

      Grade B
      (800)
      Grade D
      (100)
      appdynamics-operatorpostgresql -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • original_43
      • + +
      • original_41
      • + +
      • v5
      • + +
      • original_40
      • + +
      • original_42
      @@ -29969,11 +29800,11 @@
      Grade

      NOT USED

      @@ -29983,301 +29814,324 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For appdynamics-operator.v0.6.10:

        + +
        +

        For postgresoperator.v4.3.2:

        + +

      • "ERROR" pgreplicas.crunchydata.com does not have a status descriptor
      • + +
      • "ERROR" pgpolicies.crunchydata.com does not have a status descriptor
      • + + + +
        +

        For postgresoperator.v4.1.0:

        + +

      • "ERROR" ContainerResources does not have a spec descriptor
      • + +
      • "ERROR" ccpimage does not have a spec descriptor
      • + +
      • "ERROR" namespace does not have a spec descriptor
      • + +
      • "ERROR" database does not have a spec descriptor
      • + +
      • "ERROR" primaryhost does not have a spec descriptor
      • + +
      • "ERROR" BackrestStorage does not have a spec descriptor
      • + +
      • "ERROR" backuppvcname does not have a spec descriptor
      • + +
      • "ERROR" clustername does not have a spec descriptor
      • + +
      • "ERROR" customconfig does not have a spec descriptor
      • + +
      • "ERROR" replicas does not have a spec descriptor
      • + +
      • "ERROR" PrimaryStorage does not have a spec descriptor
      • + +
      • "ERROR" ccpimagetag does not have a spec descriptor
      • + +
      • "ERROR" nodename does not have a spec descriptor
      • + +
      • "ERROR" status does not have a spec descriptor
      • + +
      • "ERROR" ReplicaStorage does not have a spec descriptor
      • + +
      • "ERROR" secretfrom does not have a spec descriptor
      • + +
      • "ERROR" strategy does not have a spec descriptor
      • + +
      • "ERROR" userlabels does not have a spec descriptor
      • + +
      • "ERROR" usersecretname does not have a spec descriptor
      • + +
      • "ERROR" policies does not have a spec descriptor
      • + +
      • "ERROR" port does not have a spec descriptor
      • + +
      • "ERROR" rootsecretname does not have a spec descriptor
      • + +
      • "ERROR" user does not have a spec descriptor
      • + +
      • "ERROR" ArchiveStorage does not have a spec descriptor
      • + +
      • "ERROR" backuppath does not have a spec descriptor
      • + +
      • "ERROR" name does not have a spec descriptor
      • + +
      • "ERROR" primarysecretname does not have a spec descriptor
      • + + +
      • "WARNING" Add CRD validation for Pgcluster/v1
      • + +
      • "WARNING" Add CRD validation for Pgreplica/v1
      • + +
      • "WARNING" Add CRD validation for Pgpolicy/v1
      • + +
      • "WARNING" Add CRD validation for Pgtask/v1
      • + +
      • "WARNING" Add CRD validation for Pgbackup/v1
      • + +
      • "WARNING" Add a spec descriptor for ContainerResources
      • + +
      • "WARNING" Add a spec descriptor for ccpimage
      • + +
      • "WARNING" Add a spec descriptor for namespace
      • + +
      • "WARNING" Add a spec descriptor for database
      • + +
      • "WARNING" Add a spec descriptor for primaryhost
      • + +
      • "WARNING" Add a spec descriptor for BackrestStorage
      • + +
      • "WARNING" Add a spec descriptor for backuppvcname
      • + +
      • "WARNING" Add a spec descriptor for clustername
      • + +
      • "WARNING" Add a spec descriptor for customconfig
      • + +
      • "WARNING" Add a spec descriptor for replicas
      • + +
      • "WARNING" Add a spec descriptor for PrimaryStorage
      • + +
      • "WARNING" Add a spec descriptor for ccpimagetag
      • + +
      • "WARNING" Add a spec descriptor for nodename
      • + +
      • "WARNING" Add a spec descriptor for status
      • -
      • "ERROR" adams.appdynamics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for ReplicaStorage
      • -
      • "ERROR" clusteragents.appdynamics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for secretfrom
      • -
      • "ERROR" infravizs.appdynamics.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for strategy
      • -
      • "ERROR" controllerUrl does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for userlabels
      • -
      • "ERROR" account does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for usersecretname
      • -
      • "ERROR" appName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for policies
      • -
      • "ERROR" controllerUrl does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for port
      • -
      • "ERROR" stdoutLogging does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for rootsecretname
      • -
      • "ERROR" account does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for user
      • -
      • "ERROR" controllerUrl does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ArchiveStorage
      • -
      • "ERROR" enableDockerViz does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for backuppath
      • -
      • "ERROR" enableMasters does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "ERROR" globalAccount does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for primarysecretname
      • -
      • "ERROR" netVizPort does not have a spec descriptor
      • -
      • "ERROR" stdoutLogging does not have a spec descriptor
      • +
        +

        For postgresoperator.v5.0.2:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Warning: Value appdynamics.com/v1alpha1, Kind=Clustercollector: provided API should have an example annotation
      • +
        +

        For postgresoperator.v4.0.1:

        -

      • "WARNING" Add a spec descriptor for controllerUrl
      • +
      • "ERROR" ContainerResources does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for account
      • +
      • "ERROR" PrimaryStorage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for appName
      • +
      • "ERROR" ccpimagetag does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for controllerUrl
      • +
      • "ERROR" policies does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for stdoutLogging
      • +
      • "ERROR" ReplicaStorage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for account
      • +
      • "ERROR" ccpimage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for controllerUrl
      • +
      • "ERROR" customconfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for enableDockerViz
      • +
      • "ERROR" backuppvcname does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for enableMasters
      • +
      • "ERROR" userlabels does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for globalAccount
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for netVizPort
      • +
      • "ERROR" replicas does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for stdoutLogging
      • +
      • "ERROR" secretfrom does not have a spec descriptor
      • +
      • "ERROR" status does not have a spec descriptor
      • +
      • "ERROR" BackrestStorage does not have a spec descriptor
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" backuppath does not have a spec descriptor
      • +
      • "ERROR" namespace does not have a spec descriptor
      • -
        -

        For appdynamics-operator.v0.6.10:

        +

      • "ERROR" port does not have a spec descriptor
      • +
      • "ERROR" primaryhost does not have a spec descriptor
      • -
      • "WARNING" (appdynamics-operator.v0.6.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" primarysecretname does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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" "infravizs.appdynamics.com"])
      • +
      • "ERROR" clustername does not have a spec descriptor
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "ERROR" name does not have a spec descriptor
      • +
      • "ERROR" nodename does not have a spec descriptor
      • +
      • "ERROR" strategy does not have a spec descriptor
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      banzaicloud-kafka-operator -

      NOT COMPLY

      -
      -

      NOT COMPLY

      - - - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      • original
      • - -
      -
      - -
      -

      NOT USED

      - - -

      NOT USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "ERROR" user does not have a spec descriptor
      • - -
        -

        For banzaicloud-kafka-operator.0.6.1:

        +

      • "ERROR" ArchiveStorage does not have a spec descriptor
      • -
      • "ERROR" kafkaclusters.kafka.banzaicloud.io does not have a status descriptor
      • +
      • "ERROR" rootsecretname does not have a spec descriptor
      • -
      • "ERROR" kafkatopics.kafka.banzaicloud.io does not have a status descriptor
      • +
      • "ERROR" usersecretname does not have a spec descriptor
      • -
      • "ERROR" kafkausers.kafka.banzaicloud.io does not have a status descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add CRD validation for Pgcluster/v1
      • -
      • "ERROR" brokers does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for Pgreplica/v1
      • -
      • "ERROR" rollingUpgradeConfig does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for Pgpolicy/v1
      • -
      • "ERROR" listenersConfig does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for Pgtask/v1
      • -
      • "ERROR" headlessServiceEnabled does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for Pgbackup/v1
      • -
      • "ERROR" zkAddresses does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ContainerResources
      • -
      • "ERROR" oneBrokerPerNode does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for PrimaryStorage
      • -
      • "ERROR" cruiseControlConfig does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ccpimagetag
      • -
      • "ERROR" clusterImage does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for policies
      • -
      • "ERROR" readOnlyConfig does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ReplicaStorage
      • -
      • "ERROR" brokerConfigGroups does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for ccpimage
      • -
      • "ERROR" partitions does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for customconfig
      • -
      • "ERROR" replicationFactor does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for backuppvcname
      • -
      • "ERROR" config does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for userlabels
      • -
      • "ERROR" clusterRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for database
      • -
      • "ERROR" name does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for replicas
      • -
      • "ERROR" clusterRef does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for secretfrom
      • -
      • "ERROR" secretName does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for status
      • -
      • "ERROR" topicGrants does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for BackrestStorage
      • +
      • "WARNING" Add a spec descriptor for backuppath
      • -
      • "WARNING" Add a spec descriptor for brokers
      • +
      • "WARNING" Add a spec descriptor for namespace
      • -
      • "WARNING" Add a spec descriptor for rollingUpgradeConfig
      • +
      • "WARNING" Add a spec descriptor for port
      • -
      • "WARNING" Add a spec descriptor for listenersConfig
      • +
      • "WARNING" Add a spec descriptor for primaryhost
      • -
      • "WARNING" Add a spec descriptor for headlessServiceEnabled
      • +
      • "WARNING" Add a spec descriptor for primarysecretname
      • -
      • "WARNING" Add a spec descriptor for zkAddresses
      • +
      • "WARNING" Add a spec descriptor for clustername
      • -
      • "WARNING" Add a spec descriptor for oneBrokerPerNode
      • +
      • "WARNING" Add a spec descriptor for name
      • -
      • "WARNING" Add a spec descriptor for cruiseControlConfig
      • +
      • "WARNING" Add a spec descriptor for nodename
      • -
      • "WARNING" Add a spec descriptor for clusterImage
      • +
      • "WARNING" Add a spec descriptor for strategy
      • -
      • "WARNING" Add a spec descriptor for readOnlyConfig
      • +
      • "WARNING" Add a spec descriptor for user
      • -
      • "WARNING" Add a spec descriptor for brokerConfigGroups
      • +
      • "WARNING" Add a spec descriptor for ArchiveStorage
      • -
      • "WARNING" Add a spec descriptor for partitions
      • +
      • "WARNING" Add a spec descriptor for rootsecretname
      • -
      • "WARNING" Add a spec descriptor for replicationFactor
      • +
      • "WARNING" Add a spec descriptor for usersecretname
      • -
      • "WARNING" Add a spec descriptor for config
      • -
      • "WARNING" Add a spec descriptor for clusterRef
      • +
        +

        For postgresoperator.v4.7.0:

        -

      • "WARNING" Add a spec descriptor for name
      • +
      • "ERROR" namespace does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for clusterRef
      • +
      • "ERROR" podAntiAffinity does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for secretName
      • +
      • "ERROR" ReplicaStorage does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for topicGrants
      • +
      • "ERROR" user does not have a spec descriptor
      • +
      • "ERROR" BackrestStorage does not have a spec descriptor
      • -
        -

        For banzaicloud-kafka-operator.0.3.1:

        -

      • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
      • +
      • "WARNING" Add a spec descriptor for namespace
      • + +
      • "WARNING" Add a spec descriptor for podAntiAffinity
      • + +
      • "WARNING" Add a spec descriptor for ReplicaStorage
      • -
      • "ERROR" Error: Value banzaicloud.banzaicloud.io/v1alpha1, Kind=KafkaCluster: example must have a provided API
      • +
      • "WARNING" Add a spec descriptor for user
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for BackrestStorage
      • -
      • "ERROR" kafkaclusters.kafka.banzaicloud.io does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `BackrestStorage` in Pgcluster/v1
      • -
      • "ERROR" brokerConfigs does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `user` in Pgcluster/v1
      • -
      • "ERROR" listenersConfig does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `namespace` in Pgcluster/v1
      • -
      • "ERROR" serviceAccount does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `podAntiAffinity` in Pgcluster/v1
      • -
      • "ERROR" zkAddresses does not have a spec descriptor
      • +
      • "WARNING" Add CRD validation for spec field `ReplicaStorage` in Pgcluster/v1
      • -
      • "WARNING" Warning: Value kafka.banzaicloud.io/v1alpha1, Kind=KafkaCluster: provided API should have an example annotation
      • +
        +

        For postgresoperator.v4.2.2:

        -

      • "WARNING" Add a spec descriptor for brokerConfigs
      • +
      • "ERROR" pgreplicas.crunchydata.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for listenersConfig
      • +
      • "ERROR" pgpolicies.crunchydata.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for serviceAccount
      • +
      • "ERROR" pgbackups.crunchydata.com does not have a status descriptor
      • -
      • "WARNING" Add a spec descriptor for zkAddresses
      • @@ -30286,42 +30140,60 @@
        Grade
      -

      ERRORS AND WARNINGS

      +

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For banzaicloud-kafka-operator.0.6.1:

        +

        For postgresoperator.v4.3.2:

        -

      • "WARNING" (banzaicloud-kafka-operator.0.6.1) csv.metadata.Name banzaicloud-kafka-operator.0.6.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkaclusters.kafka.banzaicloud.io" "kafkatopics.kafka.banzaicloud.io" "kafkausers.kafka.banzaicloud.io"])
      • + +
        +

        For postgresoperator.v4.1.0:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgbackups.crunchydata.com" "pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])

      • -

        For banzaicloud-kafka-operator.0.3.1:

        +

        For postgresoperator.v5.0.2:

        -

      • "ERROR" example must have a provided API
      • -
      • "WARNING" (banzaicloud-kafka-operator.0.3.1) csv.metadata.Name banzaicloud-kafka-operator.0.3.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • +
        +

        For postgresoperator.v4.0.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkaclusters.kafka.banzaicloud.io"])
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgbackups.crunchydata.com" "pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
      • + + +
        +

        For postgresoperator.v4.7.0:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • + + +
        +

        For postgresoperator.v4.2.2:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["pgbackups.crunchydata.com" "pgclusters.crunchydata.com" "pgpolicies.crunchydata.com" "pgreplicas.crunchydata.com" "pgtasks.crunchydata.com"])
      • @@ -30331,28 +30203,28 @@
        Grade

      NOT USED

      Grade D
      (0)
      Grade C
      (500)
      eunomiaatlasmap-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -30365,11 +30237,11 @@
        Grade

      NOT USED

      @@ -30377,33 +30249,27 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      ONLY ERRORS

      - +Info -
      + +Info +

        -

        For eunomia.v0.1.7:

        - -

      • "ERROR" size does not have a spec descriptor
      • - -
      • "ERROR" gitopsconfigs.eunomia.kohls.io does not have a status descriptor
      • - +

        For atlasmap-operator.v0.3.0:

        -

      • "WARNING" Add CRD validation for spec field `size` in GitOpsConfig/v1alpha1
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for size
      • @@ -30414,187 +30280,58 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For eunomia.v0.1.7:

        - - -

      • "WARNING" (eunomia.v0.1.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gitopsconfigs.eunomia.kohls.io"])
      • - - - -
      -
      - -

      NOT USED

      Grade D
      (100)
      mongodb-enterprise -

      COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        - - -
        -

        For mongodb-enterprise.v1.12.0:

        - -

      • "ERROR" opsmanagers.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" mongodbusers.mongodb.com does not have a status descriptor
      • - -
      • "ERROR" opsManager does not have a spec descriptor
      • - -
      • "ERROR" mongosCount does not have a spec descriptor
      • - -
      • "ERROR" opsManager does not have a spec descriptor
      • - -
      • "ERROR" configServerCount does not have a spec descriptor
      • - -
      • "ERROR" mongodsPerShardCount does not have a spec descriptor
      • - -
      • "ERROR" shardCount does not have a spec descriptor
      • - -
      • "ERROR" applicationDatabase does not have a spec descriptor
      • - -
      • "ERROR" configuration does not have a spec descriptor
      • - -
      • "ERROR" externalConnectivity does not have a spec descriptor
      • - -
      • "ERROR" mongodbResourceRef does not have a spec descriptor
      • - -
      • "ERROR" roles does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
      • - -
      • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
      • - -
      • "WARNING" Add a spec descriptor for opsManager
      • - -
      • "WARNING" Add a spec descriptor for mongosCount
      • - -
      • "WARNING" Add a spec descriptor for opsManager
      • - -
      • "WARNING" Add a spec descriptor for configServerCount
      • - -
      • "WARNING" Add a spec descriptor for mongodsPerShardCount
      • - -
      • "WARNING" Add a spec descriptor for shardCount
      • - -
      • "WARNING" Add a spec descriptor for applicationDatabase
      • - -
      • "WARNING" Add a spec descriptor for configuration
      • - -
      • "WARNING" Add a spec descriptor for externalConnectivity
      • - -
      • "WARNING" Add a spec descriptor for mongodbResourceRef
      • - -
      • "WARNING" Add a spec descriptor for roles
      • +

        For atlasmap-operator.v0.3.0:

        +

      • "WARNING" (atlasmap-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      -
      - -
      -

      PASS

      - +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["atlasmaps.atlasmap.io"])
    • + + + + +

      NOT USED

      Grade B
      (800)
      Grade D
      (100)
      openebscos-bucket-operator -

      NOT COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -30607,11 +30344,11 @@
        Grade

      NOT USED

      @@ -30619,72 +30356,42 @@
      Grade

      NOT USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For openebsoperator.v2.10.0:

        - -

      • "ERROR" varDirectoryPath does not have a spec descriptor
      • - -
      • "ERROR" crd does not have a spec descriptor
      • - -
      • "ERROR" helper does not have a spec descriptor
      • - -
      • "ERROR" featureGates does not have a spec descriptor
      • - - -
      • "WARNING" Add CRD validation for OpenEBSInstallTemplate/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for varDirectoryPath
      • - -
      • "WARNING" Add a spec descriptor for crd
      • - -
      • "WARNING" Add a spec descriptor for helper
      • - -
      • "WARNING" Add a spec descriptor for featureGates
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For openebsoperator.v2.10.0:

        +

        For cos-bucket-operator.v0.1.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openebsinstalltemplates.openebs.io"])
      • +
      • "WARNING" (cos-bucket-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["buckets.ibmcloud.ibm.com"])
      • @@ -30694,32 +30401,32 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (300)
      ripsawibm-block-csi-operator-community -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        -
      • alpha
      • +
      • maintenance-1.5
      @@ -30728,11 +30435,11 @@
      Grade

      NOT USED

      @@ -30742,37 +30449,52 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For ripsaw.v0.1.0:

        +

        For ibm-block-csi-operator.v1.6.0:

        -

      • "ERROR" cleanup does not have a spec descriptor
      • +
      • "ERROR" controller does not have a spec descriptor
      • -
      • "ERROR" workload does not have a spec descriptor
      • +
      • "ERROR" node does not have a spec descriptor
      • -
      • "ERROR" benchmarks.ripsaw.cloudbulldozer.io does not have a status descriptor
      • +
      • "ERROR" sidecars does not have a spec descriptor
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for controller
      • -
      • "WARNING" Add a spec descriptor for cleanup
      • +
      • "WARNING" Add a spec descriptor for node
      • -
      • "WARNING" Add a spec descriptor for workload
      • +
      • "WARNING" Add a spec descriptor for sidecars
      • -
      • "WARNING" Add CRD validation for Benchmark/v1alpha1
      • + +
        +

        For ibm-block-csi-operator.v1.5.1:

        + +

      • "ERROR" controller does not have a spec descriptor
      • + +
      • "ERROR" node does not have a spec descriptor
      • + +
      • "ERROR" sidecars does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for controller
      • + +
      • "WARNING" Add a spec descriptor for node
      • + +
      • "WARNING" Add a spec descriptor for sidecars
      • @@ -30783,25 +30505,30 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ripsaw.v0.1.0:

        +

        For ibm-block-csi-operator.v1.6.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["benchmarks.ripsaw.cloudbulldozer.io"])
      • + +
        +

        For ibm-block-csi-operator.v1.5.1:

        + + +

      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -30811,28 +30538,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      kialiintegrity-shield-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -30845,94 +30572,53 @@
        Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kiali-operator.v1.39.0:

        - -

      • "ERROR" installation_tag does not have a spec descriptor
      • - -
      • "ERROR" istio_namespace does not have a spec descriptor
      • - -
      • "ERROR" deployment does not have a spec descriptor
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" kialis.kiali.io does not have a status descriptor
      • - - -
      • "WARNING" Add CRD validation for spec field `installation_tag` in Kiali/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `istio_namespace` in Kiali/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `deployment` in Kiali/v1alpha1
      • - -
      • "WARNING" Add CRD validation for spec field `server` in Kiali/v1alpha1
      • - -
      • "WARNING" Add a spec descriptor for installation_tag
      • - -
      • "WARNING" Add a spec descriptor for istio_namespace
      • - -
      • "WARNING" Add a spec descriptor for deployment
      • - -
      • "WARNING" Add a spec descriptor for server
      • - - -
        -

        For kiali-operator.v1.39.0:

        - -

      • "ERROR" installation_tag does not have a spec descriptor
      • - -
      • "ERROR" istio_namespace does not have a spec descriptor
      • - -
      • "ERROR" deployment does not have a spec descriptor
      • - -
      • "ERROR" server does not have a spec descriptor
      • - -
      • "ERROR" kialis.kiali.io does not have a status descriptor
      • +

        For integrity-shield-operator.v0.1.6:

        +

      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for spec field `installation_tag` in Kiali/v1alpha1
      • +
      • "ERROR" integrityshields.apis.integrityshield.io does not have a status descriptor
      • -
      • "WARNING" Add CRD validation for spec field `istio_namespace` in Kiali/v1alpha1
      • +
      • "ERROR" signerConfig does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `deployment` in Kiali/v1alpha1
      • +
      • "ERROR" keyConfig does not have a spec descriptor
      • -
      • "WARNING" Add CRD validation for spec field `server` in Kiali/v1alpha1
      • +
      • "ERROR" shieldConfig does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for installation_tag
      • -
      • "WARNING" Add a spec descriptor for istio_namespace
      • +
      • "WARNING" Add a spec descriptor for signerConfig
      • -
      • "WARNING" Add a spec descriptor for deployment
      • +
      • "WARNING" Add a spec descriptor for keyConfig
      • -
      • "WARNING" Add a spec descriptor for server
      • +
      • "WARNING" Add a spec descriptor for shieldConfig
      • @@ -30943,32 +30629,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kiali-operator.v1.39.0:

        - - -

      • "WARNING" (kiali-operator.v1.39.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - +

        For integrity-shield-operator.v0.1.6:

        -
        -

        For kiali-operator.v1.39.0:

        +

      • "WARNING" (integrity-shield-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" (kiali-operator.v1.39.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were 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: (["integrity-shield-operator-metrics-reader"])
      • @@ -30978,45 +30659,35 @@
        Grade

      NOT USED

      Grade C
      (500)
      Grade D
      (200)
      kubemodrocketmq-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      -

      NOT USED

      @@ -31024,27 +30695,129 @@
      Grade

      NOT USED

      -

      ONLY ERRORS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kubemod.v0.6.0:

        +

        For rocketmq-operator.0.2.1:

        -

      • "ERROR" modrules.api.kubemod.io does not have a status descriptor
      • +
      • "ERROR" storageMode does not have a spec descriptor
      • + +
      • "ERROR" nameServiceImage does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" hostNetwork does not have a spec descriptor
      • + +
      • "ERROR" hostPath does not have a spec descriptor
      • + +
      • "ERROR" volumeClaimTemplates does not have a spec descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" dnsPolicy does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" replicaPerGroup does not have a spec descriptor
      • + +
      • "ERROR" brokerImage does not have a spec descriptor
      • + +
      • "ERROR" imagePullPolicy does not have a spec descriptor
      • + +
      • "ERROR" allowRestart does not have a spec descriptor
      • + +
      • "ERROR" storageMode does not have a spec descriptor
      • + +
      • "ERROR" hostPath does not have a spec descriptor
      • + +
      • "ERROR" size does not have a spec descriptor
      • + +
      • "ERROR" nameServers does not have a spec descriptor
      • + +
      • "ERROR" scalePodName does not have a spec descriptor
      • + +
      • "ERROR" volumeClaimTemplates does not have a spec descriptor
      • + +
      • "ERROR" replicationMode does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" sourceCluster does not have a spec descriptor
      • + +
      • "ERROR" targetCluster does not have a spec descriptor
      • + +
      • "ERROR" topic does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" nameservices.rocketmq.apache.org does not have a status descriptor
      • + +
      • "ERROR" brokers.rocketmq.apache.org does not have a status descriptor
      • + +
      • "ERROR" topictransfers.rocketmq.apache.org does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for storageMode
      • + +
      • "WARNING" Add a spec descriptor for nameServiceImage
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for hostNetwork
      • + +
      • "WARNING" Add a spec descriptor for hostPath
      • + +
      • "WARNING" Add a spec descriptor for volumeClaimTemplates
      • + +
      • "WARNING" Add a spec descriptor for size
      • + +
      • "WARNING" Add a spec descriptor for dnsPolicy
      • + +
      • "WARNING" Add a spec descriptor for resources
      • + +
      • "WARNING" Add a spec descriptor for replicaPerGroup
      • + +
      • "WARNING" Add a spec descriptor for brokerImage
      • + +
      • "WARNING" Add a spec descriptor for imagePullPolicy
      • + +
      • "WARNING" Add a spec descriptor for allowRestart
      • + +
      • "WARNING" Add a spec descriptor for storageMode
      • + +
      • "WARNING" Add a spec descriptor for hostPath
      • + +
      • "WARNING" Add a spec descriptor for size
      • + +
      • "WARNING" Add a spec descriptor for nameServers
      • + +
      • "WARNING" Add a spec descriptor for scalePodName
      • + +
      • "WARNING" Add a spec descriptor for volumeClaimTemplates
      • + +
      • "WARNING" Add a spec descriptor for replicationMode
      • + +
      • "WARNING" Add a spec descriptor for resources
      • + +
      • "WARNING" Add a spec descriptor for sourceCluster
      • + +
      • "WARNING" Add a spec descriptor for targetCluster
      • +
      • "WARNING" Add a spec descriptor for topic
      • @@ -31055,25 +30828,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubemod.v0.6.0:

        +

        For rocketmq-operator.0.2.1:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["modrules.api.kubemod.io"])
      • +
      • "WARNING" (rocketmq-operator.0.2.1) csv.metadata.Name rocketmq-operator.0.2.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
      • + +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["brokers.rocketmq.apache.org" "nameservices.rocketmq.apache.org" "topictransfers.rocketmq.apache.org"])
      • @@ -31083,35 +30858,45 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade D
      (200)
      kubernetes-imagepuller-operatorhawkbit-operator -

      COMPLY

      +

      NOT COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -31121,33 +30906,35 @@
      Grade

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For kubernetes-imagepuller-operator.v0.0.9:

        +

        For hawkbit-operator.v0.1.4:

        -

      • "ERROR" daemonsetName does not have a spec descriptor
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "ERROR" images does not have a spec descriptor
      • +
      • "ERROR" rabbit does not have a spec descriptor
      • -
      • "ERROR" kubernetesimagepullers.che.eclipse.org does not have a status descriptor
      • +
      • "ERROR" hawkbits.iot.eclipse.org does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for daemonsetName
      • -
      • "WARNING" Add a spec descriptor for images
      • +
      • "WARNING" Add a spec descriptor for database
      • + +
      • "WARNING" Add a spec descriptor for rabbit
      • @@ -31158,25 +30945,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubernetes-imagepuller-operator.v0.0.9:

        +

        For hawkbit-operator.v0.1.4:

        -

      • "WARNING" (kubernetes-imagepuller-operator.v0.0.9) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hawkbits.iot.eclipse.org"])
      • @@ -31186,28 +30973,28 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      kubeturbohazelcast-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -31220,11 +31007,11 @@
        Grade

      NOT USED

      @@ -31234,46 +31021,33 @@
      Grade

      ERRORS AND WARNINGS

      - - +Info -
      -
        - - -
        -

        For kubeturbo-operator.v8.1.0:

        - -

      • "ERROR" serverMeta does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for serverMeta
      • - + #scorecard-showhazelcast-operator:target { + display: block; + } + + + +Info +
        +
          +
          -

          For kubeturbo-operator.v7.21.0:

          +

          For hazelcast-operator.v0.3.7:

        • "ERROR" Owned CRDs do not have resources specified
        • -
        • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
        • +
        • "ERROR" hazelcasts.hazelcast.com does not have a status descriptor
        • -
        • "ERROR" serverMeta does not have a spec descriptor
        • +
        • "ERROR" securityContext does not have a spec descriptor
        • -
        • "WARNING" Add CRD validation for Kubeturbo/v1alpha1
        • +
        • "WARNING" Add CRD validation for Hazelcast/v1alpha1
        • -
        • "WARNING" Add a spec descriptor for serverMeta
        • +
        • "WARNING" Add a spec descriptor for securityContext
        • @@ -31284,36 +31058,27 @@
          Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For kubeturbo-operator.v8.1.0:

        - - -

      • "WARNING" (kubeturbo-operator.v8.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • - -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • - - -
        -

        For kubeturbo-operator.v7.21.0:

        +

        For hazelcast-operator.v0.3.7:

        -

      • "WARNING" (kubeturbo-operator.v7.21.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (hazelcast-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hazelcasts.hazelcast.com"])
      • @@ -31323,28 +31088,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      cassandra-operatorintel-device-plugins-operator -

      NOT COMPLY

      +

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -31357,178 +31122,341 @@
        Grade

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For cassandra-operator.v2.0.0:

        + +
        +

        For intel-device-plugins-operator.v0.21.0:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" dsadeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • + +
      • "ERROR" fpgadeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • + +
      • "ERROR" gpudeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • + +
      • "ERROR" qatdeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • + +
      • "ERROR" sgxdeviceplugins.deviceplugin.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" acceleratorfunctions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" fpgaregions.fpga.intel.com does not have a status descriptor
      • + +
      • "ERROR" logLevel does not have a spec descriptor
      • + +
      • "ERROR" sharedDevNum does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" nodeSelector does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" initImage does not have a spec descriptor
      • + +
      • "ERROR" logLevel does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" initImage does not have a spec descriptor
      • + +
      • "ERROR" logLevel does not have a spec descriptor
      • + +
      • "ERROR" nodeSelector does not have a spec descriptor
      • + +
      • "ERROR" sharedDevNum does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" kernelVfDrivers does not have a spec descriptor
      • + +
      • "ERROR" logLevel does not have a spec descriptor
      • + +
      • "ERROR" maxNumDevices does not have a spec descriptor
      • + +
      • "ERROR" nodeSelector does not have a spec descriptor
      • + +
      • "ERROR" dpdkDriver does not have a spec descriptor
      • + +
      • "ERROR" nodeSelector does not have a spec descriptor
      • + +
      • "ERROR" provisionLimit does not have a spec descriptor
      • + +
      • "ERROR" enclaveLimit does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" initImage does not have a spec descriptor
      • + +
      • "ERROR" logLevel does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" mode does not have a spec descriptor
      • + +
      • "ERROR" afuId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + +
      • "ERROR" interfaceId does not have a spec descriptor
      • + + +
      • "WARNING" Add a spec descriptor for logLevel
      • + +
      • "WARNING" Add a spec descriptor for sharedDevNum
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for nodeSelector
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for initImage
      • -
      • "ERROR" storageLocation does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for logLevel
      • -
      • "ERROR" snapshotTag does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for mode
      • -
      • "ERROR" cdc does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "ERROR" size does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for initImage
      • -
      • "ERROR" size does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for logLevel
      • -
      • "ERROR" cassandrabackups.cassandraoperator.instaclustr.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for nodeSelector
      • -
      • "ERROR" cassandraclusters.cassandraoperator.instaclustr.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for sharedDevNum
      • -
      • "ERROR" cassandradatacenters.cassandraoperator.instaclustr.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for image
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for kernelVfDrivers
      • +
      • "WARNING" Add a spec descriptor for logLevel
      • -
      • "WARNING" Add a spec descriptor for storageLocation
      • +
      • "WARNING" Add a spec descriptor for maxNumDevices
      • -
      • "WARNING" Add a spec descriptor for snapshotTag
      • +
      • "WARNING" Add a spec descriptor for nodeSelector
      • -
      • "WARNING" Add a spec descriptor for cdc
      • +
      • "WARNING" Add a spec descriptor for dpdkDriver
      • -
      • "WARNING" Add a spec descriptor for size
      • +
      • "WARNING" Add a spec descriptor for nodeSelector
      • -
      • "WARNING" Add a spec descriptor for size
      • +
      • "WARNING" Add a spec descriptor for provisionLimit
      • -
      • "WARNING" Add CRD validation for spec field `size` in CassandraCluster/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for enclaveLimit
      • -
      • "WARNING" Add CRD validation for spec field `size` in CassandraDataCenter/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for image
      • +
      • "WARNING" Add a spec descriptor for initImage
      • +
      • "WARNING" Add a spec descriptor for logLevel
      • -
      -
      - -
      -

      ONLY WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for interfaceId
      • -
        -

        For cassandra-operator.v2.0.0:

        +

      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for afuId
      • -
      • "WARNING" (cassandra-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for interfaceId
      • -
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cassandrabackups.cassandraoperator.instaclustr.com" "cassandraclusters.cassandraoperator.instaclustr.com" "cassandradatacenters.cassandraoperator.instaclustr.com"])
      • +
      • "WARNING" Add a spec descriptor for mode
      • +
      • "WARNING" Add a spec descriptor for afuId
      • +
      • "WARNING" Add a spec descriptor for interfaceId
      • -
      -
      - -

      NOT USED

      Grade D
      (100)
      cloud-native-postgresql -

      PARTIAL COMPLY

      -
      -

      COMPLY

      - - -
      -

      NOT USED

      - - -

      USED

      -

      ERRORS AND WARNINGS

      - - - +Info -
      -
        +
      • "WARNING" Add a spec descriptor for mode
      • - -
        -

        For cloud-native-postgresql.v1.7.1:

        +

      • "WARNING" Add a spec descriptor for afuId
      • -
      • "ERROR" cluster does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for interfaceId
      • -
      • "ERROR" storage does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for mode
      • -
      • "ERROR" cluster does not have a spec descriptor
      • +
      • "WARNING" Add a spec descriptor for afuId
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for interfaceId
      • +
      • "WARNING" Add a spec descriptor for mode
      • -
      • "WARNING" Add a spec descriptor for cluster
      • +
      • "WARNING" Add a spec descriptor for mode
      • -
      • "WARNING" Add a spec descriptor for storage
      • +
      • "WARNING" Add a spec descriptor for afuId
      • -
      • "WARNING" Add a spec descriptor for cluster
      • +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for afuId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for afuId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for afuId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for afuId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for afuId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for mode
      • + +
      • "WARNING" Add a spec descriptor for afuId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • + +
      • "WARNING" Add a spec descriptor for interfaceId
      • @@ -31537,29 +31465,29 @@
        Grade
      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For cloud-native-postgresql.v1.7.1:

        +

        For intel-device-plugins-operator.v0.21.0:

        +

      • "ERROR" (intel-device-plugins-operator.v0.21.0) csv.Metadata.Annotations["categories"] value Drivers and plugins is not in the set of default categories
      • -
      • "WARNING" (cloud-native-postgresql.v1.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" (intel-device-plugins-operator.v0.21.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -31569,45 +31497,35 @@
        Grade

      NOT USED

      Grade C
      (400)
      Grade C
      (500)
      ember-csi-operatorpostgres-operator -

      NOT COMPLY

      +

      NOT COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • beta
      • - -
      -
      -

      NOT USED

      @@ -31615,27 +31533,57 @@
      Grade

      NOT USED

      -

      ONLY WARNINGS

      +

      ERRORS AND WARNINGS

      - +Info -
      + +Info +
        - -
        -

        For ember-csi-operator.v0.9.4:

        + +
        +

        For postgres-operator.v1.4.0:

        + +

      • "ERROR" error spec does not exist
      • + +
      • "ERROR" databases does not have a spec descriptor
      • + +
      • "ERROR" numberOfInstances does not have a spec descriptor
      • + +
      • "ERROR" postgresql does not have a spec descriptor
      • + +
      • "ERROR" teamId does not have a spec descriptor
      • + +
      • "ERROR" users does not have a spec descriptor
      • + +
      • "ERROR" volume does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add CRD validation for EmberStorageBackend/v1alpha1
      • +
      • "ERROR" postgresqls.acid.zalan.do does not have a status descriptor
      • + +
      • "ERROR" operatorconfigurations.acid.zalan.do does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for databases
      • + +
      • "WARNING" Add a spec descriptor for numberOfInstances
      • + +
      • "WARNING" Add a spec descriptor for postgresql
      • + +
      • "WARNING" Add a spec descriptor for teamId
      • + +
      • "WARNING" Add a spec descriptor for users
      • + +
      • "WARNING" Add a spec descriptor for volume
      • @@ -31646,25 +31594,25 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For ember-csi-operator.v0.9.4:

        +

        For postgres-operator.v1.4.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["embercsis.ember-csi.io"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["operatorconfigurations.acid.zalan.do" "postgresqls.acid.zalan.do"])
      • @@ -31678,31 +31626,41 @@
        Grade
      flagsmithalvearie-imaging-ingestion

      COMPLY

      -

      COMPLY

      +

      NOT COMPLY

      + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      +

      NOT USED

      @@ -31712,11 +31670,11 @@
      Grade

      PASS

      @@ -31725,25 +31683,25 @@
      Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For flagsmith-operator.v1.0.0:

        +

        For imaging-ingestion-operator.v0.0.1:

        -

      • "WARNING" (flagsmith-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (imaging-ingestion-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -31753,28 +31711,28 @@
        Grade

      NOT USED

      Grade A
      (900)
      Grade B
      (800)
      yaksapimatic-kubernetes-operator

      COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -31787,76 +31745,52 @@
        Grade

      NOT USED

      NOT USED

      USED

      -

      ERRORS AND WARNINGS

      +

      PASS

      - +Info -
      -
        - - -
        -

        For yaks-operator.v0.5.0:

        - -

      • "ERROR" tests.yaks.citrusframework.org does not have a status descriptor
      • - -
      • "ERROR" source does not have a spec descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Warning: Value yaks.citrusframework.org/v1alpha1, Kind=Instance: provided API should have an example annotation
      • - -
      • "WARNING" Add a spec descriptor for source
      • - - - -
      -
      -

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For yaks-operator.v0.5.0:

        +

        For apimatic-kubernetes-operator.v0.0.1:

        -

      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (apimatic-kubernetes-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -31866,335 +31800,326 @@
        Grade

      NOT USED

      Grade C
      (500)
      Grade B
      (800)
      couchdb-operatorcert-manager -

      NOT COMPLY

      +

      COMPLY

      -

      NOT COMPLY

      +

      COMPLY

      - +Info -
      -

      Following the channels names which does not comply. For further information see Channel Naming doc.

      -
        - -
      • v1.2
      • - -
      • v1.3
      • - -
      • beta
      • - -
      • v1.4
      • - -
      • v1.0
      • - -
      • v1.1
      • - -
      -
      -

      NOT USED

      NOT USED

      USED

      ERRORS AND WARNINGS

      - - +Info -
      -
        - - -
        -

        For couchdb-operator.v1.2.1:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" memory does not have a spec descriptor
      • - -
      • "ERROR" cpu does not have a spec descriptor
      • - -
      • "ERROR" disk does not have a spec descriptor
      • - -
      • "ERROR" environment does not have a spec descriptor
      • - -
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - - -
      • "WARNING" Add a spec descriptor for memory
      • - -
      • "WARNING" Add a spec descriptor for cpu
      • - -
      • "WARNING" Add a spec descriptor for disk
      • - -
      • "WARNING" Add a spec descriptor for environment
      • - - -
        -

        For couchdb-operator.v1.3.1:

        - -

      • "ERROR" disk does not have a spec descriptor
      • - -
      • "ERROR" environment does not have a spec descriptor
      • - -
      • "ERROR" memory does not have a spec descriptor
      • - -
      • "ERROR" cpu does not have a spec descriptor
      • - -
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • - -
      • "ERROR" Owned CRDs do not have resources specified
      • - - -
      • "WARNING" Add a spec descriptor for disk
      • - -
      • "WARNING" Add a spec descriptor for environment
      • - -
      • "WARNING" Add a spec descriptor for memory
      • - -
      • "WARNING" Add a spec descriptor for cpu
      • - + + #scorecard-showcert-manager:target { + display: block; + } + + + +Info +
        +
          +
          -

          For couchdb-operator.v1.4.3:

          +

          For cert-manager.v1.5.3:

        • "ERROR" Owned CRDs do not have resources specified
        • -
        • "ERROR" disk does not have a spec descriptor
        • +
        • "ERROR" selfSigned does not have a spec descriptor
        • -
        • "ERROR" environment does not have a spec descriptor
        • +
        • "ERROR" dnsNames does not have a spec descriptor
        • -
        • "ERROR" memory does not have a spec descriptor
        • +
        • "ERROR" issuerRef does not have a spec descriptor
        • -
        • "ERROR" cpu does not have a spec descriptor
        • +
        • "ERROR" secretName does not have a spec descriptor
        • -
        • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "ERROR" issuers.cert-manager.io does not have a status descriptor
        • -
        • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "ERROR" certificates.cert-manager.io does not have a status descriptor
        • -
        • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • -
        • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Add a spec descriptor for selfSigned
        • -
        • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Add a spec descriptor for dnsNames
        • -
        • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Add a spec descriptor for issuerRef
        • -
        • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Add a spec descriptor for secretName
        • +
        • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=CertificateRequest: provided API should have an example annotation
        • -
        • "WARNING" Add a spec descriptor for disk
        • +
        • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=Certificate: provided API should have an example annotation
        • -
        • "WARNING" Add a spec descriptor for environment
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1alpha3, Kind=Challenge: provided API should have an example annotation
        • -
        • "WARNING" Add a spec descriptor for memory
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1beta1, Kind=Challenge: provided API should have an example annotation
        • -
        • "WARNING" Add a spec descriptor for cpu
        • +
        • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=ClusterIssuer: provided API should have an example annotation
        • +
        • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=Issuer: provided API should have an example annotation
        • -
          -

          For couchdb-operator.v1.4.4:

          +

        • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=Issuer: provided API should have an example annotation
        • -
        • "ERROR" environment does not have a spec descriptor
        • +
        • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=CertificateRequest: provided API should have an example annotation
        • -
        • "ERROR" memory does not have a spec descriptor
        • +
        • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=Certificate: provided API should have an example annotation
        • -
        • "ERROR" cpu does not have a spec descriptor
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1beta1, Kind=Order: provided API should have an example annotation
        • -
        • "ERROR" disk does not have a spec descriptor
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1, Kind=Order: provided API should have an example annotation
        • -
        • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1alpha2, Kind=Order: provided API should have an example annotation
        • -
        • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Warning: Value cert-manager.io/v1, Kind=CertificateRequest: provided API should have an example annotation
        • -
        • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=Certificate: provided API should have an example annotation
        • -
        • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1alpha2, Kind=Challenge: provided API should have an example annotation
        • -
        • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=ClusterIssuer: provided API should have an example annotation
        • -
        • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=Issuer: provided API should have an example annotation
        • -
        • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1alpha3, Kind=Order: provided API should have an example annotation
        • -
        • "ERROR" Owned CRDs do not have resources specified
        • +
        • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=CertificateRequest: provided API should have an example annotation
        • +
        • "WARNING" Warning: Value acme.cert-manager.io/v1, Kind=Challenge: provided API should have an example annotation
        • -
        • "WARNING" Add a spec descriptor for environment
        • +
        • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=ClusterIssuer: provided API should have an example annotation
        • -
        • "WARNING" Add a spec descriptor for memory
        • +
        • "WARNING" Warning: Value cert-manager.io/v1, Kind=ClusterIssuer: provided API should have an example annotation
        • -
        • "WARNING" Add a spec descriptor for cpu
        • -
        • "WARNING" Add a spec descriptor for disk
        • +
        +
        + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
        -

        For couchdb-operator.v1.4.4:

        -

      • "ERROR" environment does not have a spec descriptor
      • +
        +

        For cert-manager.v1.5.3:

        -

      • "ERROR" memory does not have a spec descriptor
      • -
      • "ERROR" cpu does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" disk does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for environment
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for memory
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for cpu
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for disk
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
        -

        For couchdb-operator.v1.0.14:

        +

      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      +
      + +

      NOT USED

      Grade B
      (700)
      datadog-operator +

      NOT COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "ERROR" memory does not have a spec descriptor
      • + +
        +

        For datadog-operator.v0.6.0:

        -

      • "ERROR" cpu does not have a spec descriptor
      • +
      • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
      • -
      • "ERROR" disk does not have a spec descriptor
      • +
      • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
      • -
      • "ERROR" environment does not have a spec descriptor
      • +
      • "ERROR" datadogmonitors.datadoghq.com does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for memory
      • +
      • "ERROR" clusterChecksRunner does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for cpu
      • +
      • "ERROR" clusterName does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for disk
      • +
      • "ERROR" credentials does not have a spec descriptor
      • -
      • "WARNING" Add a spec descriptor for environment
      • +
      • "ERROR" agent does not have a spec descriptor
      • +
      • "ERROR" clusterAgent does not have a spec descriptor
      • -
        -

        For couchdb-operator.v1.1.0:

        +

      • "ERROR" query does not have a spec descriptor
      • -
      • "ERROR" memory does not have a spec descriptor
      • +
      • "ERROR" tags does not have a spec descriptor
      • -
      • "ERROR" cpu does not have a spec descriptor
      • +
      • "ERROR" title does not have a spec descriptor
      • -
      • "ERROR" disk does not have a spec descriptor
      • +
      • "ERROR" type does not have a spec descriptor
      • -
      • "ERROR" environment does not have a spec descriptor
      • +
      • "ERROR" message does not have a spec descriptor
      • -
      • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "ERROR" query does not have a spec descriptor
      • -
      • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • -
      • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for spec field `title` in DatadogMonitor/v1alpha1
      • -
      • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for clusterChecksRunner
      • -
      • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for clusterName
      • + +
      • "WARNING" Add a spec descriptor for credentials
      • -
      • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for agent
      • -
      • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for clusterAgent
      • -
      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" Add a spec descriptor for query
      • +
      • "WARNING" Add a spec descriptor for tags
      • -
      • "WARNING" Add a spec descriptor for memory
      • +
      • "WARNING" Add a spec descriptor for title
      • -
      • "WARNING" Add a spec descriptor for cpu
      • +
      • "WARNING" Add a spec descriptor for type
      • -
      • "WARNING" Add a spec descriptor for disk
      • +
      • "WARNING" Add a spec descriptor for message
      • -
      • "WARNING" Add a spec descriptor for environment
      • +
      • "WARNING" Add a spec descriptor for query
      • @@ -32205,81 +32130,170 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For couchdb-operator.v1.2.1:

        +

        For datadog-operator.v0.6.0:

        -

      • "WARNING" (couchdb-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (datadog-operator.v0.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" "datadogmonitors.datadoghq.com"])
      • -
        -

        For couchdb-operator.v1.3.1:

        +

      +
      + +

      NOT USED

      Grade D
      (200)
      shipwright-operator +

      COMPLY

      +
      +

      NOT COMPLY

      + + + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
      +

      NOT USED

      + + +

      NOT USED

      +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" (couchdb-operator.v1.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
        +

        For shipwright-operator.v0.1.0:

        -

      • "WARNING" this bundle is using APIs which were deprecated 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" buildSteps does not have a spec descriptor
      • +
      • "ERROR" buildSteps does not have a spec descriptor
      • -
        -

        For couchdb-operator.v1.4.3:

        +

      • "ERROR" output does not have a spec descriptor
      • +
      • "ERROR" source does not have a spec descriptor
      • -
      • "WARNING" (couchdb-operator.v1.4.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" strategy does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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" dockerfile does not have a spec descriptor
      • +
      • "ERROR" resources does not have a spec descriptor
      • -
        -

        For couchdb-operator.v1.4.4:

        +

      • "ERROR" buildRef does not have a spec descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" (couchdb-operator.v1.4.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" buildstrategies.build.dev does not have a status descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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" clusterbuildstrategies.build.dev does not have a status descriptor
      • -
        -

        For couchdb-operator.v1.4.4:

        +

      • "WARNING" Add a spec descriptor for buildSteps
      • +
      • "WARNING" Add a spec descriptor for buildSteps
      • -
      • "WARNING" (couchdb-operator.v1.4.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for output
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" Add a spec descriptor for source
      • +
      • "WARNING" Add a spec descriptor for strategy
      • -
        -

        For couchdb-operator.v1.0.14:

        +

      • "WARNING" Add a spec descriptor for dockerfile
      • +
      • "WARNING" Add a spec descriptor for resources
      • -
      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" Add a spec descriptor for buildRef
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" Add CRD validation for spec field `resources` in BuildRun/v1alpha1
      • -
        -

        For couchdb-operator.v1.1.0:

        +

      +
      + +
      +

      ONLY WARNINGS

      + + + +Info +
      +
        -
      • "WARNING" (couchdb-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
        +

        For shipwright-operator.v0.1.0:

        + + +

      • "WARNING" (shipwright-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • @@ -32289,28 +32303,28 @@
        Grade

      NOT USED

      Grade D
      (100)
      Grade C
      (500)
      tektoncd-operatorspinnaker-operator -

      COMPLY

      +

      NOT COMPLY

      NOT COMPLY

      - +Info -
      + +Info +

      Following the channels names which does not comply. For further information see Channel Naming doc.

        @@ -32323,83 +32337,67 @@
        Grade

      NOT USED

      USED

      NOT USED

      ERRORS AND WARNINGS

      - +Info -
      + +Info +

        -

        For tektoncd-operator.v0.49.0:

        - -

      • "ERROR" tektonconfigs.operator.tekton.dev does not have a status descriptor
      • - -
      • "ERROR" tektondashboards.operator.tekton.dev does not have a status descriptor
      • - -
      • "ERROR" tektonpipelines.operator.tekton.dev does not have a status descriptor
      • - -
      • "ERROR" tektonresults.operator.tekton.dev does not have a status descriptor
      • +

        For spinnaker-operator.v1.20.3:

        -

      • "ERROR" tektontriggers.operator.tekton.dev does not have a status descriptor
      • +
      • "ERROR" spinnakerFeatureFlags does not have a spec descriptor
      • -
      • "ERROR" profile does not have a spec descriptor
      • +
      • "ERROR" minio does not have a spec descriptor
      • -
      • "ERROR" targetNamespace does not have a spec descriptor
      • +
      • "ERROR" rbac does not have a spec descriptor
      • -
      • "ERROR" targetNamespace does not have a spec descriptor
      • +
      • "ERROR" serviceAccount does not have a spec descriptor
      • -
      • "ERROR" targetNamespace does not have a spec descriptor
      • +
      • "ERROR" halyard does not have a spec descriptor
      • -
      • "ERROR" targetNamespace does not have a spec descriptor
      • +
      • "ERROR" dockerRegistries does not have a spec descriptor
      • -
      • "ERROR" targetNamespace does not have a spec descriptor
      • +
      • "ERROR" spinnakeroperators.charts.helm.k8s.io does not have a status descriptor
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" Add a spec descriptor for profile
      • - -
      • "WARNING" Add a spec descriptor for targetNamespace
      • - -
      • "WARNING" Add a spec descriptor for targetNamespace
      • - -
      • "WARNING" Add a spec descriptor for targetNamespace
      • - -
      • "WARNING" Add a spec descriptor for targetNamespace
      • +
      • "WARNING" Add a spec descriptor for spinnakerFeatureFlags
      • -
      • "WARNING" Add a spec descriptor for targetNamespace
      • +
      • "WARNING" Add a spec descriptor for minio
      • -
      • "WARNING" Add CRD validation for spec field `profile` in TektonConfig/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for rbac
      • -
      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonConfig/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for serviceAccount
      • -
      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonDashboard/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for halyard
      • -
      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonPipeline/v1alpha1
      • +
      • "WARNING" Add a spec descriptor for dockerRegistries
      • -
      • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonTrigger/v1alpha1
      • +
      • "WARNING" Add CRD validation for SpinnakerOperator/v1alpha1
      • @@ -32410,25 +32408,27 @@
        Grade

      ONLY WARNINGS

      - +Info -
      + +Info +

        -

        For tektoncd-operator.v0.49.0:

        +

        For spinnaker-operator.v1.20.3:

        -

      • "WARNING" (tektoncd-operator.v0.49.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" (spinnaker-operator.v1.20.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • + +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -32438,7 +32438,7 @@
        Grade

      NOT USED

      Grade B
      (600)
      Grade D
      (100)
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      openebs +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • openebsoperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • openebsoperator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • openebsoperator.v1.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • openebsoperator.v1.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • openebsoperator.v2.10.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubernetes-imagepuller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      hawkbit-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • hawkbit-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hawkbit-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hawkbit-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hawkbit-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dynatrace-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      appsody-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      hpe-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      argocd-operator-helm +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      service-binding-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • service-binding-operator.v0.4.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • service-binding-operator.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.6.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.7.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.8.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.9.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • service-binding-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      snyk-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      postgresql-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • postgresql-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      robin-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • robin-operator.v5.3.2-59 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ripsaw +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nexus-operator-m88i +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      t8c +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubemq-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      wavefront +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • wavefront-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cluster-manager +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      esindex-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • esindex-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      noobaa-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      klusterlet +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      yugabyte-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • yugabyte-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      postgresql +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • original_43
      • + +
      • original_42
      • + +
      • original_41
      • + +
      • v5
      • + +
      • original_40
      • + +
      +
      +
        + +
      • 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=[stable original_43 original_42],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • postgresoperator.v4.2.1 - (label=,max=not set,channels=[stable original_43 original_42],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • postgresoperator.v4.2.2 - (label=,max=not set,channels=[stable original_43 original_42],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • postgresoperator.v4.3.2 - (label=,max=not set,channels=[stable original_43],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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      kubeflow +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      hazelcast-jet-enterprise-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      traefikee-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      istio +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • istio-operator.0.1.6 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      jenkins-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      mariadb-operator-app +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      redis-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • preview
      • + +
      +
      +
        + +
      • redis-operator.v0.0.1 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-operator.v0.2.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • redis-operator.v0.3.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-operator.v0.4.0 - (label=,max=not set,channels=[stable preview],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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      portworx-essentials +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • portworx-essentials.v1.3.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      postgres-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      prometheus +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      banzaicloud-kafka-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      halkyon +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      appdynamics-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      mcad-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mcad-operator.v0.1.9 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aqua +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 5.3.0
      • + +
      • alpha
      • + +
      • 6.0.0
      • + +
      • 6.2.0
      • + +
      +
      +
        + +
      • aqua-operator.v0.0.1 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • aqua-operator.v0.0.2 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • aqua-operator.v1.0.0 - (label=,max=not set,channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • aqua-operator.v1.0.1 - (label=,max=not set,channels=[5.3.0 alpha],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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dell-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      kubemod +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • kubemod.v0.6.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kube-arangodb +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • kube-arangodb.v1.0.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      keda +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      iot-simulator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • iot-simulator.0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mysql +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mysqloperator.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      jaeger +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.8.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      ibm-quantum-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibm-quantum-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      redis-enterprise +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • redis-enterprise-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      starboard-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      anchore-engine +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      kubeturbo +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • kubeturbo-operator.v6.3.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubeturbo-operator.v6.4.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubeturbo-operator.v7.21.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • kubeturbo-operator.v7.22.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubeturbo-operator.v8.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubeturbo-operator.v8.1.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      instana-agent +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      hazelcast-jet-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      spinnaker-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      clickhouse +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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: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)
      • + +
      +
      +
        + +
      +
      rook-edgefs +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • rook-edgefs.v1.0.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      percona-server-mongodb-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • original
      • + +
      • stable
      • + +
      +
      +
        + +
      • 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.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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      azure-service-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      integrity-shield-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • integrity-shield-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • integrity-shield-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • integrity-shield-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • integrity-shield-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      zoperator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zoperator.v0.3.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      snapscheduler +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      eclipse-che +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • cheoperator.v7.0.0-beta-5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.0.0-rc-2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.0.0-rc-4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.1.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.10.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.11.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.12.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.12.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.12.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.13.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.13.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.15.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.15.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.16.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.17.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.17.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.18.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.18.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.19.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.19.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.2.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.21.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.21.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.21.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.22.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.22.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.23.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.23.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.23.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.24.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.24.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.24.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.25.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.25.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.25.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.26.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.26.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.26.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.27.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.27.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.27.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.28.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.28.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.28.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.29.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.29.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.29.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.3.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.3.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.5.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.7.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.7.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.8.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • eclipse-che.v7.9.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      ibm-block-csi-operator-community +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • maintenance-1.5
      • + +
      +
      +
        + +
      • ibm-block-csi-operator.v1.3.0 - (label=,max=not set,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.4.0 - (label=,max=not set,channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.5.0 - (label=,max=not set,channels=[stable maintenance-1.5],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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      cassandra-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cassandra-operator.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      victoriametrics-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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)
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      camel-k +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • stable-1.5
      • + +
      • stable-1.4
      • + +
      • stable-1.3
      • + +
      +
      +
        + +
      • camel-k-operator.v0.3.3 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v0.3.4 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m3 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-m4 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-rc1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.0-rc2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.0.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.1.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.1.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.2.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.2.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.3.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.3.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.3.2 - (label=,max=not set,channels=[stable stable-1.4 stable-1.3 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      tf-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      submariner +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • alpha-0.10
      • + +
      +
      +
        + +
      • submariner-operator.v0.5.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.6.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.7.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • submariner.v0.10.1 - (label=,max=not set,channels=[alpha-0.10],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.8.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.8.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.9.0 - (label=,max=not set,channels=[alpha alpha-0.10],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • submariner.v0.9.1 - (label=,max=not set,channels=[alpha alpha-0.10],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      nsm-operator-registry +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • nsm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      prometheus-exporter-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      etcd +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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=[clusterwide-alpha singlenamespace-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)
      • + +
      +
      +
        + +
      +
      hazelcast-enterprise-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • hazelcast-enterprise-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      cockroachdb +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable-3.x
      • + +
      • stable-5.x
      • + +
      • stable
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      strimzi-kafka-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • strimzi-0.21.x
      • + +
      • strimzi-0.22.x
      • + +
      • strimzi-0.23.x
      • + +
      • strimzi-0.24.x
      • + +
      • strimzi-0.25.x
      • + +
      • stable
      • + +
      • strimzi-0.19.x
      • + +
      • strimzi-0.20.x
      • + +
      +
      +
        + +
      • strimzi-cluster-operator.v0.11.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.11.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.12.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.12.2 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.13.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.14.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.15.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.16.2 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.17.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.18.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.19.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.20.0 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.20.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.21.1 - (label=,max=not set,channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.22.1 - (label=,max=not set,channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      qserv-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sysdig +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      datadog-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      lightbend-console-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • lightbend-console-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      api-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      chaosblade-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • chaosblade-operator.v0.5.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kong +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kong.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kong.v0.2.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kong.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kong.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kong.v0.5.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kong.v0.6.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kong.v0.7.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kong.v0.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      opentelemetry-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      siddhi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • siddhi-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      atlasmap-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      opsmx-spinnaker-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      myvirtualdirectory +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • myvirtualdirectory.1.0.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      grafana-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • original
      • + +
      • alpha
      • + +
      • v4
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      intel-device-plugins-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      federatorai +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      rook-ceph +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      composable-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • composable-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kiali +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • kiali-operator.v0.18.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.10.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.11.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.13.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.15.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.19.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.22.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.24.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.25.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.26.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.27.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.28.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.29.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.3.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.4.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.6.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.7.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.9.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      oneagent +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      pystol +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • pystol.v0.8.17 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tektoncd-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      logging-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      project-quay +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • project-quay.v1.1.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cos-bucket-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cos-bucket-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      seldon-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • seldon-operator.v1.1.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldon-operator.v1.2.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldon-operator.v1.2.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldon-operator.v1.2.2 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • seldon-operator.v1.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldon-operator.v1.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldon-operator.v1.7.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • seldonoperator.v0.1.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldonoperator.v0.1.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldonoperator.v0.1.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • seldonoperator.v0.1.5 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      eunomia +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      ibmcloud-iam-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibmcloud-iam-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      project-quay-container-security-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • project-quay-container-security-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      community-kubevirt-hyperconverged +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      elastic-cloud-eck +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      minio-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • minio-operator.v1.0.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ditto-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ditto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ditto-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ditto-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ext-postgres-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      appranix +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      spark-gcp +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • sparkoperator.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mattermost-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mattermost-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      event-streams-topic +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      planetscale +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      splunk +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • splunk.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      open-liberty +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • alpha
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      ibm-application-gateway-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshift-qiskit-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      enc-key-sync +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • enc-key-sync-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      vault +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • vaultoperator.v0.4.10 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      apicast-community-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      percona-xtradb-cluster-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      couchbase-enterprise +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • couchbase-operator.v1.0.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • 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)
      • + +
      +
      +
        + +
      +
      nuxeo-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nuxeo-operator.v0.7.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      steerd-presto-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • steerd-presto-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      credstash-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • credstash-operator.v1.13.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      knative-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      ham-deploy +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ham-deploy.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hpe-ezmeral-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      neuvector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      lib-bucket-provisioner +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • lib-bucket-provisioner.v1.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibmcloud-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hedvig-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      elastic-phenix-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • elastic-phenix-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      microcks +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-scale-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      cloud-native-postgresql +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • cloud-native-postgresql.v1.1.0 - (label=,max=not set,channels=[stable],head:NO,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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      enmasse +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      rocketmq-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • rocketmq-operator.0.2.1 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      metering-upstream +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • metering-operator-upstream.v4.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hive-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • ocm-2.4
      • + +
      • ocm-2.2
      • + +
      • ocm-2.3
      • + +
      • ocm-2.1
      • + +
      +
      +
        + +
      • hive-operator.v1.0.10 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.11 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.12 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.13 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.14 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.16 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.17 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.18 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.19 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.6 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.7 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.8 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.0.9 - (label=,max=not set,channels=[ocm-2.2 ocm-2.3 alpha ocm-2.4 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.0 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.1 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.2 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.3 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.4 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.5 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.6 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.7 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hive-operator.v1.1.8 - (label=,max=not set,channels=[ocm-2.3 alpha ocm-2.4],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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      tidb-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      kogito-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 1.x
      • + +
      • alpha
      • + +
      +
      +
        + +
      • kogito-operator.v0.11.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.12.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.13.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.14.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.15.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.16.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v0.17.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.0.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.1.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.2.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.3.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      kubestone +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubestone.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      apicurio-registry +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • 2.x
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      vault-helm +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      yaks +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      argocd-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,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)
      • + +
      +
      +
        + +
      +
      storageos +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      falco +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      akka-cluster-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      nfd-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • nfd-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • nfd-operator.v0.2.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      couchdb-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1.1
      • + +
      • v1.2
      • + +
      • v1.3
      • + +
      • beta
      • + +
      • stable
      • + +
      • v1.4
      • + +
      • v1.0
      • + +
      +
      +
        + +
      • 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.2 - (label=,max=not set,channels=[beta stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.3 - (label=,max=not set,channels=[beta stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.4 - (label=,max=not set,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      wso2am-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      multicluster-operators-subscription +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      runtime-component-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      sematext +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      sealed-secrets-operator-helm +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      kom-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ember-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      infinispan +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 2.0.x
      • + +
      • dev-preview
      • + +
      • 2.1.x
      • + +
      • 1.1.x
      • + +
      • stable
      • + +
      +
      +
        + +
      • infinispan-operator.v0.2.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v0.3.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v0.3.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v0.3.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v1.0.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v1.0.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v1.1.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v1.1.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v1.1.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x 1.1.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.0.0 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.0.1 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.0.2 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.0.3 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.0.4 - (label=,max=not set,channels=[2.0.x dev-preview 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.0.5 - (label=,max=not set,channels=[2.0.x 2.1.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],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.1.1 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.1.2 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.1.3 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.1.4 - (label=,max=not set,channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      wildfly +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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.4.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)
      • + +
      +
      kubefed-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubefed-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      radanalytics-spark +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • sparkoperator.v1.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      portworx +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mongodb-enterprise +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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)
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      postgresql-operator-dev4devs-com +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • postgresql-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      awss3-operator-registry +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      hazelcast-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      litmuschaos +
        + +
      • UNKNOWN
      • + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      +
      + +
      +
      Have Max OCP version when required or does not need it at all
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      virt-gateway-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • virt-gateway-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      alvearie-imaging-ingestion +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],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)
      • + +
      +
      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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      pulp-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      topolvm-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      • v1.0
      • + +
      +
      +
        + +
      +
      +
        + +
      • topolvm-operator.v1.0.0 - (label=,max=not set,channels=[alpha v1.0],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: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: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)
      • + +
      +
      xrootd-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • xrootd-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      mongodb-atlas-kubernetes +
        + +
      +
      +
        + +
      • beta
      • + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • 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)
      • + +
      +
      apimatic-kubernetes-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],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: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)
      • + +
      +
      sigstore-helm-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • sigstore-helm-operator.v0.0.1 - (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)
      • + +
      +
      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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      keycloak-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.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)
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      tagger +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • tagger.v2.1.17 - (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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      deployment-validation-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • deployment-validation-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      cluster-impairment-operator +
        + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      +
      +
        + +
      • cluster-impairment-operator.v1.0.0 - (label=,max=not set,channels=[beta],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)
      • + +
      +
      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)
      • + +
      +
      shipwright-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • shipwright-operator.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)
      • + +
      +
      synapse-helm +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • synapse-helm.v0.0.1 - (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: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: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)
      • + +
      +
      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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      varnish-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • varnish-operator.v0.27.2 - (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)
      • + +
      +
      metallb-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • metallb-operator.v0.10.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
      + + + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html index c64e9225..3cd62e4e 100644 --- a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html @@ -102,15 +102,14 @@
      2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - +
    -
    Not complying with the recommendations
    - +
    Using deprecated APIs
    +
    @@ -124,57 +123,53 @@
    Not complying with the recommendations
    - + + - - + - - -
    Package Name
    redhat-marketplace-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • beta
    • -
    -
    -
      +
    • stable
    -
      - -
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
      -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v2.2.3 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    -
    - -
    -
    Partially complying with the recommendations
    - - - - - - - - - - - - - - + @@ -204,7 +199,7 @@
    Partially complying with the recommendations
    - + @@ -254,7 +251,7 @@
    Partially complying with the recommendations
    - + @@ -290,7 +281,7 @@
    Partially complying with the recommendations
    - + @@ -350,7 +345,7 @@
    Partially complying with the recommendations
    - + @@ -384,14 +375,12 @@
    Partially complying with the recommendations
    - + @@ -416,7 +405,7 @@
    Partially complying with the recommendations
    - + @@ -446,7 +435,7 @@
    Partially complying with the recommendations
    - + @@ -476,7 +465,7 @@
    Partially complying with the recommendations
    - + @@ -506,29 +495,25 @@
    Partially complying with the recommendations
    - + @@ -540,25 +525,29 @@
    Partially complying with the recommendations
    - + @@ -570,7 +559,7 @@
    Partially complying with the recommendations
    - + @@ -602,7 +603,7 @@
    Partially complying with the recommendations
    - + @@ -636,7 +633,7 @@
    Partially complying with the recommendations
    - + @@ -698,7 +709,7 @@
    Partially complying with the recommendations
    - + @@ -728,7 +739,7 @@
    Partially complying with the recommendations
    - + @@ -758,7 +769,7 @@
    Partially complying with the recommendations
    - + @@ -788,7 +799,7 @@
    Partially complying with the recommendations
    - + @@ -818,7 +833,7 @@
    Partially complying with the recommendations
    - + @@ -848,91 +865,37 @@
    Partially complying with the recommendations
    - + - + @@ -968,7 +925,7 @@
    Partially complying with the recommendations
    - + @@ -998,45 +967,27 @@
    Partially complying with the recommendations
    - + @@ -1048,7 +999,7 @@
    Partially complying with the recommendations
    - + @@ -1080,7 +1043,7 @@
    Partially complying with the recommendations
    - + @@ -1112,7 +1073,7 @@
    Partially complying with the recommendations
    - + @@ -1146,7 +1103,7 @@
    Partially complying with the recommendations
    - + @@ -1176,7 +1149,7 @@
    Partially complying with the recommendations
    - + @@ -1206,7 +1179,7 @@
    Partially complying with the recommendations
    - + @@ -1236,25 +1215,25 @@
    Partially complying with the recommendations
    - + @@ -1266,7 +1245,7 @@
    Partially complying with the recommendations
    - + @@ -1296,7 +1279,7 @@
    Partially complying with the recommendations
    - + @@ -1336,7 +1329,7 @@
    Partially complying with the recommendations
    - + @@ -1366,12 +1359,14 @@
    Partially complying with the recommendations
    - + @@ -1406,7 +1401,7 @@
    Partially complying with the recommendations
    - + @@ -1450,7 +1441,7 @@
    Partially complying with the recommendations
    - + @@ -1480,7 +1471,7 @@
    Partially complying with the recommendations
    - + @@ -1510,7 +1501,7 @@
    Partially complying with the recommendations
    - + @@ -1540,7 +1531,7 @@
    Partially complying with the recommendations
    - + @@ -1576,7 +1577,7 @@
    Partially complying with the recommendations
    - + @@ -1606,7 +1607,7 @@
    Partially complying with the recommendations
    - + @@ -1670,7 +1639,7 @@
    Partially complying with the recommendations
    - + @@ -1700,7 +1671,7 @@
    Partially complying with the recommendations
    - + @@ -1730,7 +1701,7 @@
    Partially complying with the recommendations
    - + @@ -1776,7 +1741,7 @@
    Partially complying with the recommendations
    - + @@ -1818,7 +1777,7 @@
    Partially complying with the recommendations
    - + @@ -1850,7 +1811,7 @@
    Partially complying with the recommendations
    - + @@ -1880,7 +1841,7 @@
    Partially complying with the recommendations
    - + @@ -1910,7 +1901,7 @@
    Partially complying with the recommendations
    - + @@ -1952,7 +1933,7 @@
    Partially complying with the recommendations
    - + @@ -1982,14 +1965,12 @@
    Partially complying with the recommendations
    - + @@ -2014,7 +2005,7 @@
    Partially complying with the recommendations
    - + @@ -2054,7 +2039,7 @@
    Partially complying with the recommendations
    - + @@ -2138,41 +2069,13 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -2186,7 +2089,7 @@
    Partially complying with the recommendations
    @@ -2198,7 +2101,7 @@
    Partially complying with the recommendations
    - + @@ -2228,25 +2133,27 @@
    Partially complying with the recommendations
    - + @@ -2258,7 +2165,7 @@
    Partially complying with the recommendations
    - + @@ -2288,7 +2195,7 @@
    Partially complying with the recommendations
    - + @@ -2318,7 +2225,7 @@
    Partially complying with the recommendations
    - + @@ -2348,7 +2255,7 @@
    Partially complying with the recommendations
    - + @@ -2394,7 +2285,7 @@
    Partially complying with the recommendations
    - + @@ -2462,7 +2353,7 @@
    Partially complying with the recommendations
    - + @@ -2496,7 +2383,7 @@
    Partially complying with the recommendations
    - + @@ -2530,7 +2415,7 @@
    Partially complying with the recommendations
    - + @@ -2614,7 +2507,7 @@
    Partially complying with the recommendations
    - + @@ -2644,7 +2537,7 @@
    Partially complying with the recommendations
    - + @@ -2686,7 +2567,7 @@
    Partially complying with the recommendations
    - + @@ -2716,7 +2597,7 @@
    Partially complying with the recommendations
    - + @@ -2748,7 +2639,7 @@
    Partially complying with the recommendations
    - + @@ -2778,7 +2679,7 @@
    Partially complying with the recommendations
    - + @@ -2808,7 +2709,7 @@
    Partially complying with the recommendations
    - + @@ -2872,7 +2745,7 @@
    Partially complying with the recommendations
    - + @@ -2904,7 +2779,7 @@
    Partially complying with the recommendations
    - + @@ -2944,7 +2809,7 @@
    Partially complying with the recommendations
    - + - + @@ -3020,7 +2869,7 @@
    Partially complying with the recommendations
    - + @@ -3080,7 +2899,7 @@
    Partially complying with the recommendations
    - + @@ -3110,7 +2933,7 @@
    Partially complying with the recommendations
    - + @@ -3140,7 +2963,7 @@
    Partially complying with the recommendations
    - + @@ -3170,7 +2993,7 @@
    Partially complying with the recommendations
    - + @@ -3200,7 +3023,7 @@
    Partially complying with the recommendations
    - + @@ -3230,7 +3053,7 @@
    Partially complying with the recommendations
    - + @@ -3260,7 +3085,7 @@
    Partially complying with the recommendations
    - + @@ -3294,25 +3115,27 @@
    Partially complying with the recommendations
    - + @@ -3324,7 +3147,7 @@
    Partially complying with the recommendations
    - + @@ -3354,7 +3193,7 @@
    Partially complying with the recommendations
    - + @@ -3388,7 +3223,7 @@
    Partially complying with the recommendations
    - + @@ -3418,37 +3253,31 @@
    Partially complying with the recommendations
    - + @@ -3460,7 +3289,7 @@
    Partially complying with the recommendations
    - + @@ -3496,7 +3323,7 @@
    Partially complying with the recommendations
    - + @@ -3526,7 +3359,7 @@
    Partially complying with the recommendations
    - + @@ -3558,7 +3389,7 @@
    Partially complying with the recommendations
    - + @@ -3588,7 +3419,7 @@
    Partially complying with the recommendations
    - + @@ -3622,7 +3453,7 @@
    Partially complying with the recommendations
    - + @@ -3654,7 +3517,7 @@
    Partially complying with the recommendations
    - + @@ -3692,14 +3547,12 @@
    Partially complying with the recommendations
    - + @@ -3748,7 +3579,7 @@
    Partially complying with the recommendations
    - + @@ -3794,7 +3613,7 @@
    Partially complying with the recommendations
    - + @@ -3828,7 +3645,7 @@
    Partially complying with the recommendations
    - + @@ -3858,7 +3675,7 @@
    Partially complying with the recommendations
    - + @@ -3904,7 +3705,7 @@
    Partially complying with the recommendations
    - + @@ -3934,7 +3735,7 @@
    Partially complying with the recommendations
    - + @@ -3964,7 +3765,7 @@
    Partially complying with the recommendations
    - + @@ -3994,7 +3795,7 @@
    Partially complying with the recommendations
    - + @@ -4024,7 +3833,7 @@
    Partially complying with the recommendations
    - + @@ -4068,7 +3869,7 @@
    Partially complying with the recommendations
    - + @@ -4108,7 +3899,7 @@
    Partially complying with the recommendations
    - + @@ -4140,7 +3965,7 @@
    Partially complying with the recommendations
    - + @@ -4174,7 +3995,7 @@
    Partially complying with the recommendations
    - + @@ -4210,7 +4043,7 @@
    Partially complying with the recommendations
    - + @@ -4240,7 +4077,7 @@
    Partially complying with the recommendations
    - + @@ -4272,7 +4109,7 @@
    Partially complying with the recommendations
    - + @@ -4302,7 +4139,7 @@
    Partially complying with the recommendations
    - + @@ -4334,7 +4179,7 @@
    Partially complying with the recommendations
    - + @@ -4364,25 +4209,25 @@
    Partially complying with the recommendations
    - + @@ -4394,7 +4239,7 @@
    Partially complying with the recommendations
    - + @@ -4460,7 +4269,7 @@
    Partially complying with the recommendations
    - + @@ -4490,14 +4299,12 @@
    Partially complying with the recommendations
    - + @@ -4522,7 +4329,7 @@
    Partially complying with the recommendations
    - + @@ -4552,7 +4359,7 @@
    Partially complying with the recommendations
    - + @@ -4584,7 +4391,7 @@
    Partially complying with the recommendations
    - + @@ -4614,7 +4421,7 @@
    Partially complying with the recommendations
    - + @@ -4644,7 +4451,7 @@
    Partially complying with the recommendations
    - + @@ -4674,12 +4483,14 @@
    Partially complying with the recommendations
    - + @@ -4704,27 +4515,45 @@
    Partially complying with the recommendations
    - + @@ -4736,7 +4565,7 @@
    Partially complying with the recommendations
    - + @@ -4766,7 +4595,7 @@
    Partially complying with the recommendations
    - + @@ -4796,7 +4625,7 @@
    Partially complying with the recommendations
    - + @@ -4836,7 +4655,7 @@
    Partially complying with the recommendations
    - + @@ -4866,7 +4739,7 @@
    Partially complying with the recommendations
    - + @@ -4902,7 +4771,7 @@
    Partially complying with the recommendations
    - + @@ -4932,7 +4811,7 @@
    Partially complying with the recommendations
    - + @@ -4962,7 +4841,7 @@
    Partially complying with the recommendations
    - + @@ -5010,25 +4871,51 @@
    Partially complying with the recommendations
    - + @@ -5040,14 +4927,12 @@
    Partially complying with the recommendations
    - + @@ -5072,7 +4969,7 @@
    Partially complying with the recommendations
    - + @@ -5109,7 +5004,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    cic-operator-with-crdsrapidbiz-operator-certified
      @@ -192,7 +187,7 @@
      Partially complying with the recommendations
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    neuvector-certified-operatorinstana-agent
      @@ -222,27 +217,29 @@
      Partially complying with the recommendations
      -
    • neuvector-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • instana-agent-operator.v0.2.6 - (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)
    • +
    • instana-agent-operator.v0.2.7 - (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)
    • +
    • instana-agent-operator.v0.3.10 - (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)
    • +
    • instana-agent-operator.v0.3.4 - (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)
    • +
    • instana-agent-operator.v0.3.6 - (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)
    • +
    • instana-agent-operator.v0.3.7 - (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)
    • +
    • instana-agent-operator.v0.3.8 - (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)
    • +
    • instana-agent-operator.v0.3.9 - (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)
    • +
    • instana-agent-operator.v1.0.0 - (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)
    • +
    • instana-agent-operator.v1.0.2 - (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:YES,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)
    aws-event-sources-operator-certifiedinfrastructure-asset-orchestrator-certified
      @@ -265,20 +262,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    redis-enterprise-operator-certopenshiftxray-operator
      @@ -301,44 +292,48 @@
      Partially complying with the recommendations
      -
    • preview
    • - -
    • production
    • - -
    • 6.0.12
    • - -
    • 6.0.20
    • - -
    • 6.0.6
    • - -
    • 6.0.8
    • - -
    • 5.4.14
    • +
    • alpha
      -
    • redis-enterprise-operator-preview.v6.0.20-12 - (label=v4.5,max=4.8,channels=[preview],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v5.4.14-7 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.12 6.0.20 5.4.14 6.0.6 6.0.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.12-5 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.12 6.0.20],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[production 6.0.20],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.20],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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.12 6.0.20 6.0.6 6.0.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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.12 6.0.20 6.0.6 6.0.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.6-6 - (label=v4.5,v4.6,max=4.8,channels=[production 6.0.12 6.0.20 6.0.6 6.0.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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.12 6.0.20 6.0.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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.12 6.0.20 6.0.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    timemachine-operatordataset-operator
      @@ -368,11 +363,7 @@
      Partially complying with the recommendations
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • timemachine-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • timemachine-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dataset-operator.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    bigid-operatoropen-enterprise-spinnaker
    • CRD
    • -
    • ClusterRole
    • -
    @@ -404,7 +393,7 @@
    Partially complying with the recommendations
      -
    • bigid-operator.v1.0.3 - (label=v4.3,v4.4,v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    blackduck-connector-operatorinsightedge-enterprise-operator2
      @@ -434,7 +423,7 @@
      Partially complying with the recommendations
      -
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    storageos2citrix-ingress-controller-operator
      @@ -457,14 +446,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • storageosoperator.v2.3.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-redhat-certifiedkubeplus
      @@ -487,14 +476,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    dell-csi-operator-certifiedopen-liberty-certified
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • beta
      -
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    • +
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    db2-zos-db-operatordell-csi-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • +
    • stable
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    hspc-operatork8s-triliovault
      @@ -581,6 +570,10 @@
      Partially complying with the recommendations
      +
    • namespaced
    • + +
    • cluster
    • +
    • stable
    @@ -588,9 +581,17 @@
    Partially complying with the recommendations
      -
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • hspc-operator.v1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, 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.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-scale-csidynatrace-operator
      @@ -613,18 +614,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • dynatrace-operator.v0.2.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-enterprise-operatorportworx-certified
      @@ -647,6 +644,8 @@
      Partially complying with the recommendations
      +
    • stable
    • +
    • alpha
    @@ -654,9 +653,21 @@
    Partially complying with the recommendations
      -
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[stable 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)
    • +
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cnvrg-operator-marketplacebacula-operator2
      @@ -716,7 +727,7 @@
      Partially complying with the recommendations
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftpipeline-operatorappsody-operator-certified
      @@ -739,14 +750,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    anaconda-team-editionzoperator
      @@ -769,14 +780,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    open-liberty-certifiedtimemachine-operator
      @@ -799,14 +810,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • timemachine-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • timemachine-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-mq-operatorcortex-hub-operator
      @@ -829,14 +844,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • ibm-mq-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    mongodb-enterpriseruntime-component-operator-certified
    • CRD
    • -
    • UNKNOWN
    • -
      -
    • stable
    • +
    • beta
      -
    • 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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,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.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.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.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=not set,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=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,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.3 - (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.4 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    cloud-native-postgresqlfederatorai-certified
      @@ -943,10 +906,6 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • alpha
    • -
    • stable
    @@ -954,9 +913,7 @@
    Partially complying with the recommendations
      -
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cloud-native-postgresql.v1.7.1 - (label=v4.5-v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    fp-predict-plus-operator-certifiedhazelcast-enterprise-certified
      @@ -979,14 +936,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    kubeturbo-certifiedcan-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portshift-controller-operatorkubemq-operator-marketplace
      @@ -1066,9 +1017,21 @@
      Partially complying with the recommendations
      -
    • portshift-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v0.5.2 - (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)
    • +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.5.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    stonebranch-universalagent-operator-certifiedcnvrg-operator-marketplace
      @@ -1098,9 +1061,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    vprotect-operatorpresto-operator
      @@ -1130,11 +1091,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anchore-enginenxiq-operator-certified
      @@ -1157,14 +1114,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    federatorai-certifiedh2o-operator
      @@ -1187,14 +1160,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    infinibox-operator-certifiedaws-event-sources-operator-certified
      @@ -1224,7 +1197,13 @@
      Partially complying with the recommendations
      -
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ionir-operatorrocketchat-operator-certified
      -
    • ClusterRole
    • +
    • CRD
      -
    • stable
    • +
    • beta
      -
    • ionir-operator.v1.0.5 - (label=v4.6-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    sysdig-certifiedibm-spectrum-scale-csi
      @@ -1284,7 +1263,11 @@
      Partially complying with the recommendations
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    cortex-certifai-operatorneuvector-certified-operator
      @@ -1307,8 +1290,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • beta
    @@ -1316,15 +1297,27 @@
    Partially complying with the recommendations
      -
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,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)
    • +
    • neuvector-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[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)
    • +
    • neuvector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[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)
    • +
    • neuvector-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[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)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedakka-cluster-operator-certified
      @@ -1354,7 +1347,7 @@
      Partially complying with the recommendations
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    joget-dx-operatornastel-xray-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1384,17 +1379,17 @@
    Partially complying with the recommendations
      -
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nastel-xray-operator.v1.323.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,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)
    • -
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,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)
    • -
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,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)
    • -
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,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)
    • -
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nastel-xray-operator.v1.325.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    k8s-triliovaultjoget-dx-operator
      @@ -1417,28 +1412,24 @@
      Partially complying with the recommendations
      -
    • namespaced
    • - -
    • cluster
    • - -
    • stable
    • +
    • alpha
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-cluster.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-cluster.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    model-builder-for-vision-certifiedmf-cics-tg-operator
      @@ -1461,14 +1452,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operator-certifiederynis-operator
      @@ -1491,14 +1482,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • erynis-operator.v0.2.35 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    zoperatorpercona-server-mongodb-operator-certified
      @@ -1521,14 +1512,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certifiedseldon-operator-certified
      @@ -1551,20 +1542,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
    • -
    • beta
    • +
    • alpha
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • -
    • datadog-operator.v0.5.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,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)
    confluent-for-kubernetescic-operator
      @@ -1587,14 +1588,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftxray-operatorxspc-operator
      @@ -1617,48 +1618,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xspc-operator.1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    rapidbiz-operator-certifiedhazelcast-jet-enterprise-operator
      @@ -1688,7 +1657,9 @@
      Partially complying with the recommendations
      -
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    eddi-operator-certifiednsx-container-plugin-operator
      @@ -1718,7 +1689,7 @@
      Partially complying with the recommendations
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    redhat-marketplace-operatormemql-certified
      @@ -1741,30 +1712,24 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • memsql-operator.v0.0.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • memsql-operator.v0.0.3 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • memsql-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • memsql-operator.v1.1.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • memsql-operator.v1.1.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v2.2.3 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,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)
    cass-operatorcert-manager-operator
      @@ -1789,24 +1754,18 @@
      Partially complying with the recommendations
    • stable
    • +
    • alpha
    • +
      -
    • 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)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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)
    • +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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)
    • +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operatorcortex-fabric-operator
      @@ -1831,14 +1790,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    alcide-kaudit-operatoropenshiftpipeline-operator
      @@ -1868,7 +1829,7 @@
      Partially complying with the recommendations
      -
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-ingress-controller-operatorredis-enterprise-operator-cert
      @@ -1891,14 +1852,44 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • preview
    • + +
    • production
    • + +
    • 6.0.12
    • + +
    • 6.0.20
    • + +
    • 6.0.6
    • + +
    • 6.0.8
    • + +
    • 5.4.14
      -
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.12 6.0.20 5.4.14 6.0.6 6.0.8],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.12 6.0.20],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[production 6.0.20],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],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.12 6.0.20 6.0.6 6.0.8],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.12 6.0.20 6.0.6 6.0.8],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.12 6.0.20 6.0.6 6.0.8],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.12 6.0.20 6.0.8],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.12 6.0.20 6.0.8],head:YES,defaultChannel:YES, deprecated:NO)
    oneagent-certifiedcortex-healthcare-hub-operator
      @@ -1921,26 +1912,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • cortex-healthcare-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],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)
    • +
    • cortex-healthcare-hub-operator.v0.0.25 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    infrastructure-asset-orchestrator-certifiedportshift-controller-operator
      @@ -1963,14 +1944,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    can-operatork10-kasten-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -1997,12 +1978,22 @@
    Partially complying with the recommendations
  • alpha
  • +
  • stable
  • +
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    uma-operatorvprotect-operator
      @@ -2032,17 +2023,11 @@
      Partially complying with the recommendations
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    • -
    • uma-operator.v3.0.0 - (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)
    tigera-operatorblackduck-connector-operator
      @@ -2065,68 +2050,14 @@
      Partially complying with the recommendations
      -
    • release-v1.17
    • - -
    • release-v1.13
    • - -
    • release-v1.20
    • - -
    • release-v1.15
    • - -
    • stable
    • +
    • alpha
      -
    • 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.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
    • +
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aci-containers-operatorjtrac-app-operator
    • CRD
    • -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    -
    wavefront-operator -
      - -
    • CRD
    • +
    • ClusterRole
      -
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    open-enterprise-spinnakerhspc-operator
      @@ -2209,14 +2112,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hspc-operator.v1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certifiedako-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-symphony-operatorkong-offline-operator
      @@ -2269,14 +2176,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-tg-operatorf5-bigip-ctlr-operator
      @@ -2299,14 +2206,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    kpow-io-certifiedcyberarmor-operator-certified
      @@ -2336,7 +2243,7 @@
      Partially complying with the recommendations
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certifiedaci-containers-operator
      @@ -2359,30 +2266,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • 6.0
    • - -
    • latest
    • - -
    • 5.3
    • - -
    • 6.2
    • +
    • stable
      -
    • 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.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    synopsys-certifiedinfinibox-operator-certified
      @@ -2405,14 +2296,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    perceptilabs-operator-packagefp-predict-plus-operator-certified
      @@ -2480,11 +2371,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    orcabehavior-analytics-services-operator-certified
      @@ -2507,18 +2394,16 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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)
    • +
    • behavior-analytics-services-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • behavior-analytics-services-operator.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    instana-agentcouchdb-operator-certified
      @@ -2541,36 +2426,44 @@
      Partially complying with the recommendations
      +
    • v1.1
    • +
    • beta
    • +
    • stable
    • + +
    • v1.4
    • + +
    • v1.3
    • + +
    • v1.0
    • + +
    • v1.2
    • +
      -
    • 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)
    • +
    • couchdb-operator.v1.0.14 - (label=v4.6,v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • instana-agent-operator.v0.3.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • couchdb-operator.v1.1.0 - (label=v4.6,v4.5,max=4.8,channels=[v1.1 beta],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • instana-agent-operator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • couchdb-operator.v1.2.1 - (label=v4.6,v4.5,max=4.8,channels=[v1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • instana-agent-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • couchdb-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.3],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • instana-agent-operator.v0.3.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • couchdb-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • instana-agent-operator.v0.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • couchdb-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],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)
    • +
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],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)
    • +
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],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)
    • +
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],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)
    • +
    • couchdb-operator.v1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    armory-operatoreddi-operator-certified
      @@ -2625,14 +2518,14 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • alpha
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-enterprise-certifiedsematext
      @@ -2655,26 +2548,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    dataset-operatoribm-mq-operator
      @@ -2704,7 +2585,7 @@
      Partially complying with the recommendations
      -
    • dataset-operator.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-mq-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    zabbix-operator-certifiedoneagent-certified
      @@ -2727,16 +2608,26 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • alpha
      -
    • zabbix-operator-certified.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • dynatrace-monitoring.v0.10.1 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],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)
    runtime-component-operator-certifieduma-operator
      @@ -2759,14 +2650,24 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    starburst-enterprise-helm-operatorhedvig-operator
      @@ -2789,14 +2690,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftartifactoryha-operatordatadog-operator-certified
      @@ -2821,46 +2722,18 @@
      Partially complying with the recommendations
    • alpha
    • +
    • beta
    • +
      -
    • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • artifactory-ha-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.5.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cpx-cic-operatorhpe-ezmeral-csi-operator
      @@ -2883,16 +2756,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    transform-adv-operatoras400rpc-operator
      @@ -2915,24 +2790,14 @@
      Partially complying with the recommendations
      -
    • v2.3
    • - -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • as400rpc-operator.v0.0.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portworx-certified
      @@ -2955,42 +2820,26 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • alpha
    • -
      -
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    erynis-operatorcitrix-adc-istio-ingress-gateway-operator
      @@ -3008,7 +2857,7 @@
      Partially complying with the recommendations
      -
    • erynis-operator.v0.2.35 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    couchdb-operator-certifiedstarburst-enterprise-helm-operator
      @@ -3031,44 +2880,14 @@
      Partially complying with the recommendations
      -
    • v1.1
    • - -
    • beta
    • - -
    • stable
    • - -
    • v1.4
    • - -
    • v1.3
    • - -
    • v1.0
    • - -
    • v1.2
    • +
    • alpha
      -
    • 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=[v1.1 beta],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=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator-certifiedgitlab-runner-operator
      @@ -3091,14 +2910,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certifiedfalco-certified
      @@ -3121,14 +2944,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    as400rpc-operatoranaconda-team-edition
      @@ -3151,14 +2974,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • as400rpc-operator.v0.0.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    ivory-server-appmf-cics-ts-operator
      @@ -3188,7 +3011,7 @@
      Partially complying with the recommendations
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    splunk-certifiedcitrix-cpx-with-ingress-controller-operator
      @@ -3218,7 +3041,7 @@
      Partially complying with the recommendations
      -
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-expresszabbix-operator-certified
      @@ -3241,14 +3064,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • lts
      -
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cortex-fabric-operatornvmesh-operator
      @@ -3271,18 +3096,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • stable
    • +
    • beta
      -
    • 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)
    • +
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    dynatrace-operatorcoralogix-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • +
    • stable
      -
    • dynatrace-operator.v0.2.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    atomicorp-helm-operator-certifiedaqua-operator-certified
      @@ -3337,12 +3160,28 @@
      Partially complying with the recommendations
    • alpha
    • +
    • 6.0
    • + +
    • latest
    • + +
    • 5.3
    • + +
    • 6.2
    • +
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    appranix-cpscic-operator-with-crds
      @@ -3365,18 +3204,14 @@
      Partially complying with the recommendations
      -
    • deprecated
    • - -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nsx-container-plugin-operatoropenunison-ocp-certified
      @@ -3399,14 +3234,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-xray-operatorfep-ansible-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • nastel-xray-operator.v1.323.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • fujitsu-enterprise-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • fujitsu-enterprise-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fujitsu-enterprise-operator.v2.2.1 - (label=v4.5-v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    densify-operatororca
      @@ -3471,20 +3300,18 @@
      Partially complying with the recommendations
      -
    • v1.0
    • - -
    • alpha
    • +
    • beta
      -
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • orca-operator.v1.0.193 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],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)
    • -
    • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,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)
    xcrypt-operatorcloud-native-postgresql
      @@ -3507,14 +3334,20 @@
      Partially complying with the recommendations
      +
    • beta
    • +
    • alpha
    • +
    • stable
    • +
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cloud-native-postgresql.v1.7.1 - (label=v4.5-v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-hub-operatorarmory-operator
      @@ -3537,16 +3370,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • v1alpha2
      -
    • 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)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    bacula-operator2ibm-spectrum-symphony-operator
      @@ -3569,14 +3400,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    gitlab-runner-operatorperceptilabs-operator-package
      @@ -3606,11 +3437,11 @@
      Partially complying with the recommendations
      -
    • gitlab-runner-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • perceptilabs-operator.v1.0.16 - (label=v4.6,v4.5,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)
    • +
    • perceptilabs-operator.v1.0.20 - (label=v4.6,v4.5,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:YES,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)
    behavior-analytics-services-operator-certifiedopenshiftartifactoryha-operator
      @@ -3640,9 +3471,41 @@
      Partially complying with the recommendations
      -
    • behavior-analytics-services-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • artifactory-ha-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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • artifactory-ha-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    t8c-certifiedconfluent-for-kubernetes
      @@ -3672,15 +3535,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-navigator-operator-certifiedcpx-cic-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -3712,31 +3565,9 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nxiq-operator-certifiedappranix-cps
      @@ -3759,6 +3590,8 @@
      Partially complying with the recommendations
      +
    • deprecated
    • +
    • stable
    @@ -3766,23 +3599,9 @@
    Partially complying with the recommendations
      -
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],head:YES,defaultChannel:NO, deprecated:NO)
    hpe-ezmeral-csi-operatoryugabyte-operator
      @@ -3805,18 +3624,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • beta
      -
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-ts-operatorrobin-storage-trial
      @@ -3839,14 +3656,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-trial.v5.3.4-156 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operator-certifiedstorageos2
      @@ -3871,28 +3688,12 @@
      Partially complying with the recommendations
    • stable
    • -
    • alpha
    • -
      -
    • 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)
    • +
    • storageosoperator.v2.3.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    joget-openshift-operatortraefikee-redhat-certified
      @@ -3915,14 +3716,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-with-ingress-controller-operatorkpow-io-certified
      @@ -3952,7 +3753,7 @@
      Partially complying with the recommendations
      -
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hedvig-operatorhere-service-operator-certified
      @@ -3975,14 +3776,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-adc-istio-ingress-gateway-operatort8c-certified
      @@ -4005,14 +3806,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    kubemq-operator-marketplacedensify-operator
      @@ -4035,6 +3844,8 @@
      Partially complying with the recommendations
      +
    • v1.0
    • +
    • alpha
    @@ -4042,21 +3853,11 @@
    Partially complying with the recommendations
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.5.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operatorrobin-storage-express
      @@ -4079,8 +3880,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -4088,15 +3887,7 @@
    Partially complying with the recommendations
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-healthcare-hub-operatordata-explorer-operator-certified
      @@ -4119,16 +3910,50 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • cortex-healthcare-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • data-explorer-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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.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)
    node-red-operator-certifiedmodel-builder-for-vision-certified
      @@ -4151,18 +3976,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatornxrm-operator-certified
      @@ -4192,13 +4013,25 @@
      Partially complying with the recommendations
      -
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxrm-operator-certified.v3.22.1-1 - (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)
    • +
    • nxrm-operator-certified.v3.23.0-1 - (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)
    • +
    • nxrm-operator-certified.v3.24.0-7 - (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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    f5-bigip-ctlr-operatornode-red-operator-certified
      @@ -4221,14 +4054,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    growth-stack-operator-certifiedappdynamics-operator
      @@ -4258,9 +4095,9 @@
      Partially complying with the recommendations
      -
    • growth-stack-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.4.3 - (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)
    • +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubeplusxcrypt-operator
      @@ -4290,7 +4127,7 @@
      Partially complying with the recommendations
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    xspc-operatortransform-adv-operator
      @@ -4313,6 +4150,8 @@
      Partially complying with the recommendations
      +
    • v2.3
    • +
    • stable
    @@ -4320,9 +4159,15 @@
    Partially complying with the recommendations
      -
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable v2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • xspc-operator.1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],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)
    here-service-operator-certifiedsynopsys-certified
      @@ -4345,14 +4190,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operatorionir-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • alpha
    • +
    • stable
      -
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ionir-operator.v1.0.5 - (label=v4.6-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certifiedjoget-openshift-operator
      @@ -4412,43 +4257,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-trialsysdig-certified
      @@ -4478,7 +4287,7 @@
      Partially complying with the recommendations
      -
    • robin-storage-trial.v5.3.4-156 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    coralogix-operator-certifiedkube-arangodb
    • CRD
    • -
    • ClusterRole
    • -
    @@ -4510,7 +4317,7 @@
    Partially complying with the recommendations
      -
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    tf-operatorwavefront-operator
      @@ -4533,14 +4340,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jtrac-app-operatorbigid-operator
      @@ -4572,7 +4379,7 @@
      Partially complying with the recommendations
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • bigid-operator.v1.0.3 - (label=v4.3,v4.4,v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sematextalcide-kaudit-operator
      @@ -4595,14 +4402,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    insightedge-enterprise-operator2tf-operator
      @@ -4625,14 +4432,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kong-offline-operatorgrowth-stack-operator-certified
      @@ -4662,7 +4469,9 @@
      Partially complying with the recommendations
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    kube-arangodbsnyk-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
    @@ -4692,7 +4503,7 @@
    Partially complying with the recommendations
      -
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ako-operatorkubeturbo-certified
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    appsody-operator-certifiedsplunk-certified
      @@ -4747,14 +4576,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    presto-operatorivory-server-app
      @@ -4784,7 +4613,7 @@
      Partially complying with the recommendations
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    memql-certifiedanchore-engine
      @@ -4814,17 +4643,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certifiedtigera-operator
      @@ -4847,6 +4666,14 @@
      Partially complying with the recommendations
      +
    • release-v1.17
    • + +
    • release-v1.13
    • + +
    • release-v1.20
    • + +
    • release-v1.15
    • +
    • stable
    @@ -4854,7 +4681,53 @@
    Partially complying with the recommendations
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
    cert-manager-operatorstonebranch-universalagent-operator-certified
      @@ -4877,8 +4750,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -4886,11 +4757,9 @@
    Partially complying with the recommendations
      -
    • 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.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[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)
    • +
    • universalagent-operator.v1.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    falco-certifiedcortex-certifai-operator
      @@ -4915,12 +4784,22 @@
      Partially complying with the recommendations
    • stable
    • +
    • beta
    • +
      -
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    nvmesh-operatordb2-zos-db-operator
      @@ -4943,14 +4822,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nxrm-operator-certifiedatomicorp-helm-operator-certified
      @@ -4973,32 +4852,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    h2o-operatornastel-navigator-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
      -
    • beta
    • +
    • alpha
      -
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-certifiedcass-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -5060,7 +4945,19 @@
    Partially complying with the recommendations
      -
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    yugabyte-operatorpercona-xtradb-cluster-operator-certified
      @@ -5083,16 +4980,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • beta
    • +
    • stable
      -
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -5124,7 +5019,7 @@
    Fully complying with the recommendations
    - + - + - + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + @@ -5594,14 +5589,10 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + @@ -5853,14 +5826,14 @@
    Fully complying with the recommendations
    - + - + - + @@ -5949,7 +5928,7 @@
    Fully complying with the recommendations
    diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html index 19b96a3e..561a6c07 100644 --- a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html @@ -102,15 +102,14 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - +
    -
    Not complying with the recommendations
    -
    ciliumpmem-csi-operator-os
      @@ -5133,6 +5028,8 @@
      Fully complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -5145,14 +5042,14 @@
    Fully complying with the recommendations
      -
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzograph-operatorhpe-csi-operator
      @@ -5173,14 +5070,64 @@
      Fully complying with the recommendations
      -
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operatorgpu-operator-certified +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v1.7
    • + +
    • v1.8
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    cilium
      @@ -5201,17 +5148,21 @@
      Fully complying with the recommendations
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    iomesh-operatormongodb-enterprise
      +
    • CRD
    • + +
    • UNKNOWN
    • +
    @@ -5224,57 +5175,119 @@
    Fully complying with the recommendations
      +
    • 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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,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.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.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.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=not set,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=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,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.3 - (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.4 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    ovms-operatorcrunchy-postgres-operator
      +
    • CRD
    • +
      -
    • alpha
    • +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    linstor-operatorsriov-fec
      +
    • CRD
    • + +
    • ClusterRole
    • +
      -
    • alpha
    • -
    • stable
    @@ -5282,19 +5295,21 @@
    Fully complying with the recommendations
      +
    • sriov-fec.v1.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sriov-fec.v1.1.0 - (label==v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    entando-k8s-operatorcockroachdb-certified
      @@ -5305,8 +5320,6 @@
      Fully complying with the recommendations
    • stable
    • -
    • alpha
    • -
    • beta
    @@ -5319,21 +5332,21 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
    minio-operatorn3000
      +
    • CRD
    • + +
    • ClusterRole
    • +
    @@ -5346,69 +5359,49 @@
    Fully complying with the recommendations
      +
    • n3000.v1.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • n3000.v1.1.0 - (label==v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    gpu-operator-certifiedccm-node-agent-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • v1.7
    • - -
    • v1.8
    • +
    • alpha
      -
    • 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)
    • +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operatorantrea-operator-for-kubernetes
      @@ -5429,17 +5422,19 @@
      Fully complying with the recommendations
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • antrea-operator-for-kubernetes.v0.0.1 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operatorcouchbase-enterprise-certified
      +
    • CRD
    • +
    @@ -5452,24 +5447,34 @@
    Fully complying with the recommendations
      +
    • 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)
    • +
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nginx-ingress-operatorlinstor-operator
      -
    • CRD
    • -
    @@ -5477,34 +5482,26 @@
    Fully complying with the recommendations
  • alpha
  • +
  • stable
  • +
      -
    • 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)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operatoranzo-operator
      @@ -5525,14 +5522,14 @@
      Fully complying with the recommendations
      -
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certifiednutanixcsioperator
      @@ -5541,8 +5538,6 @@
      Fully complying with the recommendations
      -
    • stable
    • -
    • beta
    @@ -5555,7 +5550,7 @@
    Fully complying with the recommendations
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    sriov-fecvfunction-server-operator
      -
    • CRD
    • - -
    • ClusterRole
    • -
    @@ -5614,21 +5605,19 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    pmem-csi-operator-osminio-operator
      @@ -5637,8 +5626,6 @@
      Fully complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -5651,14 +5638,14 @@
    Fully complying with the recommendations
      -
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    couchbase-enterprise-certifiednginx-ingress-operator
      @@ -5669,50 +5656,44 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • nginx-ingress-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.0.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nginx-ingress-operator.v0.3.0 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-deploy-operatoranzograph-operator
      -
    • CRD
    • -
      -
    • alpha
    • -
    • stable
    @@ -5720,21 +5701,19 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    antrea-operator-for-kubernetesentando-k8s-operator
      @@ -5743,8 +5722,12 @@
      Fully complying with the recommendations
      +
    • stable
    • +
    • alpha
    • +
    • beta
    • +
    @@ -5755,26 +5738,26 @@
    Fully complying with the recommendations
      -
    • antrea-operator-for-kubernetes.v0.0.1 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    crunchy-postgres-operatoriomesh-operator
      -
    • CRD
    • -
      -
    • v5
    • -
    • stable
    @@ -5782,57 +5765,47 @@
    Fully complying with the recommendations
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    n3000ovms-operator
      -
    • CRD
    • - -
    • ClusterRole
    • -
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anzo-operatormongodb-atlas-kubernetes
      @@ -5841,7 +5814,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    elasticsearch-eck-operator-certifiedseldon-deploy-operator
      @@ -5871,6 +5844,8 @@
      Fully complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -5878,57 +5853,61 @@
    Fully complying with the recommendations
      -
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,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)
    mongodb-atlas-kuberneteselasticsearch-eck-operator-certified
      +
    • CRD
    • +
      -
    • beta
    • +
    • stable
      +
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nutanixcsioperatoranzounstructured-operator
      @@ -5937,7 +5916,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    +
    Using deprecated APIs
    +
    @@ -124,55 +123,35 @@
    Not complying with the recommendations
    - + + - - + - - -
    Package Name
    runtime-component-operator-certified +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • beta
    -
      - -
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
      -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    -
    - -
    -
    Partially complying with the recommendations
    - - - - - - - - - - - - - - + @@ -252,7 +229,7 @@
    Partially complying with the recommendations
    - + @@ -282,7 +259,7 @@
    Partially complying with the recommendations
    - + @@ -312,7 +289,7 @@
    Partially complying with the recommendations
    - + @@ -342,12 +325,14 @@
    Partially complying with the recommendations
    - + @@ -374,7 +357,7 @@
    Partially complying with the recommendations
    - + @@ -404,7 +389,7 @@
    Partially complying with the recommendations
    - + @@ -440,7 +433,7 @@
    Partially complying with the recommendations
    - + @@ -474,7 +463,7 @@
    Partially complying with the recommendations
    - + @@ -504,7 +499,7 @@
    Partially complying with the recommendations
    - + @@ -534,7 +533,7 @@
    Partially complying with the recommendations
    - + @@ -564,7 +571,7 @@
    Partially complying with the recommendations
    - + @@ -594,7 +605,7 @@
    Partially complying with the recommendations
    - + @@ -634,7 +635,7 @@
    Partially complying with the recommendations
    - + @@ -668,7 +665,7 @@
    Partially complying with the recommendations
    - + @@ -698,7 +695,7 @@
    Partially complying with the recommendations
    - + @@ -736,7 +727,7 @@
    Partially complying with the recommendations
    - + @@ -776,7 +759,7 @@
    Partially complying with the recommendations
    - + @@ -810,13 +793,15 @@
    Partially complying with the recommendations
    - + @@ -840,7 +825,7 @@
    Partially complying with the recommendations
    - + @@ -872,12 +855,14 @@
    Partially complying with the recommendations
    - + @@ -918,7 +887,7 @@
    Partially complying with the recommendations
    - + @@ -960,7 +917,7 @@
    Partially complying with the recommendations
    - + @@ -990,7 +979,7 @@
    Partially complying with the recommendations
    - + @@ -1020,7 +1009,7 @@
    Partially complying with the recommendations
    - + @@ -1050,7 +1039,7 @@
    Partially complying with the recommendations
    - + @@ -1080,27 +1069,27 @@
    Partially complying with the recommendations
    - + @@ -1112,7 +1101,7 @@
    Partially complying with the recommendations
    - + @@ -1160,7 +1147,7 @@
    Partially complying with the recommendations
    - + @@ -1190,7 +1177,7 @@
    Partially complying with the recommendations
    - + @@ -1220,7 +1207,7 @@
    Partially complying with the recommendations
    - + @@ -1250,7 +1253,7 @@
    Partially complying with the recommendations
    - + @@ -1280,7 +1301,7 @@
    Partially complying with the recommendations
    - + @@ -1326,7 +1331,7 @@
    Partially complying with the recommendations
    - + @@ -1356,7 +1361,7 @@
    Partially complying with the recommendations
    - + @@ -1386,7 +1393,7 @@
    Partially complying with the recommendations
    - + @@ -1422,25 +1423,29 @@
    Partially complying with the recommendations
    - + @@ -1452,7 +1457,7 @@
    Partially complying with the recommendations
    - + @@ -1482,7 +1491,7 @@
    Partially complying with the recommendations
    - + @@ -1512,7 +1521,7 @@
    Partially complying with the recommendations
    - + @@ -1546,7 +1555,7 @@
    Partially complying with the recommendations
    - + @@ -1576,7 +1587,7 @@
    Partially complying with the recommendations
    - + @@ -1638,10 +1617,12 @@
    Partially complying with the recommendations
    - + @@ -1668,27 +1659,27 @@
    Partially complying with the recommendations
    - + @@ -1700,7 +1691,7 @@
    Partially complying with the recommendations
    - + @@ -1732,7 +1749,7 @@
    Partially complying with the recommendations
    - + @@ -1794,7 +1779,7 @@
    Partially complying with the recommendations
    - + @@ -1824,7 +1809,7 @@
    Partially complying with the recommendations
    - + @@ -1854,7 +1855,7 @@
    Partially complying with the recommendations
    - + @@ -1886,7 +1885,7 @@
    Partially complying with the recommendations
    - + @@ -1922,7 +1915,7 @@
    Partially complying with the recommendations
    - + @@ -1952,7 +1945,7 @@
    Partially complying with the recommendations
    - + @@ -1998,7 +1977,7 @@
    Partially complying with the recommendations
    - + @@ -2082,10 +2019,12 @@
    Partially complying with the recommendations
    - + @@ -2112,7 +2051,7 @@
    Partially complying with the recommendations
    - + @@ -2142,7 +2081,7 @@
    Partially complying with the recommendations
    - + @@ -2172,7 +2111,7 @@
    Partially complying with the recommendations
    - + @@ -2202,7 +2141,7 @@
    Partially complying with the recommendations
    - + @@ -2232,7 +2187,7 @@
    Partially complying with the recommendations
    - + @@ -2262,7 +2219,7 @@
    Partially complying with the recommendations
    - + @@ -2294,7 +2283,7 @@
    Partially complying with the recommendations
    - + @@ -2336,7 +2345,7 @@
    Partially complying with the recommendations
    - + @@ -2366,7 +2375,7 @@
    Partially complying with the recommendations
    - + @@ -2396,27 +2405,25 @@
    Partially complying with the recommendations
    - + @@ -2428,7 +2435,7 @@
    Partially complying with the recommendations
    - + @@ -2468,14 +2465,12 @@
    Partially complying with the recommendations
    - + @@ -2502,7 +2499,7 @@
    Partially complying with the recommendations
    - + @@ -2536,7 +2533,7 @@
    Partially complying with the recommendations
    - + @@ -2566,7 +2565,7 @@
    Partially complying with the recommendations
    - + @@ -2608,7 +2615,7 @@
    Partially complying with the recommendations
    - + @@ -2642,14 +2645,12 @@
    Partially complying with the recommendations
    - + @@ -2674,7 +2675,7 @@
    Partially complying with the recommendations
    - + @@ -2704,7 +2705,7 @@
    Partially complying with the recommendations
    - + @@ -2734,7 +2747,7 @@
    Partially complying with the recommendations
    - + @@ -2792,7 +2783,7 @@
    Partially complying with the recommendations
    - + @@ -2826,7 +2813,7 @@
    Partially complying with the recommendations
    - + @@ -2866,7 +2843,7 @@
    Partially complying with the recommendations
    - + @@ -2896,7 +2883,7 @@
    Partially complying with the recommendations
    - + @@ -2926,7 +2913,7 @@
    Partially complying with the recommendations
    - + @@ -2956,7 +2943,7 @@
    Partially complying with the recommendations
    - + @@ -2986,19 +2973,19 @@
    Partially complying with the recommendations
    - + @@ -3026,7 +3057,7 @@
    Partially complying with the recommendations
    - + @@ -3056,7 +3087,7 @@
    Partially complying with the recommendations
    - + @@ -3090,7 +3117,7 @@
    Partially complying with the recommendations
    - + @@ -3124,27 +3147,27 @@
    Partially complying with the recommendations
    - + @@ -3156,10 +3179,12 @@
    Partially complying with the recommendations
    - + @@ -3186,7 +3211,7 @@
    Partially complying with the recommendations
    - + @@ -3216,7 +3241,7 @@
    Partially complying with the recommendations
    - + @@ -3246,7 +3271,7 @@
    Partially complying with the recommendations
    - + @@ -3276,7 +3301,7 @@
    Partially complying with the recommendations
    - + @@ -3306,7 +3335,7 @@
    Partially complying with the recommendations
    - + - + - + @@ -3388,7 +3397,7 @@
    Partially complying with the recommendations
    - + @@ -3420,27 +3437,25 @@
    Partially complying with the recommendations
    - + @@ -3452,7 +3467,7 @@
    Partially complying with the recommendations
    - + @@ -3496,7 +3497,7 @@
    Partially complying with the recommendations
    - + @@ -3526,7 +3527,7 @@
    Partially complying with the recommendations
    - + @@ -3590,7 +3567,7 @@
    Partially complying with the recommendations
    - + @@ -3620,79 +3617,27 @@
    Partially complying with the recommendations
    - + @@ -3704,7 +3649,7 @@
    Partially complying with the recommendations
    - + @@ -3734,7 +3679,7 @@
    Partially complying with the recommendations
    - + @@ -3768,7 +3713,7 @@
    Partially complying with the recommendations
    - + @@ -3798,7 +3753,7 @@
    Partially complying with the recommendations
    - + @@ -3830,7 +3783,7 @@
    Partially complying with the recommendations
    - + @@ -3860,7 +3813,7 @@
    Partially complying with the recommendations
    - + @@ -3890,12 +3843,10 @@
    Partially complying with the recommendations
    - + @@ -3932,7 +3883,7 @@
    Partially complying with the recommendations
    - + @@ -3978,35 +3925,25 @@
    Partially complying with the recommendations
    - + @@ -4018,7 +3955,7 @@
    Partially complying with the recommendations
    - + @@ -4048,7 +4003,7 @@
    Partially complying with the recommendations
    - + @@ -4106,7 +4043,7 @@
    Partially complying with the recommendations
    - + @@ -4136,7 +4073,7 @@
    Partially complying with the recommendations
    - + @@ -4168,7 +4103,7 @@
    Partially complying with the recommendations
    - + @@ -4198,7 +4187,7 @@
    Partially complying with the recommendations
    - + @@ -4228,7 +4245,7 @@
    Partially complying with the recommendations
    - + @@ -4260,25 +4275,27 @@
    Partially complying with the recommendations
    - + @@ -4290,7 +4307,7 @@
    Partially complying with the recommendations
    - + @@ -4320,7 +4337,7 @@
    Partially complying with the recommendations
    - + @@ -4350,7 +4369,7 @@
    Partially complying with the recommendations
    - + @@ -4380,7 +4399,7 @@
    Partially complying with the recommendations
    - + @@ -4430,7 +4429,7 @@
    Partially complying with the recommendations
    - + @@ -4486,7 +4461,7 @@
    Partially complying with the recommendations
    - + - + @@ -4562,7 +4521,7 @@
    Partially complying with the recommendations
    - + @@ -4592,27 +4551,25 @@
    Partially complying with the recommendations
    - + @@ -4624,7 +4581,7 @@
    Partially complying with the recommendations
    - + @@ -4656,7 +4621,7 @@
    Partially complying with the recommendations
    - + @@ -4688,7 +4651,7 @@
    Partially complying with the recommendations
    - + @@ -4720,12 +4681,14 @@
    Partially complying with the recommendations
    - + @@ -4750,7 +4737,7 @@
    Partially complying with the recommendations
    - + @@ -4790,7 +4767,7 @@
    Partially complying with the recommendations
    - + @@ -4820,12 +4801,10 @@
    Partially complying with the recommendations
    - + @@ -4852,14 +4833,12 @@
    Partially complying with the recommendations
    - + @@ -4884,7 +4863,7 @@
    Partially complying with the recommendations
    - + @@ -4920,7 +4893,7 @@
    Partially complying with the recommendations
    - + @@ -4955,7 +4934,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    akka-cluster-operator-certified @@ -204,7 +183,7 @@
    Partially complying with the recommendations
    kubeturbo-certifiedredhat-marketplace-operator
      @@ -217,30 +196,28 @@
      Partially complying with the recommendations
    • stable
    • +
    • beta
    • +
      -
    • 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)
    • +
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubeturbo-operator.v8.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubeturbo-operator.v8.0.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubeturbo-operator.v8.1.2-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubeturbo-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubeturbo-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubeturbo-operator.v8.2.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kubeturbo-operator.v8.3.1 - (label=v4.5,v4.6,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v2.2.3 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    appsody-operator-certifiedopenunison-ocp-certified
      @@ -263,14 +240,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubeplusanaconda-team-edition
      @@ -293,14 +270,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operator-with-crdsaws-event-sources-operator-certified
      @@ -330,7 +307,13 @@
      Partially complying with the recommendations
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-enterprise-operatorbigid-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -360,9 +345,7 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • bigid-operator.v1.0.3 - (label=v4.3,v4.4,v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    f5-bigip-ctlr-operatorhazelcast-jet-enterprise-operator
      @@ -385,14 +368,16 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    densify-operatork8s-triliovault
      @@ -415,20 +400,28 @@
      Partially complying with the recommendations
      -
    • v1.0
    • +
    • cluster
    • -
    • alpha
    • +
    • namespaced
    • + +
    • stable
      -
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],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)
    • +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    node-red-operator-certifiedf5-bigip-ctlr-operator
      @@ -451,18 +444,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-ts-operatorcloud-native-postgresql
      @@ -485,14 +474,20 @@
      Partially complying with the recommendations
      +
    • beta
    • +
    • alpha
    • +
    • stable
    • +
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cloud-native-postgresql.v1.7.1 - (label=v4.5-v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    alcide-kaudit-operatorperceptilabs-operator-package
      @@ -515,14 +510,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    mf-cics-tg-operatort8c-certified
      @@ -545,14 +544,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    h2o-operatornode-red-operator-certified
      @@ -575,14 +582,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    uma-operatorh2o-operator
      @@ -605,24 +616,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    gitlab-runner-operatorsynopsys-certified
      @@ -652,11 +653,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certifiedtimemachine-operator
      @@ -686,7 +683,7 @@
      Partially complying with the recommendations
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    t8c-certifiedappdynamics-operator
      @@ -709,22 +706,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • t8c-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cass-operatorbehavior-analytics-services-operator-certified
      @@ -747,24 +738,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • behavior-analytics-services-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cass-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • behavior-analytics-services-operator.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-ezmeral-csi-operatorcortex-fabric-operator
      @@ -787,6 +770,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -794,11 +779,9 @@
    Partially complying with the recommendations
      -
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,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)
    xcrypt-operatorcan-operator
    • CRD
    • -
    +
  • ClusterRole
  • + +
      @@ -828,7 +813,7 @@
      Partially complying with the recommendations
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-hub-operatorxcrypt-operator
      @@ -851,16 +836,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nxiq-operator-certifiedsnyk-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
    @@ -890,23 +875,7 @@
    Partially complying with the recommendations
      -
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-enterprise-certifiedibm-spectrum-symphony-operator
      @@ -929,26 +898,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ivory-server-appopenshiftartifactoryha-operator
      @@ -978,7 +935,39 @@
      Partially complying with the recommendations
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    storageos2sysdig-certified
      @@ -1008,7 +997,7 @@
      Partially complying with the recommendations
      -
    • storageosoperator.v2.3.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    federatorai-certifiedarmory-operator
      @@ -1031,14 +1020,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • v1alpha2
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    robin-operatorcnvrg-operator-marketplace
      @@ -1061,14 +1050,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-operator.v5.3.2-59 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-certifiedvprotect-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • alpha
      -
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    nxrm-operator-certifiedaqua-operator-certified
      @@ -1123,32 +1112,30 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • 5.3
    • + +
    • 6.0
    • + +
    • alpha
    • + +
    • latest
    • + +
    • 6.2
      -
    • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v5.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v5.3.0 - (label=v4.5,v4.6,max=4.8,channels=[5.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.2.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    hedvig-operatorinfrastructure-asset-orchestrator-certified
      @@ -1178,7 +1165,7 @@
      Partially complying with the recommendations
      -
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    fp-predict-plus-operator-certifiedrapidbiz-operator-certified
      @@ -1201,14 +1188,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operator-certifiednxiq-operator-certified
      @@ -1238,7 +1225,23 @@
      Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certifiednxrm-operator-certified
      @@ -1268,7 +1271,25 @@
      Partially complying with the recommendations
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    portworx-certifiedinfinibox-operator-certified
      @@ -1291,8 +1312,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -1300,21 +1319,7 @@
    Partially complying with the recommendations
      -
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nsx-container-plugin-operatorkong-offline-operator
      @@ -1344,7 +1349,7 @@
      Partially complying with the recommendations
      -
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    confluent-for-kubernetesyugabyte-operator
      @@ -1367,14 +1372,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • beta
      -
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    aws-event-sources-operator-certifieddynatrace-operator
      @@ -1404,13 +1411,7 @@
      Partially complying with the recommendations
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dynatrace-operator.v0.2.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-ingress-controller-operatordell-csi-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • +
    • stable
      -
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    anaconda-team-editionfep-ansible-operator
      @@ -1463,14 +1468,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    anchore-enginehere-service-operator-certified
      @@ -1500,7 +1509,7 @@
      Partially complying with the recommendations
      -
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appranix-cpsibm-spectrum-scale-csi
      @@ -1523,8 +1532,6 @@
      Partially complying with the recommendations
      -
    • deprecated
    • -
    • stable
    @@ -1532,9 +1539,11 @@
    Partially complying with the recommendations
      -
    • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],head:YES,defaultChannel:NO, 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)
    cnvrg-operator-marketplacexspc-operator
      @@ -1557,14 +1566,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xspc-operator.1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftxray-operatordb2-zos-db-operator
      @@ -1594,39 +1605,7 @@
      Partially complying with the recommendations
      -
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    blackduck-connector-operatornastel-xray-operator
      +
    • ClusterRole
    • +
    • CRD
    @@ -1656,7 +1637,17 @@
    Partially complying with the recommendations
      -
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    as400rpc-operatorcoralogix-operator-certified
      -
    • ClusterRole
    • -
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • +
    • stable
      -
    • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operatorcouchdb-operator-certified
      @@ -1711,16 +1702,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • v1.1
    • + +
    • v1.3
    • + +
    • stable
    • + +
    • v1.4
    • + +
    • v1.0
    • + +
    • v1.2
      -
    • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • couchdb-operator.v1.0.14 - (label=v4.6,v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, 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=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftartifactoryha-operatormf-cics-ts-operator
      @@ -1750,39 +1767,7 @@
      Partially complying with the recommendations
      -
    • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    starburst-enterprise-helm-operatortf-operator
      @@ -1805,14 +1790,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    here-service-operator-certifiedportworx-certified
      @@ -1835,6 +1820,8 @@
      Partially complying with the recommendations
      +
    • stable
    • +
    • alpha
    @@ -1842,7 +1829,21 @@
    Partially complying with the recommendations
      -
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    zabbix-operator-certifiedkpow-io-certified
      @@ -1865,16 +1866,14 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cloud-native-postgresqlmf-cics-tg-operator
      @@ -1897,20 +1896,14 @@
      Partially complying with the recommendations
      -
    • beta
    • -
    • alpha
    • -
    • stable
    • -
      -
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cloud-native-postgresql.v1.7.1 - (label=v4.5-v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    runtime-component-operator-certifiedatomicorp-helm-operator-certified
      @@ -1933,14 +1926,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operator-certifiedgrowth-stack-operator-certified
      @@ -1963,8 +1956,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -1972,21 +1963,9 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • growth-stack-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,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.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    tigera-operatorkubemq-operator-marketplace
      @@ -2009,68 +1988,26 @@
      Partially complying with the recommendations
      -
    • release-v1.20
    • - -
    • release-v1.17
    • - -
    • release-v1.13
    • - -
    • stable
    • - -
    • release-v1.15
    • +
    • alpha
      -
    • tigera-operator.v1.13.0 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, 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)
    • +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, 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)
    • +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, 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)
    • +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, 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)
    • +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, 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)
    • +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, 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.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
    • +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kube-arangodbako-operator
      +
    • ClusterRole
    • +
    • CRD
    @@ -2093,14 +2032,14 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    zoperatorjoget-openshift-operator
      @@ -2130,7 +2069,7 @@
      Partially complying with the recommendations
      -
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sysdig-certifiedsplunk-certified
      @@ -2153,14 +2092,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    wavefront-operatorrobin-operator
      @@ -2183,14 +2122,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-operator.v5.3.2-59 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedseldon-operator-certified
      @@ -2213,14 +2152,30 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
    • + +
    • alpha
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    dataset-operatorstonebranch-universalagent-operator-certified
      @@ -2250,7 +2205,9 @@
      Partially complying with the recommendations
      -
    • dataset-operator.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    vprotect-operatordata-explorer-operator-certified
      @@ -2280,9 +2237,41 @@
      Partially complying with the recommendations
      -
    • vprotect-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.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:YES,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:YES,defaultChannel:YES, deprecated:NO)
    kubemq-operator-marketplaceopenshiftxray-operator
      @@ -2312,19 +2301,39 @@
      Partially complying with the recommendations
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-symphony-operatorcitrix-adc-istio-ingress-gateway-operator
      @@ -2347,14 +2356,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    tf-operatormodel-builder-for-vision-certified
      @@ -2384,7 +2393,7 @@
      Partially complying with the recommendations
      -
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    coralogix-operator-certifiednvmesh-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • beta
      -
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    joget-dx-operatoreddi-operator-certified
      @@ -2446,17 +2453,7 @@
      Partially complying with the recommendations
      -
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    dell-csi-operator-certifiedgitlab-runner-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2488,9 +2483,11 @@
    Partially complying with the recommendations
      -
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gitlab-runner-operator.v1.0.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)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatororca
      @@ -2513,18 +2510,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • orca-operator.v1.0.193 - (label=v4.6,v4.5,max=4.8,channels=[beta],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)
    • +
    • orca-operator.v1.0.195 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • fujitsu-enterprise-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    aci-containers-operatorcortex-healthcare-hub-operator
      @@ -2554,7 +2551,9 @@
      Partially complying with the recommendations
      -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    oneagent-certifiedinstana-agent
      @@ -2577,26 +2576,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • dynatrace-monitoring.v0.10.1 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • instana-agent-operator.v0.2.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,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)
    • +
    • instana-agent-operator.v0.2.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cert-manager-operatoranchore-engine
      @@ -2621,16 +2628,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    can-operatorcic-operator-with-crds
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2662,7 +2663,7 @@
    Partially complying with the recommendations
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    infinibox-operator-certifiedtraefikee-redhat-certified
      @@ -2685,14 +2686,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    model-builder-for-vision-certifiedoneagent-certified
      @@ -2715,14 +2716,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    couchdb-operator-certifieddensify-operator
      @@ -2745,42 +2758,20 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • v1.1
    • - -
    • v1.3
    • - -
    • stable
    • - -
    • v1.4
    • -
    • v1.0
    • -
    • v1.2
    • +
    • alpha
      -
    • 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=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:YES, deprecated:NO)
    perceptilabs-operator-packagensx-container-plugin-operator
      @@ -2803,18 +2794,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-certifai-operatoropen-liberty-certified
      @@ -2837,8 +2824,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • beta
    @@ -2846,15 +2831,7 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    db2-zos-db-operatorcass-operator
      @@ -2877,14 +2854,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-with-ingress-controller-operatorfalco-certified
      @@ -2907,14 +2894,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sematextinsightedge-enterprise-operator2
      @@ -2937,14 +2924,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-redhat-certifiedzoperator
      @@ -2967,14 +2954,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    transform-adv-operatormongodb-enterprise
    • CRD
    • +
    • UNKNOWN
    • +
      -
    • v2.3
    • -
    • stable
    @@ -3006,15 +2993,59 @@
    Partially complying with the recommendations
      -
    • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable v2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-enterprise.v0.3.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,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)
    • +
    • mongodb-enterprise.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • mongodb-enterprise.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • mongodb-enterprise.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • mongodb-enterprise.v1.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mongodb-enterprise.v1.2.1 - (label=v4.5,v4.6,max=not set,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=not set,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=not set,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.4 - (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)
    synopsys-certifiedkubeplus
      @@ -3037,14 +3068,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-scale-csirocketchat-operator-certified
      @@ -3067,18 +3098,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • 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)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    orcahedvig-operator
      @@ -3101,18 +3128,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • 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)
    • +
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-healthcare-hub-operatoribm-tas
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    infrastructure-asset-orchestrator-certifiedas400rpc-operator
      +
    • ClusterRole
    • +
    • CRD
    @@ -3167,14 +3192,14 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kong-offline-operatoropenshiftpipeline-operator
      @@ -3204,7 +3229,7 @@
      Partially complying with the recommendations
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kpow-io-certifiedcitrix-cpx-with-ingress-controller-operator
      @@ -3234,7 +3259,7 @@
      Partially complying with the recommendations
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rapidbiz-operator-certifiedfp-predict-plus-operator-certified
      @@ -3257,14 +3282,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    falco-certifiedhpe-ezmeral-csi-operator
      @@ -3294,7 +3319,11 @@
      Partially complying with the recommendations
      -
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    neuvector-certified-operatorkube-arangodb
      @@ -3317,46 +3346,26 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • 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)
    • +
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      +
    +
    +
    portshift-controller-operatorhspc-operator
      @@ -3367,16 +3376,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • portshift-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • hspc-operator.v1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hspc-operatoruma-operator
      @@ -3399,16 +3408,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hspc-operator.v1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    bigid-operatoraci-containers-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • bigid-operator.v1.0.3 - (label=v4.3,v4.4,v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    k8s-triliovaultstarburst-enterprise-helm-operator
      @@ -3463,28 +3478,14 @@
      Partially complying with the recommendations
      -
    • cluster
    • - -
    • namespaced
    • - -
    • stable
    • +
    • alpha
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    armory-operatorwavefront-operator
      @@ -3507,14 +3508,14 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • alpha
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certifiedmemql-certified
      @@ -3544,41 +3545,17 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • memsql-operator.v0.0.2 - (label=v4.6,v4.5,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)
    • +
    • memsql-operator.v0.0.3 - (label=v4.6,v4.5,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)
    • +
    • memsql-operator.v1.0.0 - (label=v4.6,v4.5,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)
    • +
    • memsql-operator.v1.1.0 - (label=v4.6,v4.5,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)
    • +
    • memsql-operator.v1.1.1 - (label=v4.6,v4.5,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:YES,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)
    citrix-adc-istio-ingress-gateway-operatorneuvector-certified-operator
      @@ -3601,14 +3578,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprisecpx-cic-operator
    • CRD
    • -
    • UNKNOWN
    • -
      -
    • stable
    • +
    • alpha
      -
    • 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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • mongodb-enterprise.v1.2.1 - (label=v4.5,v4.6,max=not set,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=not set,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=not set,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.4 - (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)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    joget-openshift-operatorblackduck-connector-operator
      @@ -3722,7 +3667,7 @@
      Partially complying with the recommendations
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-fabric-operatorcert-manager-operator
      @@ -3754,9 +3699,9 @@
      Partially complying with the recommendations
      -
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,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.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    splunk-certifiedcortex-certifai-operator
      @@ -3779,14 +3724,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • beta
      -
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    stonebranch-universalagent-operator-certifiedsematext
      @@ -3809,16 +3764,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nvmesh-operatorcic-operator
      @@ -3841,14 +3794,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    presto-operatorcyberarmor-operator-certified
      @@ -3878,7 +3831,7 @@
      Partially complying with the recommendations
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-xray-operatorjoget-dx-operator
      -
    • ClusterRole
    • -
    • CRD
    @@ -3910,17 +3861,17 @@
    Partially complying with the recommendations
      -
    • nastel-xray-operator.v1.323.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,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)
    • +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,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)
    • +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,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)
    • +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,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)
    • +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    redhat-marketplace-operatorhazelcast-enterprise-certified
      @@ -3943,30 +3894,26 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • beta
    • +
    • alpha
      -
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, 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)
    • -
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v2.2.3 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    memql-certifiedionir-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • ionir-operator.v1.0.5 - (label=v4.6-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operatorkubeturbo-certified
      @@ -4029,14 +3966,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    redis-enterprise-operator-certk10-kasten-operator
      @@ -4059,42 +4014,24 @@
      Partially complying with the recommendations
      -
    • 6.0.20
    • - -
    • production
    • - -
    • 6.0.6
    • - -
    • 6.0.8
    • - -
    • 6.0.12
    • - -
    • preview
    • +
    • alpha
    • -
    • 5.4.14
    • +
    • stable
      -
    • 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=[5.4.14 6.0.20 6.0.6 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.12-5 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.6-24 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.6-6 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.8-1 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.8 production 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    timemachine-operatorappsody-operator-certified
      @@ -4117,14 +4054,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    yugabyte-operatorivory-server-app
      @@ -4149,14 +4086,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • beta
    • -
      -
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eddi-operator-certifiedtigera-operator
      @@ -4179,14 +4114,68 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • release-v1.20
    • + +
    • release-v1.17
    • + +
    • release-v1.13
    • + +
    • stable
    • + +
    • release-v1.15
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
    insightedge-enterprise-operator2redis-enterprise-operator-cert
      @@ -4209,14 +4198,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 6.0.20
    • + +
    • production
    • + +
    • 6.0.6
    • + +
    • 6.0.8
    • + +
    • 6.0.12
    • + +
    • preview
    • + +
    • 5.4.14
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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=[5.4.14 6.0.20 6.0.6 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.12-5 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.6-24 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.6-6 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.8-1 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.8 production 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=[6.0.20 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
    growth-stack-operator-certifiedbacula-operator2
      @@ -4246,9 +4263,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ionir-operatorzabbix-operator-certified
      -
    • ClusterRole
    • +
    • CRD
      -
    • stable
    • +
    • lts
      -
    • ionir-operator.v1.0.5 - (label=v4.6-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    openshiftpipeline-operatorcitrix-ingress-controller-operator
      @@ -4308,7 +4325,7 @@
      Partially complying with the recommendations
      -
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    dynatrace-operatorcortex-hub-operator
      @@ -4331,14 +4348,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • dynatrace-operator.v0.2.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    citrix-cpx-istio-sidecar-injector-operatoralcide-kaudit-operator
      @@ -4368,7 +4387,7 @@
      Partially complying with the recommendations
      -
    • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    instana-agentfederatorai-certified
      @@ -4391,34 +4410,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-navigator-operator-certifiedjtrac-app-operator
      @@ -4450,31 +4449,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certified
      @@ -4497,42 +4472,26 @@
      Partially complying with the recommendations
      -
    • 5.3
    • - -
    • 6.0
    • - -
    • alpha
    • - -
    • latest
    • - -
    • 6.2
    • -
      -
    • 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.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    atomicorp-helm-operator-certifiedpercona-xtradb-cluster-operator-certified
      @@ -4543,14 +4502,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    open-liberty-certifieddataset-operator
      @@ -4573,14 +4532,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dataset-operator.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-taspercona-server-mongodb-operator-certified
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    behavior-analytics-services-operator-certifiedtransform-adv-operator
      @@ -4635,16 +4592,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • v2.3
    • + +
    • stable
      -
    • behavior-analytics-services-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable v2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • behavior-analytics-services-operator.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],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)
    cpx-cic-operatorcitrix-cpx-istio-sidecar-injector-operator
      @@ -4674,9 +4639,7 @@
      Partially complying with the recommendations
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    xspc-operatorstorageos2
      @@ -4706,9 +4669,7 @@
      Partially complying with the recommendations
      -
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xspc-operator.1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • storageosoperator.v2.3.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    bacula-operator2nastel-navigator-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
    @@ -4738,7 +4701,31 @@
    Partially complying with the recommendations
      -
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operatorpresto-operator
      @@ -4763,22 +4750,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certifiedappranix-cps
      @@ -4801,6 +4778,8 @@
      Partially complying with the recommendations
      +
    • deprecated
    • +
    • stable
    @@ -4808,7 +4787,9 @@
    Partially complying with the recommendations
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    ako-operatorportshift-controller-operator
      -
    • ClusterRole
    • -
    • CRD
    @@ -4840,7 +4819,9 @@
    Partially complying with the recommendations
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    jtrac-app-operatoribm-mq-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -4872,7 +4851,7 @@
    Partially complying with the recommendations
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-mq-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certifiedconfluent-for-kubernetes
      @@ -4895,20 +4874,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • beta
    • +
    • stable
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.5.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-mq-operatordatadog-operator-certified
      @@ -4933,12 +4906,18 @@
      Partially complying with the recommendations
    • alpha
    • +
    • beta
    • +
      -
    • ibm-mq-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.5.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -4970,7 +4949,7 @@
    Fully complying with the recommendations
    - + @@ -4991,19 +4970,17 @@
    Fully complying with the recommendations
    - + + + + + + + + + + + + + + + + + - + - + - + @@ -5115,14 +5162,14 @@
    Fully complying with the recommendations
    - + @@ -5143,17 +5190,19 @@
    Fully complying with the recommendations
    - + - + - + - + - + @@ -5291,14 +5346,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + @@ -5570,7 +5591,7 @@
    Fully complying with the recommendations
    - + @@ -5591,14 +5612,14 @@
    Fully complying with the recommendations
    - + - + - + @@ -5736,12 +5761,10 @@
    Fully complying with the recommendations
    - + - - - - - - - - - + - - - - - - - - - + - + @@ -5909,7 +5888,7 @@
    Fully complying with the recommendations
    diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html index 161372f2..fd8da04b 100644 --- a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html @@ -102,32 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    anzo-operatorovms-operator
      @@ -4979,7 +4958,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    elasticsearch-eck-operator-certifiedcisco-hxcsi-operator
      -
    • CRD
    • -
    @@ -5016,29 +4993,83 @@
    Fully complying with the recommendations
      -
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cisco-hxcsi-operator.v1.2.1 - (label==v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    pmem-csi-operator-os +
      + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      -
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    n3000 +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • n3000.v1.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • n3000.v1.1.0 - (label==v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    minio-operatoriomesh-operator
      @@ -5059,17 +5090,19 @@
      Fully complying with the recommendations
      -
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cisco-hxcsi-operatorcouchbase-enterprise-certified
      +
    • CRD
    • +
    @@ -5082,19 +5115,31 @@
    Fully complying with the recommendations
      +
    • 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)
    • +
      -
    • cisco-hxcsi-operator.v1.2.1 - (label==v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    aikit-operatorcockroachdb-certified
      @@ -5103,7 +5148,9 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • stable
      -
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    ovms-operatormongodb-atlas-kubernetes
      @@ -5131,7 +5178,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operatornginx-ingress-operator
      +
    • CRD
    • +
    @@ -5166,19 +5215,29 @@
    Fully complying with the recommendations
      +
    • 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)
    • +
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nginx-ingress-operator.v0.3.0 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operatorinstallkit-customer
      @@ -5187,6 +5246,10 @@
      Fully complying with the recommendations
      +
    • preview
    • + +
    • fast
    • +
    • stable
    @@ -5199,14 +5262,14 @@
    Fully complying with the recommendations
      -
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • installkit-customer.v2.0.15 - (label=v4.6,v4.7,max=not set,channels=[preview fast stable],head:YES,defaultChannel:YES, deprecated:NO)
    pmem-csi-operator-osanzounstructured-operator
      @@ -5215,8 +5278,6 @@
      Fully complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -5229,48 +5290,42 @@
    Fully complying with the recommendations
      -
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    n3000cloudbees-ci
      -
    • CRD
    • - -
    • ClusterRole
    • -
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operatoraikit-operator
      @@ -5279,7 +5334,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    entando-k8s-operatorcilium
      @@ -5307,10 +5362,6 @@
      Fully complying with the recommendations
      -
    • beta
    • - -
    • alpha
    • -
    • stable
    @@ -5323,21 +5374,19 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    linstor-operatoribm-block-csi-operator
      +
    • CRD
    • +
    @@ -5345,31 +5394,37 @@
    Fully complying with the recommendations
  • stable
  • -
  • alpha
  • +
  • maintenance-1.5
    • +
    • 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:NO,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:NO, deprecated:NO)
    • +
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    couchbase-enterprise-certifiedanzo-operator
      -
    • CRD
    • -
    @@ -5382,36 +5437,22 @@
    Fully complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nginx-ingress-operatorccm-node-agent-operator
      -
    • CRD
    • -
    @@ -5424,29 +5465,19 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certifiednutanixcsioperator
      @@ -5457,8 +5488,6 @@
      Fully complying with the recommendations
    • beta
    • -
    • stable
    • -
    @@ -5469,14 +5498,14 @@
    Fully complying with the recommendations
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    sanstoragecsi-operator-bundlehpe-csi-operator
      @@ -5497,26 +5526,22 @@
      Fully complying with the recommendations
      -
    • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    crunchy-postgres-operatorsanstoragecsi-operator-bundle
      -
    • CRD
    • -
      -
    • v5
    • -
    • stable
    @@ -5524,16 +5549,12 @@
    Fully complying with the recommendations
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-atlas-kubernetesantrea-operator-for-kubernetes
      @@ -5579,7 +5600,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • antrea-operator-for-kubernetes.v0.0.1 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ciliumanzograph-operator
      @@ -5619,14 +5640,14 @@
      Fully complying with the recommendations
      -
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    installkit-customerminio-operator
      @@ -5635,10 +5656,6 @@
      Fully complying with the recommendations
      -
    • preview
    • - -
    • fast
    • -
    • stable
    @@ -5651,35 +5668,43 @@
    Fully complying with the recommendations
      -
    • installkit-customer.v2.0.15 - (label=v4.6,v4.7,max=not set,channels=[preview fast stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nutanixcsioperatorcrunchy-postgres-operator
      +
    • CRD
    • +
      -
    • beta
    • +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-block-csi-operatorlinstor-operator
      -
    • CRD
    • -
    @@ -5749,42 +5772,6 @@
    Fully complying with the recommendations
  • stable
  • -
  • maintenance-1.5
  • - - -
    -
      - -
    • 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:NO,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:NO, deprecated:NO)
    • - -
    -
    -
      - -
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    antrea-operator-for-kubernetes -
      - -
    -
    -
      -
    • alpha
    @@ -5797,17 +5784,19 @@
    Fully complying with the recommendations
      -
    • antrea-operator-for-kubernetes.v0.0.1 - (label=v4.6,v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anzograph-operatorelasticsearch-eck-operator-certified
      +
    • CRD
    • +
    @@ -5820,47 +5809,29 @@
    Fully complying with the recommendations
      -
    -
    -
      +
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    iomesh-operator -
      - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      +
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operatorentando-k8s-operator
      @@ -5869,6 +5840,10 @@
      Fully complying with the recommendations
      +
    • beta
    • + +
    • alpha
    • +
    • stable
    @@ -5881,14 +5856,18 @@
    Fully complying with the recommendations
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    cloudbees-civfunction-server-operator
      @@ -5897,7 +5876,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -142,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -172,7 +153,7 @@
    Partially complying with the recommendations
    - + @@ -202,7 +183,7 @@
    Partially complying with the recommendations
    - + @@ -232,25 +213,51 @@
    Partially complying with the recommendations
    - + @@ -262,14 +269,12 @@
    Partially complying with the recommendations
    - + @@ -294,7 +299,7 @@
    Partially complying with the recommendations
    - + @@ -324,7 +329,7 @@
    Partially complying with the recommendations
    - + @@ -354,7 +363,7 @@
    Partially complying with the recommendations
    - + @@ -386,7 +413,7 @@
    Partially complying with the recommendations
    - + @@ -418,7 +443,7 @@
    Partially complying with the recommendations
    - + @@ -468,7 +473,7 @@
    Partially complying with the recommendations
    - + @@ -498,7 +509,7 @@
    Partially complying with the recommendations
    - + @@ -528,12 +539,14 @@
    Partially complying with the recommendations
    - + @@ -558,7 +581,7 @@
    Partially complying with the recommendations
    - + @@ -622,7 +613,7 @@
    Partially complying with the recommendations
    - + @@ -654,12 +647,10 @@
    Partially complying with the recommendations
    - + @@ -686,7 +677,7 @@
    Partially complying with the recommendations
    - + @@ -716,7 +717,7 @@
    Partially complying with the recommendations
    - + @@ -746,7 +747,7 @@
    Partially complying with the recommendations
    - + @@ -780,7 +779,7 @@
    Partially complying with the recommendations
    - + @@ -810,27 +809,27 @@
    Partially complying with the recommendations
    - + @@ -842,7 +841,7 @@
    Partially complying with the recommendations
    - + @@ -872,7 +871,7 @@
    Partially complying with the recommendations
    - + @@ -902,7 +917,7 @@
    Partially complying with the recommendations
    - + @@ -932,7 +947,7 @@
    Partially complying with the recommendations
    - + @@ -962,7 +977,7 @@
    Partially complying with the recommendations
    - + @@ -1020,7 +1019,7 @@
    Partially complying with the recommendations
    - + @@ -1052,7 +1067,7 @@
    Partially complying with the recommendations
    - + @@ -1082,7 +1129,7 @@
    Partially complying with the recommendations
    - + @@ -1112,7 +1159,7 @@
    Partially complying with the recommendations
    - + @@ -1142,7 +1191,7 @@
    Partially complying with the recommendations
    - + @@ -1176,7 +1241,7 @@
    Partially complying with the recommendations
    - + @@ -1224,7 +1273,7 @@
    Partially complying with the recommendations
    - + @@ -1254,7 +1307,7 @@
    Partially complying with the recommendations
    - + @@ -1284,7 +1341,7 @@
    Partially complying with the recommendations
    - + @@ -1314,7 +1371,7 @@
    Partially complying with the recommendations
    - + @@ -1354,7 +1401,7 @@
    Partially complying with the recommendations
    - + - + - + @@ -1434,7 +1461,7 @@
    Partially complying with the recommendations
    - + @@ -1468,7 +1509,7 @@
    Partially complying with the recommendations
    - + @@ -1500,7 +1549,7 @@
    Partially complying with the recommendations
    - + @@ -1530,7 +1595,7 @@
    Partially complying with the recommendations
    - + @@ -1560,7 +1625,7 @@
    Partially complying with the recommendations
    - + @@ -1590,7 +1667,7 @@
    Partially complying with the recommendations
    - + @@ -1622,35 +1697,27 @@
    Partially complying with the recommendations
    - + @@ -1662,7 +1729,7 @@
    Partially complying with the recommendations
    - + @@ -1702,7 +1759,7 @@
    Partially complying with the recommendations
    - + @@ -1746,7 +1789,7 @@
    Partially complying with the recommendations
    - + @@ -1780,29 +1819,25 @@
    Partially complying with the recommendations
    - + @@ -1814,7 +1849,7 @@
    Partially complying with the recommendations
    - + @@ -1860,7 +1879,7 @@
    Partially complying with the recommendations
    - + @@ -1904,7 +1909,7 @@
    Partially complying with the recommendations
    - + @@ -1936,7 +1939,7 @@
    Partially complying with the recommendations
    - + @@ -1968,12 +1969,14 @@
    Partially complying with the recommendations
    - + @@ -1998,7 +2001,7 @@
    Partially complying with the recommendations
    - + @@ -2028,7 +2031,7 @@
    Partially complying with the recommendations
    - + @@ -2058,27 +2067,25 @@
    Partially complying with the recommendations
    - + @@ -2090,25 +2097,27 @@
    Partially complying with the recommendations
    - + @@ -2120,7 +2129,7 @@
    Partially complying with the recommendations
    - + @@ -2166,7 +2169,7 @@
    Partially complying with the recommendations
    - + @@ -2204,7 +2199,7 @@
    Partially complying with the recommendations
    - + @@ -2244,7 +2229,7 @@
    Partially complying with the recommendations
    - + @@ -2286,7 +2259,7 @@
    Partially complying with the recommendations
    - + @@ -2316,7 +2289,7 @@
    Partially complying with the recommendations
    - + @@ -2346,7 +2319,7 @@
    Partially complying with the recommendations
    - + @@ -2380,7 +2349,7 @@
    Partially complying with the recommendations
    - + @@ -2414,7 +2379,7 @@
    Partially complying with the recommendations
    - + @@ -2444,7 +2409,7 @@
    Partially complying with the recommendations
    - + @@ -2474,7 +2439,7 @@
    Partially complying with the recommendations
    - + @@ -2504,7 +2471,7 @@
    Partially complying with the recommendations
    - + @@ -2534,7 +2505,7 @@
    Partially complying with the recommendations
    - + @@ -2564,7 +2539,7 @@
    Partially complying with the recommendations
    - + @@ -2598,7 +2597,7 @@
    Partially complying with the recommendations
    - + @@ -2630,7 +2631,7 @@
    Partially complying with the recommendations
    - + @@ -2664,7 +2661,7 @@
    Partially complying with the recommendations
    - + @@ -2694,7 +2701,7 @@
    Partially complying with the recommendations
    - + @@ -2724,7 +2737,7 @@
    Partially complying with the recommendations
    - + @@ -2774,7 +2777,7 @@
    Partially complying with the recommendations
    - + @@ -2816,7 +2821,7 @@
    Partially complying with the recommendations
    - + @@ -2846,7 +2851,7 @@
    Partially complying with the recommendations
    - + @@ -2880,7 +2881,7 @@
    Partially complying with the recommendations
    - + @@ -2910,7 +2915,7 @@
    Partially complying with the recommendations
    - + @@ -2942,7 +2961,7 @@
    Partially complying with the recommendations
    - + @@ -2992,7 +2991,7 @@
    Partially complying with the recommendations
    - + @@ -3034,29 +3023,27 @@
    Partially complying with the recommendations
    - + @@ -3068,7 +3055,7 @@
    Partially complying with the recommendations
    - + @@ -3104,7 +3085,7 @@
    Partially complying with the recommendations
    - + @@ -3134,7 +3115,7 @@
    Partially complying with the recommendations
    - + @@ -3196,7 +3145,7 @@
    Partially complying with the recommendations
    - + @@ -3226,7 +3175,7 @@
    Partially complying with the recommendations
    - + @@ -3256,7 +3207,7 @@
    Partially complying with the recommendations
    - + @@ -3316,7 +3267,7 @@
    Partially complying with the recommendations
    - + @@ -3346,7 +3297,7 @@
    Partially complying with the recommendations
    - + @@ -3376,7 +3335,7 @@
    Partially complying with the recommendations
    - + @@ -3406,14 +3365,12 @@
    Partially complying with the recommendations
    - + @@ -3438,7 +3397,7 @@
    Partially complying with the recommendations
    - + @@ -3474,7 +3427,7 @@
    Partially complying with the recommendations
    - + @@ -3504,7 +3457,7 @@
    Partially complying with the recommendations
    - + @@ -3534,7 +3507,7 @@
    Partially complying with the recommendations
    - + @@ -3564,7 +3545,7 @@
    Partially complying with the recommendations
    - + @@ -3594,7 +3575,7 @@
    Partially complying with the recommendations
    - + @@ -3624,7 +3607,7 @@
    Partially complying with the recommendations
    - + @@ -3654,27 +3637,25 @@
    Partially complying with the recommendations
    - + @@ -3686,7 +3667,7 @@
    Partially complying with the recommendations
    - + @@ -3728,7 +3699,7 @@
    Partially complying with the recommendations
    - + @@ -3758,7 +3731,7 @@
    Partially complying with the recommendations
    - + @@ -3788,7 +3761,7 @@
    Partially complying with the recommendations
    - + @@ -3818,12 +3791,14 @@
    Partially complying with the recommendations
    - + @@ -3864,7 +3825,7 @@
    Partially complying with the recommendations
    - + @@ -3894,7 +3859,7 @@
    Partially complying with the recommendations
    - + @@ -3934,33 +3889,27 @@
    Partially complying with the recommendations
    - + @@ -3972,7 +3921,7 @@
    Partially complying with the recommendations
    - + @@ -4002,7 +3951,7 @@
    Partially complying with the recommendations
    - + @@ -4032,7 +3981,7 @@
    Partially complying with the recommendations
    - + @@ -4094,12 +4011,10 @@
    Partially complying with the recommendations
    - + - + @@ -4234,7 +4081,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -4306,14 +4143,12 @@
    Partially complying with the recommendations
    - + @@ -4362,7 +4207,7 @@
    Partially complying with the recommendations
    - + @@ -4396,7 +4237,7 @@
    Partially complying with the recommendations
    - + @@ -4426,10 +4271,12 @@
    Partially complying with the recommendations
    - + @@ -4456,27 +4303,39 @@
    Partially complying with the recommendations
    - + @@ -4488,7 +4347,7 @@
    Partially complying with the recommendations
    - + @@ -4518,7 +4381,7 @@
    Partially complying with the recommendations
    - + @@ -4548,7 +4411,7 @@
    Partially complying with the recommendations
    - + @@ -4584,7 +4443,7 @@
    Partially complying with the recommendations
    - + @@ -4614,7 +4501,7 @@
    Partially complying with the recommendations
    - + @@ -4649,7 +4548,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    ibm-spectrum-symphony-operatorcic-operator
      @@ -153,14 +134,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    federatorai-certifiedh2o-operator
      @@ -183,14 +164,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    tf-operatorhedvig-operator
      @@ -220,7 +201,7 @@
      Partially complying with the recommendations
      -
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anaconda-team-editionnastel-navigator-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
      -
    • beta
    • +
    • alpha
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    ako-operatortimemachine-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -282,7 +287,7 @@
    Partially complying with the recommendations
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftpipeline-operatorpercona-server-mongodb-operator-certified
      @@ -305,14 +310,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator-certifiedappranix-cps
      @@ -335,14 +340,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
    • + +
    • deprecated
      -
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    yugabyte-operatorinstana-agent
      @@ -365,8 +374,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • beta
    @@ -374,7 +381,27 @@
    Partially complying with the recommendations
      -
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    zabbix-operator-certifiedstorageos2
      @@ -397,16 +424,14 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • storageosoperator.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    instana-agentsynopsys-certified
      @@ -429,34 +454,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    h2o-operatorcloud-native-postgresql
      @@ -481,12 +486,18 @@
      Partially complying with the recommendations
    • beta
    • +
    • alpha
    • + +
    • stable
    • +
      -
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cloud-native-postgresql.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operatoreddi-operator-certified
      @@ -516,7 +527,7 @@
      Partially complying with the recommendations
      -
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eddi-operator-certifiednastel-xray-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -546,7 +559,17 @@
    Partially complying with the recommendations
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certifiedgrowth-stack-operator-certified
      @@ -576,41 +599,9 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • growth-stack-operator.v1.0.0 - (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:YES,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)
    cortex-healthcare-hub-operatorcortex-fabric-operator
      @@ -633,6 +624,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -640,9 +633,9 @@
    Partially complying with the recommendations
      -
    • cortex-healthcare-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha 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)
    • +
    • cortex-fabric-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-tasjoget-openshift-operator
      -
    • ClusterRole
    • -
    • CRD
    @@ -674,7 +665,7 @@
    Partially complying with the recommendations
      -
    • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aci-containers-operatoruma-operator
      @@ -697,14 +688,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certifiedkubeplus
      @@ -727,14 +728,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cert-manager-operatorcortex-hub-operator
      @@ -757,8 +758,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -766,9 +765,9 @@
    Partially complying with the recommendations
      -
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,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)
    ivory-server-appkong-offline-operator
      @@ -798,7 +797,7 @@
      Partially complying with the recommendations
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    vprotect-operatorionir-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • alpha
    • +
    • stable
      -
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ionir-operator.v1.0.2 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • vprotect-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ionir-operator.v1.0.3 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    db2-zos-db-operatornvmesh-operator
      @@ -853,14 +852,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    here-service-operator-certifiednxiq-operator-certified
      @@ -883,14 +882,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operator-certifiedfp-predict-plus-operator-certified
      @@ -920,7 +935,7 @@
      Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    synopsys-certifiedappsody-operator-certified
      @@ -943,14 +958,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    couchdb-operator-certifiedkubemq-operator-marketplace
      @@ -973,42 +988,26 @@
      Partially complying with the recommendations
      -
    • v1.4
    • - -
    • stable
    • - -
    • v1.0
    • - -
    • beta
    • - -
    • v1.1
    • - -
    • v1.2
    • - -
    • v1.3
    • +
    • alpha
      -
    • 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)
    • +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • couchdb-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.3],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • couchdb-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • couchdb-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-hub-operatornxrm-operator-certified
      @@ -1038,9 +1037,25 @@
      Partially complying with the recommendations
      -
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,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)
    • +
    • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operator-with-crdsopenshiftartifactoryha-operator
      @@ -1070,7 +1085,39 @@
      Partially complying with the recommendations
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    presto-operatorkube-arangodb
      @@ -1093,14 +1140,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    stonebranch-universalagent-operator-certifiedcpx-cic-operator
      @@ -1130,7 +1177,9 @@
      Partially complying with the recommendations
      -
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gitlab-runner-operatortigera-operator
      @@ -1155,16 +1204,32 @@
      Partially complying with the recommendations
    • stable
    • +
    • release-v1.13
    • + +
    • release-v1.20
    • +
      -
    • gitlab-runner-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tigera-operator.v1.13.0 - (label=v4.5-v4.7,max=4.8,channels=[release-v1.13],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • gitlab-runner-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, 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)
    • -
    • gitlab-runner-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, 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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • tigera-operator.v1.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
    nxrm-operator-certifiedvprotect-operator
      @@ -1187,32 +1252,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vprotect-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    bacula-operator2ibm-spectrum-scale-csi
      @@ -1235,14 +1284,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    cnvrg-operator-marketplacenode-red-operator-certified
      @@ -1272,7 +1325,11 @@
      Partially complying with the recommendations
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anchore-enginecitrix-adc-istio-ingress-gateway-operator
      @@ -1302,7 +1359,7 @@
      Partially complying with the recommendations
      -
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    transform-adv-operatoribm-spectrum-symphony-operator
      @@ -1325,8 +1382,6 @@
      Partially complying with the recommendations
      -
    • v2.3
    • -
    • stable
    @@ -1334,15 +1389,7 @@
    Partially complying with the recommendations
      -
    • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[v2.3 stable],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)
    • +
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubeturbo-certifiedpercona-xtradb-cluster-operator-certified
      @@ -1372,44 +1419,24 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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-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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      +
    +
    +
    can-operatoropenshiftpipeline-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -1422,7 +1449,7 @@
    Partially complying with the recommendations
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    orcakubeturbo-certified
      @@ -1445,18 +1472,32 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • orca-operator.v1.0.193 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v7.22.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • kubeturbo-operator.v7.22.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    behavior-analytics-services-operator-certifiedcortex-certifai-operator
      @@ -1479,16 +1520,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • stable
      -
    • behavior-analytics-services-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • behavior-analytics-services-operator.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    mf-cics-ts-operatorredhat-marketplace-operator
      @@ -1511,14 +1560,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • beta
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v2.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    f5-bigip-ctlr-operatorsplunk-certified
      @@ -1541,14 +1606,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-ingress-controller-operatorhazelcast-enterprise-certified
      @@ -1578,7 +1643,19 @@
      Partially complying with the recommendations
      -
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cpx-cic-operatorivory-server-app
      @@ -1608,9 +1685,7 @@
      Partially complying with the recommendations
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    memql-certifiedsnyk-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-certifai-operatoratomicorp-helm-operator-certified
      @@ -1673,24 +1740,14 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operator-certifiedwavefront-operator
      @@ -1715,26 +1772,12 @@
      Partially complying with the recommendations
    • 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: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)
    • +
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    node-red-operator-certifiedstonebranch-universalagent-operator-certified
      @@ -1764,11 +1807,7 @@
      Partially complying with the recommendations
      -
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    dell-csi-operator-certifiedcitrix-cpx-istio-sidecar-injector-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • alpha
      -
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    • +
    • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nxiq-operator-certifiedopen-liberty-certified
      @@ -1825,30 +1860,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    k8s-triliovaultopenunison-ocp-certified
      @@ -1871,10 +1890,6 @@
      Partially complying with the recommendations
      -
    • cluster
    • - -
    • namespaced
    • -
    • stable
    @@ -1882,17 +1897,7 @@
    Partially complying with the recommendations
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    growth-stack-operator-certifiedmf-cics-ts-operator
      @@ -1922,9 +1927,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-enterprise-operatorcitrix-ingress-controller-operator
      @@ -1954,9 +1957,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sysdig-certifiedcoralogix-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1986,7 +1989,7 @@
    Partially complying with the recommendations
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    armory-operatorsematext
      @@ -2009,14 +2012,14 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • stable
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubeplusaws-event-sources-operator-certified
      @@ -2046,7 +2049,13 @@
      Partially complying with the recommendations
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-certifiedanaconda-team-edition
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • beta
      -
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    kube-arangodbako-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portworx-certifiedjoget-dx-operator
      @@ -2133,28 +2142,22 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certifiedhere-service-operator-certified
      @@ -2177,22 +2180,14 @@
      Partially complying with the recommendations
      -
    • latest
    • -
    • alpha
    • -
    • 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:YES, deprecated:NO)
    • +
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operatorfalco-certified
      @@ -2215,8 +2210,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -2224,15 +2217,7 @@
    Partially complying with the recommendations
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-enterprise-certifiedaci-containers-operator
      @@ -2255,26 +2240,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kpow-io-certifiedalcide-kaudit-operator
      @@ -2304,7 +2277,7 @@
      Partially complying with the recommendations
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    storageos2rapidbiz-operator-certified
      @@ -2327,14 +2300,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • storageosoperator.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatorinfinibox-operator-certified
      @@ -2357,18 +2330,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-scale-csiinfrastructure-asset-orchestrator-certified
      @@ -2398,11 +2367,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    joget-openshift-operatorarmory-operator
      @@ -2425,14 +2390,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • v1alpha2
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    nvmesh-operatorcitrix-cpx-with-ingress-controller-operator
      @@ -2455,14 +2420,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    runtime-component-operator-certifiedzabbix-operator-certified
      @@ -2485,14 +2450,16 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • lts
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    insightedge-enterprise-operator2fep-ansible-operator
      @@ -2515,14 +2482,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    atomicorp-helm-operator-certifiedorca
      @@ -2545,14 +2516,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    cortex-fabric-operatorcouchdb-operator-certified
      @@ -2575,18 +2550,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • v1.4
    • stable
    • +
    • v1.0
    • + +
    • beta
    • + +
    • v1.1
    • + +
    • v1.2
    • + +
    • v1.3
    • +
      -
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • couchdb-operator.v1.0.14 - (label=v4.6,v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:NO, 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)
    • +
    • 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 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:YES,defaultChannel:YES, deprecated:NO)
    portshift-controller-operatorperceptilabs-operator-package
      @@ -2609,16 +2608,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • portshift-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • perceptilabs-operator.v1.0.16 - (label=v4.6,v4.5,max=4.8,channels=[stable],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)
    • +
    • 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)
    hpe-ezmeral-csi-operatorhspc-operator
      @@ -2648,11 +2649,7 @@
      Partially complying with the recommendations
      -
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certifiedtransform-adv-operator
      @@ -2675,6 +2672,8 @@
      Partially complying with the recommendations
      +
    • v2.3
    • +
    • stable
    @@ -2682,7 +2681,15 @@
    Partially complying with the recommendations
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[v2.3 stable],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)
    mf-cics-tg-operatordensify-operator
      @@ -2705,6 +2712,8 @@
      Partially complying with the recommendations
      +
    • v1.0
    • +
    • alpha
    @@ -2712,7 +2721,11 @@
    Partially complying with the recommendations
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    neuvector-certified-operatork10-kasten-operator
      @@ -2735,34 +2748,24 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
    • + +
    • stable
      -
    • 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)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,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)
    • +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubemq-operator-marketplaceseldon-operator-certified
      @@ -2787,24 +2790,26 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,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)
    • -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    wavefront-operatorcic-operator-with-crds
      @@ -2834,7 +2839,7 @@
      Partially complying with the recommendations
      -
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appranix-cpsruntime-component-operator-certified
      @@ -2857,18 +2862,14 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • deprecated
    • +
    • beta
      -
    • 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)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    falco-certifieddatadog-operator-certified
      @@ -2891,14 +2892,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • beta
      -
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operatorportworx-certified
      @@ -2923,14 +2928,28 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    tigera-operatorpresto-operator
      @@ -2953,34 +2972,14 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • release-v1.13
    • - -
    • release-v1.20
    • +
    • alpha
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • tigera-operator.v1.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-xray-operatoras400rpc-operator
      @@ -3012,17 +3011,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    perceptilabs-operator-packagecan-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    densify-operatorcnvrg-operator-marketplace
      @@ -3079,8 +3066,6 @@
      Partially complying with the recommendations
      -
    • v1.0
    • -
    • alpha
    @@ -3088,11 +3073,7 @@
    Partially complying with the recommendations
      -
    • 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.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    fp-predict-plus-operator-certifiedstarburst-enterprise-helm-operator
      @@ -3115,14 +3096,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftxray-operatorinsightedge-enterprise-operator2
      @@ -3152,39 +3133,7 @@
      Partially complying with the recommendations
      -
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-with-ingress-controller-operatortraefikee-redhat-certified
      @@ -3207,14 +3156,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    xspc-operatorappdynamics-operator
      @@ -3237,14 +3186,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    timemachine-operatorsysdig-certified
      @@ -3267,14 +3218,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hspc-operatorblackduck-connector-operator
      @@ -3327,14 +3278,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    alcide-kaudit-operatoraqua-operator-certified
      @@ -3357,14 +3308,22 @@
      Partially complying with the recommendations
      +
    • latest
    • +
    • alpha
    • +
    • 5.3
    • +
      -
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES, deprecated:NO)
    starburst-enterprise-helm-operatorxcrypt-operator
      @@ -3394,7 +3353,7 @@
      Partially complying with the recommendations
      -
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jtrac-app-operatorbehavior-analytics-services-operator-certified
    • CRD
    • -
    • ClusterRole
    • -
    @@ -3426,7 +3383,9 @@
    Partially complying with the recommendations
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,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:YES,defaultChannel:YES, deprecated:NO)
    aws-event-sources-operator-certifiedrocketchat-operator-certified
      @@ -3449,20 +3408,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    infinibox-operator-certifieddb2-zos-db-operator
      @@ -3492,7 +3445,7 @@
      Partially complying with the recommendations
      -
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    splunk-certifiedneuvector-certified-operator
      @@ -3515,14 +3468,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedt8c-certified
      @@ -3545,14 +3518,22 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    hedvig-operatormf-cics-tg-operator
      @@ -3575,14 +3556,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-istio-sidecar-injector-operatorcortex-healthcare-hub-operator
      @@ -3605,14 +3586,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    appsody-operator-certifiedkpow-io-certified
      @@ -3635,14 +3618,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ionir-operatorf5-bigip-ctlr-operator
      -
    • ClusterRole
    • +
    • CRD
      -
    • stable
    • +
    • beta
      -
    • ionir-operator.v1.0.2 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ionir-operator.v1.0.3 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    oneagent-certifiedhazelcast-jet-enterprise-operator
      @@ -3704,19 +3685,9 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • hazelcast-jet-enterprise-operator.v0.1.1 - (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)
    • +
    • hazelcast-jet-enterprise-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kong-offline-operatoryugabyte-operator
      @@ -3741,12 +3712,14 @@
      Partially complying with the recommendations
    • alpha
    • +
    • beta
    • +
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-adc-istio-ingress-gateway-operatorcyberarmor-operator-certified
      @@ -3776,7 +3749,7 @@
      Partially complying with the recommendations
      -
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    xcrypt-operatorxspc-operator
      @@ -3799,14 +3772,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    redhat-marketplace-operatordell-csi-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
    @@ -3831,28 +3806,14 @@
    Partially complying with the recommendations
  • stable
  • -
  • beta
  • -
      -
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-marketplace-operator.v2.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,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)
    traefikee-redhat-certifiedhpe-ezmeral-csi-operator
      @@ -3882,7 +3843,11 @@
      Partially complying with the recommendations
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    joget-dx-operatorbacula-operator2
      @@ -3912,17 +3877,7 @@
      Partially complying with the recommendations
      -
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    t8c-certifiedjtrac-app-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    infrastructure-asset-orchestrator-certifiedzoperator
      @@ -3983,14 +3932,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sematextfederatorai-certified
      @@ -4020,7 +3969,7 @@
      Partially complying with the recommendations
      -
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftartifactoryha-operatoranchore-engine
      @@ -4050,39 +3999,7 @@
      Partially complying with the recommendations
      -
    • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprisememql-certified
      -
    • UNKNOWN
    • -
    • CRD
    @@ -4107,76 +4022,36 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,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.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.4 - (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)
    • +
    • memsql-operator.v0.0.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha],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)
    • +
    • memsql-operator.v0.0.3 - (label=v4.6,v4.5,max=4.8,channels=[alpha],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)
    • +
    • memsql-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha],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)
    • +
    • memsql-operator.v1.1.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha],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)
    • +
    • memsql-operator.v1.1.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha],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)
    • +
    • memsql-operator.v1.2.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:YES,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)
    • -
    redis-enterprise-operator-certakka-cluster-operator-certified
      @@ -4187,42 +4062,14 @@
      Partially complying with the recommendations
      -
    • 6.0.8
    • - -
    • 6.0.20
    • - -
    • 6.0.12
    • - -
    • production
    • - -
    • 6.0.6
    • - -
    • preview
    • - -
    • 5.4.14
    • +
    • beta
      -
    • 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=[6.0.8 6.0.20 5.4.14 6.0.12 production 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=[6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    uma-operatoropenshiftxray-operator
      @@ -4252,49 +4099,39 @@
      Partially complying with the recommendations
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    coralogix-operator-certified -
      - -
    • CRD
    • - -
    • ClusterRole
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      +
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-navigator-operator-certifieddata-explorer-operator-certified
    • CRD
    • -
    • ClusterRole
    • -
    @@ -4326,31 +4161,41 @@
    Partially complying with the recommendations
      -
    • nastel-navigator-operator.v0.0.14 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • data-explorer-operator.v0.0.1 - (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)
    • +
    • data-explorer-operator.v0.0.10 - (label=v4.5,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)
    • +
    • data-explorer-operator.v0.0.2 - (label=v4.5,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)
    • +
    • data-explorer-operator.v0.0.3 - (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)
    • +
    • data-explorer-operator.v0.0.4 - (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)
    • +
    • data-explorer-operator.v0.0.5 - (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)
    • +
    • data-explorer-operator.v0.0.6 - (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)
    • +
    • data-explorer-operator.v0.0.7 - (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)
    • +
    • data-explorer-operator.v0.0.8 - (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)
    • +
    • data-explorer-operator.v0.0.9 - (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)
    • +
    • data-explorer-operator.v0.1.1 - (label=v4.5,v4.6,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)
    • +
    • data-explorer-operator.v0.1.2 - (label=v4.5,v4.6,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:YES,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:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certifiedtf-operator
      @@ -4373,18 +4218,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • beta
    • +
    • stable
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nsx-container-plugin-operatorgitlab-runner-operator
      @@ -4407,14 +4248,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certifiedibm-tas
      +
    • ClusterRole
    • +
    • CRD
    @@ -4444,7 +4291,7 @@
    Partially complying with the recommendations
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    as400rpc-operatork8s-triliovault
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • cluster
    • + +
    • namespaced
    • + +
    • stable
      -
    • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    rapidbiz-operator-certifiedcert-manager-operator
      @@ -4501,12 +4360,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    zoperatornsx-container-plugin-operator
      @@ -4536,7 +4399,7 @@
      Partially complying with the recommendations
      -
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cloud-native-postgresqlportshift-controller-operator
      @@ -4559,20 +4422,16 @@
      Partially complying with the recommendations
      -
    • beta
    • -
    • alpha
    • -
    • stable
    • -
      -
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • portshift-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cloud-native-postgresql.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    blackduck-connector-operatorredis-enterprise-operator-cert
      @@ -4595,14 +4454,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 6.0.8
    • + +
    • 6.0.20
    • + +
    • 6.0.12
    • + +
    • production
    • + +
    • 6.0.6
    • + +
    • preview
    • + +
    • 5.4.14
      -
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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=[6.0.8 6.0.20 5.4.14 6.0.12 production 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=[6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    open-liberty-certifiedoneagent-certified
      @@ -4625,14 +4512,26 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    @@ -4663,6 +4562,34 @@
    Fully complying with the recommendations
    + + + + + + + + - + + + + + + + + + - + @@ -4753,17 +4696,21 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + @@ -5000,7 +5009,7 @@
    Fully complying with the recommendations
    - + - + - + - + @@ -5111,14 +5136,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - - - - - - - - - + - + - + - + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html index fcfad6fd..750637b9 100644 --- a/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html +++ b/testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html @@ -102,32 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    nutanixcsioperator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cloudbees-ci @@ -4692,12 +4619,10 @@
    Fully complying with the recommendations
    elasticsearch-eck-operator-certifiedhpe-csi-operator
      -
    • CRD
    • -
    @@ -4710,29 +4635,47 @@
    Fully complying with the recommendations
      -
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    anzograph-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    aikit-operatorcilium
      @@ -4741,7 +4684,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    linstor-operatormongodb-enterprise
      +
    • UNKNOWN
    • + +
    • CRD
    • +
    @@ -4771,31 +4718,77 @@
    Fully complying with the recommendations
  • stable
  • -
  • alpha
  • -
      +
    • 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:YES,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.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.4 - (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)
    • +
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,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)
    nginx-ingress-operatorpmem-csi-operator-os
      -
    • CRD
    • -
    @@ -4803,62 +4796,60 @@
    Fully complying with the recommendations
  • alpha
  • +
  • stable
  • +
      -
    • 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)
    • +
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operatorn3000
      +
    • CRD
    • + +
    • ClusterRole
    • +
      -
    • alpha
    • +
    • stable
      +
    • n3000.v1.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • n3000.v1.1.0 - (label==v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operatorentando-k8s-operator
      @@ -4867,6 +4858,10 @@
      Fully complying with the recommendations
      +
    • alpha
    • + +
    • beta
    • +
    • stable
    @@ -4879,17 +4874,23 @@
    Fully complying with the recommendations
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-osnginx-ingress-operator
      +
    • CRD
    • +
    @@ -4897,26 +4898,34 @@
    Fully complying with the recommendations
  • alpha
  • -
  • stable
  • -
      +
    • 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)
    • +
      -
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nginx-ingress-operator.v0.3.0 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ciliumsanstoragecsi-operator-bundle
      @@ -4937,14 +4946,14 @@
      Fully complying with the recommendations
      -
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operatoriomesh-operator
      @@ -4965,7 +4974,7 @@
      Fully complying with the recommendations
      -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzograph-operatorcockroachdb-certified
      @@ -5009,6 +5018,8 @@
      Fully complying with the recommendations
      +
    • beta
    • +
    • stable
    @@ -5021,21 +5032,19 @@
    Fully complying with the recommendations
      -
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    n3000gpu-operator-certified
    • CRD
    • -
    • ClusterRole
    • -
    @@ -5043,26 +5052,42 @@
    Fully complying with the recommendations
  • stable
  • +
  • v1.8
  • + +
  • v1.7
  • +
      -
    • n3000.v1.0.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
      -
    • n3000.v1.1.0 - (label==v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gpu-operator-certified.v1.6.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    minio-operatorvfunction-server-operator
      @@ -5083,14 +5108,14 @@
      Fully complying with the recommendations
      -
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nutanixcsioperatoraikit-operator
      @@ -5099,7 +5124,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-block-csi-operatorelasticsearch-eck-operator-certified
      @@ -5136,30 +5161,32 @@
      Fully complying with the recommendations
      -
    • ibm-block-csi-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.4.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    gpu-operator-certifiedanzounstructured-operator
      -
    • CRD
    • -
    @@ -5167,47 +5194,27 @@
    Fully complying with the recommendations
  • 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:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    couchbase-enterprise-certifiedlinstor-operator
      -
    • CRD
    • -
    @@ -5215,36 +5222,26 @@
    Fully complying with the recommendations
  • stable
  • +
  • alpha
  • +
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    entando-k8s-operatorccm-node-agent-operator
      @@ -5255,10 +5252,6 @@
      Fully complying with the recommendations
    • alpha
    • -
    • beta
    • - -
    • stable
    • -
    @@ -5269,18 +5262,14 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operatorminio-operator
      @@ -5301,14 +5290,14 @@
      Fully complying with the recommendations
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    crunchy-postgres-operatorcouchbase-enterprise-certified
      @@ -5319,8 +5308,6 @@
      Fully complying with the recommendations
      -
    • v5
    • -
    • stable
    @@ -5328,60 +5315,42 @@
    Fully complying with the recommendations
      -
    • postgresoperator.v4.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • couchbase-operator.v1.2.1 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:NO, 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)
    • -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.0.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    sriov-fec -
      - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      +
    • 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)
      -
    • sriov-fec.v1.3.0 - (label==v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certifiedcrunchy-postgres-operator
      +
    • CRD
    • +
      -
    • beta
    • +
    • v5
    • stable
    • @@ -5390,22 +5359,28 @@
      Fully complying with the recommendations
      +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    anzo-operatoribm-block-csi-operator
      +
    • CRD
    • +
    @@ -5418,19 +5393,25 @@
    Fully complying with the recommendations
      +
    • ibm-block-csi-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.4.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sanstoragecsi-operator-bundlesriov-fec
      @@ -5451,14 +5432,14 @@
      Fully complying with the recommendations
      -
    • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sriov-fec.v1.3.0 - (label==v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    iomesh-operatoranzo-operator
      @@ -5479,7 +5460,7 @@
      Fully complying with the recommendations
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -142,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -172,7 +153,7 @@
    Partially complying with the recommendations
    - + @@ -202,7 +183,7 @@
    Partially complying with the recommendations
    - + @@ -232,7 +213,7 @@
    Partially complying with the recommendations
    - + @@ -278,7 +243,7 @@
    Partially complying with the recommendations
    - + @@ -310,12 +273,10 @@
    Partially complying with the recommendations
    - + @@ -342,7 +305,7 @@
    Partially complying with the recommendations
    - + @@ -372,7 +335,7 @@
    Partially complying with the recommendations
    - + @@ -402,7 +369,7 @@
    Partially complying with the recommendations
    - + @@ -432,7 +403,7 @@
    Partially complying with the recommendations
    - + @@ -462,19 +441,19 @@
    Partially complying with the recommendations
    - + @@ -496,7 +475,7 @@
    Partially complying with the recommendations
    - + @@ -526,7 +515,7 @@
    Partially complying with the recommendations
    - + @@ -556,7 +545,7 @@
    Partially complying with the recommendations
    - + @@ -586,7 +575,7 @@
    Partially complying with the recommendations
    - + @@ -616,7 +605,7 @@
    Partially complying with the recommendations
    - + @@ -652,7 +635,7 @@
    Partially complying with the recommendations
    - + @@ -686,7 +671,7 @@
    Partially complying with the recommendations
    - + @@ -716,7 +705,7 @@
    Partially complying with the recommendations
    - + @@ -748,7 +735,7 @@
    Partially complying with the recommendations
    - + @@ -782,7 +765,7 @@
    Partially complying with the recommendations
    - + @@ -844,7 +801,7 @@
    Partially complying with the recommendations
    - + @@ -874,7 +831,7 @@
    Partially complying with the recommendations
    - + @@ -904,7 +861,7 @@
    Partially complying with the recommendations
    - + @@ -934,7 +891,7 @@
    Partially complying with the recommendations
    - + - + - + @@ -1022,7 +963,7 @@
    Partially complying with the recommendations
    - + @@ -1052,7 +995,7 @@
    Partially complying with the recommendations
    - + @@ -1090,10 +1037,12 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -1136,7 +1101,7 @@
    Partially complying with the recommendations
    - + @@ -1168,7 +1131,7 @@
    Partially complying with the recommendations
    - + @@ -1198,7 +1161,7 @@
    Partially complying with the recommendations
    - + @@ -1230,7 +1195,7 @@
    Partially complying with the recommendations
    - + @@ -1260,7 +1225,7 @@
    Partially complying with the recommendations
    - + @@ -1290,7 +1255,7 @@
    Partially complying with the recommendations
    - + @@ -1320,7 +1301,7 @@
    Partially complying with the recommendations
    - + @@ -1350,7 +1333,7 @@
    Partially complying with the recommendations
    - + @@ -1394,29 +1363,29 @@
    Partially complying with the recommendations
    - + @@ -1428,7 +1397,7 @@
    Partially complying with the recommendations
    - + @@ -1476,7 +1445,7 @@
    Partially complying with the recommendations
    - + @@ -1506,7 +1475,7 @@
    Partially complying with the recommendations
    - + @@ -1536,7 +1505,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -1586,7 +1565,7 @@
    Partially complying with the recommendations
    - + @@ -1628,7 +1605,7 @@
    Partially complying with the recommendations
    - + @@ -1658,7 +1637,7 @@
    Partially complying with the recommendations
    - + @@ -1690,7 +1667,7 @@
    Partially complying with the recommendations
    - + @@ -1724,7 +1697,7 @@
    Partially complying with the recommendations
    - + @@ -1754,7 +1731,7 @@
    Partially complying with the recommendations
    - + @@ -1784,29 +1761,27 @@
    Partially complying with the recommendations
    - + @@ -1818,7 +1793,7 @@
    Partially complying with the recommendations
    - + @@ -1888,7 +1883,7 @@
    Partially complying with the recommendations
    - + @@ -1922,25 +1913,27 @@
    Partially complying with the recommendations
    - + @@ -1952,7 +1945,7 @@
    Partially complying with the recommendations
    - + @@ -1992,7 +1977,7 @@
    Partially complying with the recommendations
    - + @@ -2022,53 +2007,27 @@
    Partially complying with the recommendations
    - + @@ -2080,7 +2039,7 @@
    Partially complying with the recommendations
    - + @@ -2140,7 +2099,7 @@
    Partially complying with the recommendations
    - + @@ -2170,7 +2161,7 @@
    Partially complying with the recommendations
    - + @@ -2200,27 +2191,77 @@
    Partially complying with the recommendations
    - + @@ -2232,7 +2273,7 @@
    Partially complying with the recommendations
    - + @@ -2262,7 +2303,7 @@
    Partially complying with the recommendations
    - + @@ -2292,27 +2333,25 @@
    Partially complying with the recommendations
    - + @@ -2324,7 +2363,7 @@
    Partially complying with the recommendations
    - + @@ -2354,7 +2393,7 @@
    Partially complying with the recommendations
    - + @@ -2384,7 +2451,7 @@
    Partially complying with the recommendations
    - + @@ -2416,7 +2481,7 @@
    Partially complying with the recommendations
    - + @@ -2446,7 +2531,7 @@
    Partially complying with the recommendations
    - + @@ -2482,7 +2563,7 @@
    Partially complying with the recommendations
    - + @@ -2516,7 +2593,7 @@
    Partially complying with the recommendations
    - + @@ -2546,7 +2625,7 @@
    Partially complying with the recommendations
    - + @@ -2592,7 +2655,7 @@
    Partially complying with the recommendations
    - + @@ -2624,14 +2703,12 @@
    Partially complying with the recommendations
    - + @@ -2656,7 +2747,7 @@
    Partially complying with the recommendations
    - + @@ -2686,7 +2777,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -2746,7 +2817,7 @@
    Partially complying with the recommendations
    - + @@ -2776,7 +2847,7 @@
    Partially complying with the recommendations
    - + @@ -2806,7 +2877,7 @@
    Partially complying with the recommendations
    - + @@ -2870,7 +2911,7 @@
    Partially complying with the recommendations
    - + @@ -2900,7 +2941,7 @@
    Partially complying with the recommendations
    - + @@ -2930,7 +2971,7 @@
    Partially complying with the recommendations
    - + @@ -2964,7 +3003,7 @@
    Partially complying with the recommendations
    - + @@ -2994,7 +3033,7 @@
    Partially complying with the recommendations
    - + @@ -3044,14 +3063,12 @@
    Partially complying with the recommendations
    - + @@ -3076,7 +3093,7 @@
    Partially complying with the recommendations
    - + @@ -3106,7 +3133,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -3170,7 +3179,7 @@
    Partially complying with the recommendations
    - + @@ -3202,7 +3215,7 @@
    Partially complying with the recommendations
    - + @@ -3242,7 +3249,7 @@
    Partially complying with the recommendations
    - + @@ -3304,7 +3279,7 @@
    Partially complying with the recommendations
    - + @@ -3334,7 +3311,7 @@
    Partially complying with the recommendations
    - + @@ -3364,7 +3341,7 @@
    Partially complying with the recommendations
    - + @@ -3394,27 +3373,39 @@
    Partially complying with the recommendations
    - + @@ -3426,7 +3417,7 @@
    Partially complying with the recommendations
    - + @@ -3468,7 +3463,7 @@
    Partially complying with the recommendations
    - + @@ -3508,7 +3525,7 @@
    Partially complying with the recommendations
    - + @@ -3538,27 +3567,29 @@
    Partially complying with the recommendations
    - + @@ -3570,13 +3601,13 @@
    Partially complying with the recommendations
    - + @@ -3590,57 +3621,7 @@
    Partially complying with the recommendations
    @@ -3652,7 +3633,7 @@
    Partially complying with the recommendations
    - + @@ -3700,7 +3663,7 @@
    Partially complying with the recommendations
    - + @@ -3730,7 +3701,7 @@
    Partially complying with the recommendations
    - + @@ -3760,7 +3731,7 @@
    Partially complying with the recommendations
    - + @@ -3790,33 +3763,27 @@
    Partially complying with the recommendations
    - + @@ -3828,7 +3795,7 @@
    Partially complying with the recommendations
    - + @@ -3858,7 +3825,7 @@
    Partially complying with the recommendations
    - + @@ -3894,7 +3889,7 @@
    Partially complying with the recommendations
    - + @@ -3926,12 +3923,14 @@
    Partially complying with the recommendations
    - + @@ -3956,14 +3955,12 @@
    Partially complying with the recommendations
    - + @@ -3988,7 +3985,7 @@
    Partially complying with the recommendations
    - + @@ -4032,7 +4015,7 @@
    Partially complying with the recommendations
    - + @@ -4062,7 +4045,7 @@
    Partially complying with the recommendations
    - + @@ -4102,7 +4075,7 @@
    Partially complying with the recommendations
    - + @@ -4144,7 +4105,7 @@
    Partially complying with the recommendations
    - + @@ -4178,7 +4135,7 @@
    Partially complying with the recommendations
    - + @@ -4208,7 +4165,7 @@
    Partially complying with the recommendations
    - + @@ -4238,7 +4223,7 @@
    Partially complying with the recommendations
    - + @@ -4268,7 +4253,7 @@
    Partially complying with the recommendations
    - + @@ -4300,7 +4283,7 @@
    Partially complying with the recommendations
    - + @@ -4330,7 +4313,7 @@
    Partially complying with the recommendations
    - + @@ -4364,14 +4343,12 @@
    Partially complying with the recommendations
    - + @@ -4396,7 +4373,7 @@
    Partially complying with the recommendations
    - + @@ -4426,7 +4403,7 @@
    Partially complying with the recommendations
    - + @@ -4461,7 +4442,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    armory-operatorinfrastructure-asset-orchestrator-certified
      @@ -153,14 +134,14 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • stable
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    appsody-operator-certifiedkpow-io-certified
      @@ -183,14 +164,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    tf-operatornsx-container-plugin-operator
      @@ -213,14 +194,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portworx-certifiedmf-cics-tg-operator
      @@ -245,28 +226,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    vprotect-operatorwavefront-operator
      @@ -296,9 +261,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    can-operatorappdynamics-operator
      -
    • ClusterRole
    • -
    • CRD
    @@ -330,7 +291,9 @@
    Partially complying with the recommendations
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certifiedxcrypt-operator
      @@ -353,14 +316,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hspc-operatororca
      @@ -383,14 +346,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    mf-cics-tg-operatorjoget-dx-operator
      @@ -420,7 +387,11 @@
      Partially complying with the recommendations
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    timemachine-operatort8c-certified
      @@ -443,14 +414,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    dell-csi-operator-certifiedappranix-cps
    • CRD
    • -
    • ClusterRole
    • -
      +
    • deprecated
    • +
    • stable
    @@ -482,9 +461,9 @@
    Partially complying with the recommendations
      -
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    • +
    • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],head:YES,defaultChannel:NO, deprecated:NO)
    sysdig-certifiedmemql-certified
      @@ -507,14 +486,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    wavefront-operatorbacula-operator2
      @@ -544,7 +533,7 @@
      Partially complying with the recommendations
      -
    • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    falco-certifiedatomicorp-helm-operator-certified
      @@ -567,14 +556,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aci-containers-operatorstarburst-enterprise-helm-operator
      @@ -597,14 +586,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cloud-native-postgresqlblackduck-connector-operator
      @@ -627,20 +616,14 @@
      Partially complying with the recommendations
      -
    • beta
    • -
    • alpha
    • -
    • stable
    • -
      -
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cloud-native-postgresql.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    joget-dx-operatoraws-event-sources-operator-certified
      @@ -670,11 +653,13 @@
      Partially complying with the recommendations
      -
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftpipeline-operatoribm-spectrum-scale-csi
      @@ -697,14 +682,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    zabbix-operator-certifiedarmory-operator
      @@ -727,16 +716,14 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • v1alpha2
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    gitlab-runner-operatoralcide-kaudit-operator
      @@ -759,18 +746,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftxray-operatordensify-operator
      @@ -793,6 +776,8 @@
      Partially complying with the recommendations
      +
    • v1.0
    • +
    • alpha
    @@ -800,39 +785,11 @@
    Partially complying with the recommendations
      -
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operatorpercona-xtradb-cluster-operator-certified
      @@ -855,14 +812,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    splunk-certifiedtimemachine-operator
      @@ -892,7 +849,7 @@
      Partially complying with the recommendations
      -
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nvmesh-operatorhere-service-operator-certified
      @@ -915,14 +872,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eddi-operator-certifiedhazelcast-enterprise-certified
      @@ -952,11 +909,23 @@
      Partially complying with the recommendations
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
  • + + +
    @@ -964,7 +933,7 @@
    Partially complying with the recommendations
    redis-enterprise-operator-certpercona-server-mongodb-operator-certified
      @@ -975,42 +944,14 @@
      Partially complying with the recommendations
      -
    • preview
    • - -
    • 6.0.8
    • - -
    • 6.0.20
    • - -
    • 6.0.12
    • - -
    • production
    • - -
    • 5.4.14
    • - -
    • 6.0.6
    • +
    • stable
      -
    • 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=[6.0.8 6.0.20 5.4.14 6.0.12 production 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=[6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anaconda-team-editionyugabyte-operator
      @@ -1033,6 +974,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • beta
    @@ -1040,7 +983,7 @@
    Partially complying with the recommendations
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certifiedkubemq-operator-marketplace
      @@ -1063,22 +1006,26 @@
      Partially complying with the recommendations
      -
    • latest
    • -
    • alpha
    • -
    • 5.3
    • -
      -
    • aqua-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v5.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v5.3.0 - (label=v4.5,v4.6,max=4.8,channels=[5.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nxiq-operator-certifiedcan-operator
      +
    • ClusterRole
    • +
    • CRD
    @@ -1101,30 +1050,46 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    coralogix-operator-certified +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    yugabyte-operatorcitrix-cpx-with-ingress-controller-operator
      @@ -1149,14 +1114,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • beta
    • -
      -
    • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-symphony-operatorhspc-operator
      @@ -1186,7 +1149,7 @@
      Partially complying with the recommendations
      -
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cpx-cic-operatorfep-ansible-operator
      @@ -1209,16 +1172,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    nsx-container-plugin-operatorkong-offline-operator
      @@ -1248,7 +1213,7 @@
      Partially complying with the recommendations
      -
    • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    fp-predict-plus-operator-certifiedcic-operator
      @@ -1271,14 +1236,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    model-builder-for-vision-certifiedredhat-marketplace-operator
      @@ -1301,6 +1266,8 @@
      Partially complying with the recommendations
      +
    • beta
    • +
    • stable
    @@ -1308,7 +1275,21 @@
    Partially complying with the recommendations
      -
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-marketplace-operator.v2.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sematextcortex-healthcare-hub-operator
      @@ -1338,7 +1319,9 @@
      Partially complying with the recommendations
      -
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    k8s-triliovaultkubeplus
      @@ -1361,28 +1344,14 @@
      Partially complying with the recommendations
      -
    • cluster
    • - -
    • stable
    • - -
    • namespaced
    • +
    • alpha
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certifieddell-csi-operator-certified
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • - -
    • beta
    • +
    • stable
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    nxrm-operator-certifiedkubeturbo-certified
      @@ -1446,25 +1415,25 @@
      Partially complying with the recommendations
      -
    • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v7.22.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • nxrm-operator-certified.v3.23.0-1 - (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)
    • -
    • nxrm-operator-certified.v3.24.0-7 - (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)
    • -
    • nxrm-operator-certified.v3.25.0-1 - (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)
    • -
    • nxrm-operator-certified.v3.25.1-1 - (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)
    • -
    • nxrm-operator-certified.v3.26.0-1 - (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)
    • -
    • nxrm-operator-certified.v3.26.1-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)
    • -
    • nxrm-operator-certified.v3.27.0-1 - (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)
    • -
    • nxrm-operator-certified.v3.31.1-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)
    • -
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v8.3.1 - (label=v4.5,v4.6,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operator-with-crdsfp-predict-plus-operator-certified
      @@ -1487,14 +1456,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anchore-enginecitrix-cpx-istio-sidecar-injector-operator
      @@ -1524,7 +1493,7 @@
      Partially complying with the recommendations
      -
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    instana-agentdb2-zos-db-operator
      @@ -1547,34 +1516,44 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • instana-agent-operator.v0.2.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    • +
    +
    rocketchat-operator-certified +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      -
    • instana-agent-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-enterprise-certifiedk10-kasten-operator
      @@ -1599,24 +1578,22 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • 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)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,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)
    • +
    • k10-kasten-operator.3.0.11 - (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)
    • +
    • k10-kasten-operator.3.0.11007 - (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)
    • +
    • k10-kasten-operator.4.0.5003 - (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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ivory-server-appvprotect-operator
      @@ -1646,7 +1623,9 @@
      Partially complying with the recommendations
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    portshift-controller-operatorf5-bigip-ctlr-operator
      @@ -1669,16 +1648,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • 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)
    • +
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    perceptilabs-operator-packagekube-arangodb
      @@ -1708,11 +1685,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    open-liberty-certifiednode-red-operator-certified
      @@ -1735,14 +1708,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kube-arangodbcnvrg-operator-marketplace
      @@ -1765,14 +1742,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-scale-csias400rpc-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    joget-openshift-operatorneuvector-certified-operator
      @@ -1829,14 +1804,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    appranix-cpssematext
      @@ -1899,8 +1894,6 @@
      Partially complying with the recommendations
      -
    • deprecated
    • -
    • stable
    @@ -1908,9 +1901,7 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    insightedge-enterprise-operator2ionir-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • alpha
    • +
    • stable
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ionir-operator.v1.0.2 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ionir-operator.v1.0.3 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operatorcpx-cic-operator
      @@ -1965,22 +1958,14 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubepluspresto-operator
      @@ -2010,7 +1995,7 @@
      Partially complying with the recommendations
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    couchdb-operator-certifiedjtrac-app-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • v1.4
    • - -
    • stable
    • - -
    • v1.0
    • - -
    • beta
    • - -
    • v1.1
    • - -
    • v1.2
    • - -
    • v1.3
    • +
    • alpha
      -
    • 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 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    bacula-operator2mf-cics-ts-operator
      @@ -2098,7 +2057,7 @@
      Partially complying with the recommendations
      -
    • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    federatorai-certifiedopenshiftxray-operator
      @@ -2151,14 +2110,46 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator-certifiednvmesh-operator
      @@ -2188,7 +2179,7 @@
      Partially complying with the recommendations
      -
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-enterprise-operatormongodb-enterprise
    • CRD
    • +
    • UNKNOWN
    • +
      -
    • alpha
    • +
    • stable
      -
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-enterprise.v0.3.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • 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:YES,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.4 - (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)
    infrastructure-asset-orchestrator-certifiedopen-liberty-certified
      @@ -2243,14 +2284,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    synopsys-certifiedcitrix-adc-istio-ingress-gateway-operator
      @@ -2273,14 +2314,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ionir-operatorcitrix-ingress-controller-operator
      -
    • ClusterRole
    • +
    • CRD
      -
    • stable
    • +
    • alpha
      -
    • ionir-operator.v1.0.2 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ionir-operator.v1.0.3 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedakka-cluster-operator-certified
      @@ -2342,7 +2381,7 @@
      Partially complying with the recommendations
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    stonebranch-universalagent-operator-certifiedcouchdb-operator-certified
      @@ -2365,14 +2404,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • v1.4
    • + +
    • stable
    • + +
    • v1.0
    • + +
    • beta
    • + +
    • v1.1
    • + +
    • v1.2
    • + +
    • v1.3
      -
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-healthcare-hub-operatortf-operator
      @@ -2402,9 +2469,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-istio-sidecar-injector-operatorinstana-agent
      @@ -2427,14 +2492,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    aws-event-sources-operator-certifiedhazelcast-jet-enterprise-operator
      @@ -2464,13 +2549,9 @@
      Partially complying with the recommendations
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    orcasplunk-certified
      @@ -2493,18 +2574,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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)
    • +
    • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    f5-bigip-ctlr-operatorgrowth-stack-operator-certified
      @@ -2527,14 +2604,16 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    redhat-marketplace-operatoreddi-operator-certified
      @@ -2557,30 +2636,14 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-marketplace-operator.v2.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operatornxrm-operator-certified
      @@ -2603,16 +2666,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-certifiedseldon-operator-certified
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2639,12 +2716,26 @@
    Partially complying with the recommendations
  • stable
  • +
  • alpha
  • +
      -
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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: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)
    cnvrg-operator-marketplaceappsody-operator-certified
      @@ -2667,14 +2758,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-ingress-controller-operatorcortex-certifai-operator
      @@ -2697,44 +2788,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • stable
      -
    • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    here-service-operator-certified -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    db2-zos-db-operatorsysdig-certified
      @@ -2757,14 +2828,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    blackduck-connector-operatorzoperator
      @@ -2794,7 +2865,7 @@
      Partially complying with the recommendations
      -
    • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certifiedcert-manager-operator
      @@ -2819,46 +2890,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • 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)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • data-explorer-operator.v0.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    xcrypt-operatoropenunison-ocp-certified
      @@ -2881,14 +2922,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    xspc-operatormodel-builder-for-vision-certified
      @@ -2918,7 +2959,7 @@
      Partially complying with the recommendations
      -
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatorcortex-hub-operator
      @@ -2948,11 +2989,9 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,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:YES,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)
    kpow-io-certifiedfederatorai-certified
      @@ -2975,14 +3014,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    neuvector-certified-operatorh2o-operator
      @@ -3012,27 +3051,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-tasopenshiftpipeline-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -3064,7 +3081,7 @@
    Partially complying with the recommendations
      -
    • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    runtime-component-operator-certifieduma-operator
      @@ -3087,14 +3104,24 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    cert-manager-operatorportworx-certified
      @@ -3126,39 +3153,21 @@
      Partially complying with the recommendations
      -
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    citrix-cpx-with-ingress-controller-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    behavior-analytics-services-operator-certifiedcloud-native-postgresql
      @@ -3181,16 +3190,20 @@
      Partially complying with the recommendations
      +
    • beta
    • +
    • alpha
    • +
    • stable
    • +
      -
    • behavior-analytics-services-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • behavior-analytics-services-operator.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloud-native-postgresql.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    memql-certifiedcortex-fabric-operator
      @@ -3215,22 +3228,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • 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)
    • +
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],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)
    • +
    • cortex-fabric-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshiftartifactoryha-operatorinfinibox-operator-certified
      @@ -3260,39 +3267,7 @@
      Partially complying with the recommendations
      -
    • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    zoperatorzabbix-operator-certified
      @@ -3315,14 +3290,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • lts
      -
    • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operator-certifiedtraefikee-redhat-certified
      @@ -3352,7 +3329,7 @@
      Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    h2o-operatorbehavior-analytics-services-operator-certified
      @@ -3375,14 +3352,16 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],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:YES,defaultChannel:YES, deprecated:NO)
    coralogix-operator-certifiedk8s-triliovault
    • CRD
    • -
    • ClusterRole
    • -
      +
    • cluster
    • +
    • stable
    • +
    • namespaced
    • +
      -
    • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubemq-operator-marketplacenxiq-operator-certified
      @@ -3437,26 +3428,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    uma-operatoropenshiftartifactoryha-operator
      @@ -3486,17 +3481,39 @@
      Partially complying with the recommendations
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • artifactory-ha-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • artifactory-ha-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • artifactory-ha-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    • -
    • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • artifactory-ha-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    citrix-adc-istio-ingress-gateway-operatoroneagent-certified
      @@ -3526,7 +3543,19 @@
      Partially complying with the recommendations
      -
    • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    ako-operatorgitlab-runner-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprisesnyk-operator-certified
    • CRD
    • -
    • UNKNOWN
    • +
    • ClusterRole
      -
    • 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:YES,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.4 - (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)
    • +
    • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubeturbo-certifiedstorageos2
      @@ -3670,25 +3651,7 @@
      Partially complying with the recommendations
      -
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • storageosoperator.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    infinibox-operator-certifiedaqua-operator-certified
      @@ -3711,14 +3674,22 @@
      Partially complying with the recommendations
      +
    • latest
    • +
    • alpha
    • +
    • 5.3
    • +
      -
    • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES, deprecated:NO)
    mf-cics-ts-operatorivory-server-app
      @@ -3748,7 +3719,7 @@
      Partially complying with the recommendations
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-redhat-certifiedportshift-controller-operator
      @@ -3771,14 +3742,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    t8c-certifiedibm-tas
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    storageos2hedvig-operator
      @@ -3846,7 +3813,7 @@
      Partially complying with the recommendations
      -
    • storageosoperator.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    densify-operatordata-explorer-operator-certified
      @@ -3869,8 +3836,6 @@
      Partially complying with the recommendations
      -
    • v1.0
    • -
    • alpha
    @@ -3878,11 +3843,41 @@
    Partially complying with the recommendations
      -
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • data-explorer-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],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)
    • -
    • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    growth-stack-operator-certifieddatadog-operator-certified
      @@ -3907,14 +3902,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • beta
    • +
      -
    • growth-stack-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,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)
    • +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    atomicorp-helm-operator-certifiedako-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -3944,7 +3943,7 @@
    Partially complying with the recommendations
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    as400rpc-operatorjoget-openshift-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -3976,7 +3973,7 @@
    Partially complying with the recommendations
      -
    • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operator-certifiedsynopsys-certified
      @@ -4001,26 +3998,12 @@
      Partially complying with the recommendations
    • stable
    • -
    • alpha
    • -
      -
    • 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: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)
    • +
    • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hedvig-operatorruntime-component-operator-certified
      @@ -4043,14 +4026,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-certifai-operatoraci-containers-operator
      @@ -4073,8 +4056,6 @@
      Partially complying with the recommendations
      -
    • beta
    • -
    • stable
    @@ -4082,15 +4063,7 @@
    Partially complying with the recommendations
      -
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    oneagent-certifiedxspc-operator
      @@ -4113,26 +4086,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    node-red-operator-certifiedinsightedge-enterprise-operator2
      @@ -4162,11 +4123,7 @@
      Partially complying with the recommendations
      -
    • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certifiedfalco-certified
      @@ -4189,14 +4146,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    starburst-enterprise-helm-operatorredis-enterprise-operator-cert
      @@ -4219,14 +4176,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • preview
    • + +
    • 6.0.8
    • + +
    • 6.0.20
    • + +
    • 6.0.12
    • + +
    • production
    • + +
    • 5.4.14
    • + +
    • 6.0.6
      -
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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=[6.0.8 6.0.20 5.4.14 6.0.12 production 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=[6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
    presto-operatoribm-spectrum-symphony-operator
      @@ -4249,14 +4234,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-hub-operatorstonebranch-universalagent-operator-certified
      @@ -4279,16 +4264,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    alcide-kaudit-operatoranchore-engine
      @@ -4318,7 +4301,7 @@
      Partially complying with the recommendations
      -
    • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-fabric-operatorcic-operator-with-crds
      @@ -4343,16 +4326,12 @@
      Partially complying with the recommendations
    • 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)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jtrac-app-operatorcyberarmor-operator-certified
    • CRD
    • -
    • ClusterRole
    • -
    @@ -4384,7 +4361,7 @@
    Partially complying with the recommendations
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kong-offline-operatoranaconda-team-edition
      @@ -4407,14 +4384,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certifiedperceptilabs-operator-package
      @@ -4444,7 +4421,11 @@
      Partially complying with the recommendations
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    @@ -4476,7 +4457,7 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + - + @@ -4737,14 +4712,14 @@
    Fully complying with the recommendations
    - + @@ -4765,14 +4740,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + @@ -4987,14 +4942,14 @@
    Fully complying with the recommendations
    - + - + @@ -5045,14 +4998,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html index 0c0b4dbe..cc3e31fa 100644 --- a/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html +++ b/testdata/reports/redhat_certified_operator_index/dashboards/grade_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html @@ -143,31 +143,41 @@
    Grade
    - + - + - + - + - + - + - + + + + + + + + + + + + + + + - - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + @@ -2782,28 +3077,28 @@
    Grade
    - + - + - + - + - + - + - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - - - - - - - - - - - - - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + + + + + + + + + + + + + + - + - + - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + +
    ciliumlinstor-operator
      @@ -4487,6 +4468,8 @@
      Fully complying with the recommendations
    • stable
    • +
    • alpha
    • +
    @@ -4497,14 +4480,14 @@
    Fully complying with the recommendations
      -
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operatoranzounstructured-operator
      @@ -4525,14 +4508,14 @@
      Fully complying with the recommendations
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    entando-k8s-operatorhpe-csi-operator
      @@ -4543,10 +4526,6 @@
      Fully complying with the recommendations
    • stable
    • -
    • beta
    • - -
    • alpha
    • -
    @@ -4557,18 +4536,14 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sanstoragecsi-operator-bundleanzograph-operator
      @@ -4589,78 +4564,78 @@
      Fully complying with the recommendations
      -
    • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operatoribm-block-csi-operator
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
      +
    • ibm-block-csi-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.4.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    crunchy-postgres-operatorccm-node-agent-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • v5
    • +
    • alpha
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    minio-operatorvfunction-server-operator
      @@ -4681,14 +4656,14 @@
      Fully complying with the recommendations
      -
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operatorsanstoragecsi-operator-bundle
      @@ -4709,14 +4684,14 @@
      Fully complying with the recommendations
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sanstoragecsi-operator-bundle.v1.0.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nutanixcsioperatorovms-operator
      @@ -4725,7 +4700,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ovms-operatoranzo-operator
      @@ -4753,7 +4728,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    couchbase-enterprise-certifiednginx-ingress-operator
      @@ -4783,43 +4758,39 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • nginx-ingress-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.0.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • nginx-ingress-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nginx-ingress-operator.v0.3.0 - (label=v4.5,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-block-csi-operatorentando-k8s-operator
      -
    • CRD
    • -
    @@ -4827,83 +4798,65 @@
    Fully complying with the recommendations
  • stable
  • +
  • beta
  • + +
  • alpha
  • +
      -
    • ibm-block-csi-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-block-csi-operator.v1.4.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    gpu-operator-certifiedpmem-csi-operator-os
      -
    • CRD
    • -
      -
    • v1.8
    • +
    • alpha
    • stable
    • -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    nginx-ingress-operatorcloudbees-ci
      -
    • CRD
    • -
    @@ -4916,32 +4869,24 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    iomesh-operatorelasticsearch-eck-operator-certified
      +
    • CRD
    • +
    @@ -4954,19 +4899,29 @@
    Fully complying with the recommendations
      +
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzo-operatornutanixcsioperator
      @@ -4975,7 +4930,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certifiedcilium
      @@ -5003,8 +4958,6 @@
      Fully complying with the recommendations
      -
    • beta
    • -
    • stable
    @@ -5017,14 +4970,14 @@
    Fully complying with the recommendations
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cloudbees-ciminio-operator
      @@ -5033,7 +4986,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operatorcockroachdb-certified
      @@ -5061,6 +5014,8 @@
      Fully complying with the recommendations
      +
    • beta
    • +
    • stable
    @@ -5073,42 +5028,62 @@
    Fully complying with the recommendations
      -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    aikit-operatorgpu-operator-certified
      +
    • CRD
    • +
      -
    • alpha
    • +
    • v1.8
    • + +
    • stable
    • + +
    • 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)
    • +
      -
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gpu-operator-certified.v1.6.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    linstor-operatoriomesh-operator
      @@ -5119,8 +5094,6 @@
      Fully complying with the recommendations
    • stable
    • -
    • alpha
    • -
    @@ -5131,17 +5104,19 @@
    Fully complying with the recommendations
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzograph-operatorcouchbase-enterprise-certified
      +
    • CRD
    • +
    @@ -5154,19 +5129,31 @@
    Fully complying with the recommendations
      +
    • 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)
    • +
      -
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    elasticsearch-eck-operator-certifiedcrunchy-postgres-operator
      @@ -5179,34 +5166,30 @@
      Fully complying with the recommendations
    • stable
    • +
    • v5
    • +
      -
    • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    pmem-csi-operator-osaikit-operator
      @@ -5217,8 +5200,6 @@
      Fully complying with the recommendations
    • alpha
    • -
    • stable
    • -
    @@ -5229,7 +5210,7 @@
    Fully complying with the recommendations
      -
    • pmem-csi-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    minio-operatorgrowth-stack-operator-certified -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -177,33 +187,191 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For minio-operator.v4.0.2:

      +

      For growth-stack-operator.v2.0.1:

      -

    • "ERROR" tenants.minio.min.io does not have a status descriptor
    • +
    • "ERROR" airgappeddeployments.growth-stack.operator.com does not have a status descriptor
    • -
    • "ERROR" pools does not have a spec descriptor
    • +
    • "ERROR" analyticsproxies.growth-stack.operator.com does not have a status descriptor
    • -
    • "ERROR" console does not have a spec descriptor
    • +
    • "ERROR" deleteclusters.growth-stack.operator.com does not have a status descriptor
    • +
    • "ERROR" fulldeployments.growth-stack.operator.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for pools
    • +
    • "ERROR" generatekeys.growth-stack.operator.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for console
    • +
    • "ERROR" storeforwardmetrics.growth-stack.operator.com does not have a status descriptor
    • + +
    • "ERROR" airgapped does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" airgapped does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" segment_key does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" airgapped does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" segment_key does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" segment_key does not have a spec descriptor
    • + +
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `airgapped` in AirgappedDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AirgappedDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AirgappedDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `postgres` in AirgappedDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `airgapped` in AnalyticsProxy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AnalyticsProxy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in AnalyticsProxy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AnalyticsProxy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `segment_key` in AnalyticsProxy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `postgres` in AnalyticsProxy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in DeleteCluster/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `postgres` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `airgapped` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `segment_key` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in GenerateKey/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `postgres` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `segment_key` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `version` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for airgapped
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for airgapped
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for segment_key
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for airgapped
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for segment_key
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for segment_key
    • + +
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • @@ -212,46 +380,64 @@
      Grade
    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For growth-stack-operator.v2.0.1:

      + + +

    • "WARNING" (growth-stack-operator.v2.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + + +
    +
    +

    NOT USED

    Grade B
    (700)
    Grade D
    (100)
    cortex-certifai-operatorhere-service-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -260,63 +446,76 @@
    Grade

    NOT USED

    USED

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    -
    -

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For hls-service-operator.v0.0.1:

      + +

    • "ERROR" apikey does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" hlsservices.here.com does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for apikey
    • + + + +
    +
    + +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cortex-certifai-operator.v1.3.10:

      - - -

    • "WARNING" (cortex-certifai-operator.v1.3.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For cortex-certifai-operator.v1.3.10:

      +

      For hls-service-operator.v0.0.1:

      -

    • "WARNING" (cortex-certifai-operator.v1.3.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (hls-service-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -326,45 +525,35 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    citrix-ingress-controller-operatoribm-spectrum-scale-csi -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -374,256 +563,195 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-ingress-controller-operator.v1.13.20:

      +

      For ibm-spectrum-scale-csi-operator.v2.2.0:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" snapshotterNodeSelector does not have a spec descriptor
    • -
    • "ERROR" citrixingresscontrollers.citrix.com does not have a status descriptor
    • -
    • "ERROR" exporter does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for snapshotterNodeSelector
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" nsCookieVersion does not have a spec descriptor
    • -
    • "ERROR" podIPsforServiceGroupMembers does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "ERROR" kubernetesURL does not have a spec descriptor
    • +
      +

      For ibm-spectrum-scale-csi-operator.v2.2.0:

      -

    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" nsProtocol does not have a spec descriptor
    • +
    • "WARNING" (ibm-spectrum-scale-csi-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" nsVIP does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" pullPolicy does not have a spec descriptor
    • -
    • "ERROR" routeLabels does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    nutanixcsioperator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" adcCredentialSecret does not have a spec descriptor
    • + +
      +

      For nutanixcsioperator.v0.1.3:

      -

    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • +
    • "ERROR" nutanixcsistorages.crd.nutanix.com does not have a status descriptor
    • -
    • "ERROR" nodeWatch does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • +
    • "ERROR" sidecars does not have a spec descriptor
    • -
    • "ERROR" nsHTTP2ServerSide does not have a spec descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" nsPort does not have a spec descriptor
    • +
    • "ERROR" node does not have a spec descriptor
    • -
    • "ERROR" serviceClass does not have a spec descriptor
    • +
    • "ERROR" provisioner does not have a spec descriptor
    • -
    • "ERROR" coeConfig does not have a spec descriptor
    • +
    • "ERROR" scc does not have a spec descriptor
    • -
    • "ERROR" crds does not have a spec descriptor
    • -
    • "ERROR" ignoreNodeExternalIP does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `provisioner` in NutanixCsiStorage/v1alpha1
    • -
    • "ERROR" logProxy does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `scc` in NutanixCsiStorage/v1alpha1
    • -
    • "ERROR" setAsDefaultIngressClass does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `sidecars` in NutanixCsiStorage/v1alpha1
    • -
    • "ERROR" updateIngressStatus does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in NutanixCsiStorage/v1alpha1
    • -
    • "ERROR" nsSNIPS does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `node` in NutanixCsiStorage/v1alpha1
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for sidecars
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "ERROR" ipam does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for node
    • -
    • "ERROR" namespaceLabels does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for provisioner
    • -
    • "ERROR" entityPrefix does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for scc
    • -
    • "ERROR" nsIP does not have a spec descriptor
    • -
    • "ERROR" openshift does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `adcCredentialSecret` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ipam` in CitrixIngressController/v1alpha1
    • +
      +

      For nutanixcsioperator.v0.1.3:

      -

    • "WARNING" Add CRD validation for spec field `nsCookieVersion` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nsHTTP2ServerSide` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `podIPsforServiceGroupMembers` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `setAsDefaultIngressClass` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `coeConfig` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `crds` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `entityPrefix` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceClass` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `tolerations` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ignoreNodeExternalIP` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `pullPolicy` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `routeLabels` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `updateIngressStatus` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `defaultSSLCertSecret` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `logProxy` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `namespaceLabels` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsSNIPS` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for exporter
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for nsCookieVersion
    • - -
    • "WARNING" Add a spec descriptor for podIPsforServiceGroupMembers
    • - -
    • "WARNING" Add a spec descriptor for ingressClass
    • - -
    • "WARNING" Add a spec descriptor for kubernetesURL
    • - -
    • "WARNING" Add a spec descriptor for license
    • - -
    • "WARNING" Add a spec descriptor for nsProtocol
    • - -
    • "WARNING" Add a spec descriptor for nsVIP
    • - -
    • "WARNING" Add a spec descriptor for pullPolicy
    • - -
    • "WARNING" Add a spec descriptor for routeLabels
    • - -
    • "WARNING" Add a spec descriptor for tolerations
    • - -
    • "WARNING" Add a spec descriptor for adcCredentialSecret
    • - -
    • "WARNING" Add a spec descriptor for defaultSSLCertSecret
    • - -
    • "WARNING" Add a spec descriptor for nodeWatch
    • - -
    • "WARNING" Add a spec descriptor for logLevel
    • - -
    • "WARNING" Add a spec descriptor for nsHTTP2ServerSide
    • - -
    • "WARNING" Add a spec descriptor for nsPort
    • - -
    • "WARNING" Add a spec descriptor for serviceClass
    • - -
    • "WARNING" Add a spec descriptor for coeConfig
    • - -
    • "WARNING" Add a spec descriptor for crds
    • - -
    • "WARNING" Add a spec descriptor for ignoreNodeExternalIP
    • - -
    • "WARNING" Add a spec descriptor for logProxy
    • - -
    • "WARNING" Add a spec descriptor for setAsDefaultIngressClass
    • - -
    • "WARNING" Add a spec descriptor for updateIngressStatus
    • - -
    • "WARNING" Add a spec descriptor for nsSNIPS
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for ipam
    • - -
    • "WARNING" Add a spec descriptor for namespaceLabels
    • - -
    • "WARNING" Add a spec descriptor for entityPrefix
    • - -
    • "WARNING" Add a spec descriptor for nsIP
    • - -
    • "WARNING" Add a spec descriptor for openshift
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For citrix-ingress-controller-operator.v1.13.20:

      - - -

    • "WARNING" (citrix-ingress-controller-operator.v1.13.20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (nutanixcsioperator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -633,28 +761,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (600)
    hazelcast-jet-enterprise-operatorstarburst-enterprise-helm-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -667,437 +795,319 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For hazelcast-jet-enterprise-operator.v0.2.0:

      - -

    • "ERROR" hazelcastjetenterprises.hazelcast.com does not have a status descriptor
    • +

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" jet does not have a spec descriptor
    • +
    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" starburstenterprises.charts.starburstdata.com does not have a status descriptor
    • -
    • "ERROR" cluster does not have a spec descriptor
    • +
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • +
    • "ERROR" initFile does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJetEnterprise/v1alpha1
    • +
    • "ERROR" registryCredentials does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `jet` in HazelcastJetEnterprise/v1alpha1
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJetEnterprise/v1alpha1
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for jet
    • +
    • "ERROR" env does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "ERROR" extraArguments does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cluster
    • +
    • "ERROR" objectStorage does not have a spec descriptor
    • +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" heapSizePercentage does not have a spec descriptor
    • -
      -

      For hazelcast-jet-enterprise-operator.v0.2.0:

      +

    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • -
    • "WARNING" (hazelcast-jet-enterprise-operator.v0.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" database does not have a spec descriptor
    • +
    • "ERROR" envFrom does not have a spec descriptor
    • +
    • "ERROR" expose does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    vfunction-server-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" hdfs does not have a spec descriptor
    • +
    • "ERROR" podAnnotations does not have a spec descriptor
    • -
      -

      For vfunction-server-operator.v2.2.469:

      +

    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" initImage does not have a spec descriptor
    • -
    • "WARNING" (vfunction-server-operator.v2.2.469) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" prometheus does not have a spec descriptor
    • +
    • "ERROR" query does not have a spec descriptor
    • +
    • "ERROR" sharedSecret does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade B
    (800)
    anaconda-team-edition -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" usageMetrics does not have a spec descriptor
    • - -
      -

      For anaconda-team-edition.v6.1.3:

      +

    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" anacondateameditions.anaconda.com does not have a status descriptor
    • +
    • "ERROR" initFile does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" internal does not have a spec descriptor
    • -
    • "ERROR" dispatcher does not have a spec descriptor
    • +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • -
    • "ERROR" route does not have a spec descriptor
    • +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • -
    • "ERROR" postgres does not have a spec descriptor
    • +
    • "ERROR" expose does not have a spec descriptor
    • -
    • "ERROR" proxy does not have a spec descriptor
    • +
    • "ERROR" extraArguments does not have a spec descriptor
    • -
    • "ERROR" redis does not have a spec descriptor
    • +
    • "ERROR" livenessProbe does not have a spec descriptor
    • -
    • "ERROR" storage does not have a spec descriptor
    • +
    • "ERROR" registryCredentials does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" readinessProbe does not have a spec descriptor
    • + +
    • "ERROR" spilling does not have a spec descriptor
    • + +
    • "ERROR" cache does not have a spec descriptor
    • + +
    • "ERROR" catalogs does not have a spec descriptor
    • + +
    • "ERROR" coordinator does not have a spec descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + +
    • "ERROR" externalSecrets does not have a spec descriptor
    • + +
    • "ERROR" extraSecret does not have a spec descriptor
    • + +
    • "ERROR" userDatabase does not have a spec descriptor
    • "ERROR" worker does not have a spec descriptor
    • -
    • "ERROR" api does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `api` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `dispatcher` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `route` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `proxy` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `redis` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `storage` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `worker` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for dispatcher
    • +
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for route
    • +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for proxy
    • +
    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for redis
    • +
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for storage
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for worker
    • +
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for api
    • +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `query` in StarburstEnterprise/v1alpha1
    • -
      -

      For anaconda-team-edition.v6.1.3:

      +

    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" (anaconda-team-edition.v6.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstEnterprise/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade D
    (100)
    cortex-fabric-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstEnterprise/v1alpha1
    • - -
      -

      For cortex-fabric-operator.v1.0.0:

      +

    • "WARNING" Add CRD validation for spec field `initImage` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" kongui does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `internal` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `worker` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `cache` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kongui
    • +
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image` in StarburstEnterprise/v1alpha1
    • -
      -

      For cortex-fabric-operator.v1.0.0:

      +

    • "WARNING" Add CRD validation for spec field `environment` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" kongui does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `spilling` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kongui
    • +
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for initFile
    • -
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for registryCredentials
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for affinity
    • + +
    • "WARNING" Add a spec descriptor for env
    • + +
    • "WARNING" Add a spec descriptor for extraArguments
    • + +
    • "WARNING" Add a spec descriptor for objectStorage
    • + +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • + +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • + +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for database
    • + +
    • "WARNING" Add a spec descriptor for envFrom
    • + +
    • "WARNING" Add a spec descriptor for expose
    • + +
    • "WARNING" Add a spec descriptor for hdfs
    • + +
    • "WARNING" Add a spec descriptor for podAnnotations
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for initImage
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for query
    • + +
    • "WARNING" Add a spec descriptor for sharedSecret
    • + +
    • "WARNING" Add a spec descriptor for usageMetrics
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for initFile
    • + +
    • "WARNING" Add a spec descriptor for internal
    • + +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • + +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • + +
    • "WARNING" Add a spec descriptor for expose
    • + +
    • "WARNING" Add a spec descriptor for extraArguments
    • + +
    • "WARNING" Add a spec descriptor for livenessProbe
    • + +
    • "WARNING" Add a spec descriptor for registryCredentials
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add a spec descriptor for readinessProbe
    • + +
    • "WARNING" Add a spec descriptor for spilling
    • + +
    • "WARNING" Add a spec descriptor for cache
    • + +
    • "WARNING" Add a spec descriptor for catalogs
    • + +
    • "WARNING" Add a spec descriptor for coordinator
    • + +
    • "WARNING" Add a spec descriptor for environment
    • + +
    • "WARNING" Add a spec descriptor for externalSecrets
    • + +
    • "WARNING" Add a spec descriptor for extraSecret
    • + +
    • "WARNING" Add a spec descriptor for userDatabase
    • + +
    • "WARNING" Add a spec descriptor for worker
    • @@ -1108,32 +1118,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cortex-fabric-operator.v1.0.0:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - +

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

      -
      -

      For cortex-fabric-operator.v1.0.0:

      +

    • "WARNING" (starburst-enterprise-helm-operator.v354.0.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["starburstenterprises.charts.starburstdata.com" "starbursthives.charts.starburstdata.com"])
    • @@ -1147,102 +1152,152 @@
      Grade
    crunchy-postgres-operatoranzo-operator

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • v5
    • - -
    -
    -

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For postgresoperator.v4.6.2:

      - -

    • "ERROR" ReplicaStorage does not have a spec descriptor
    • - -
    • "ERROR" user does not have a spec descriptor
    • +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" BackrestStorage does not have a spec descriptor
    • -
    • "ERROR" podAntiAffinity does not have a spec descriptor
    • +
      +

      For anzo-operator.v2.0.101:

      -

    • "ERROR" namespace does not have a spec descriptor
    • +
    • "WARNING" (anzo-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `podAntiAffinity` in Pgcluster/v1
    • -
    • "WARNING" Add CRD validation for spec field `BackrestStorage` in Pgcluster/v1
    • -
    • "WARNING" Add CRD validation for spec field `user` in Pgcluster/v1
    • +
    +
    + +

    NOT USED

    Grade A
    (900)
    cortex-hub-operator +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `ReplicaStorage` in Pgcluster/v1
    • + +
      +

      For cortex-hub-operator.v0.0.25:

      -

    • "WARNING" Add CRD validation for spec field `namespace` in Pgcluster/v1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for ReplicaStorage
    • +
    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for user
    • +
    • "ERROR" hub does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for BackrestStorage
    • +
    • "ERROR" hub-cronjob does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for podAntiAffinity
    • +
    • "ERROR" mongo-uri does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for namespace
    • +
    • "WARNING" Add a spec descriptor for hub
    • -
      -

      For postgresoperator.v5.0.2:

      +

    • "WARNING" Add a spec descriptor for hub-cronjob
    • +
    • "WARNING" Add a spec descriptor for mongo-uri
    • @@ -1253,30 +1308,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For postgresoperator.v4.6.2:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +

      For cortex-hub-operator.v0.0.25:

      -
      -

      For postgresoperator.v5.0.2:

      +

    • "WARNING" (cortex-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -1286,65 +1338,89 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (200)
    ibm-spectrum-scale-csiopenshiftartifactoryha-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • artifactory-ha-operator.v1.1.13
    • + +
    +
    +

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-spectrum-scale-csi-operator.v2.2.0:

      +

      For artifactory-ha-operator.v1.1.13:

      -

    • "ERROR" snapshotterNodeSelector does not have a spec descriptor
    • +
    • "ERROR" openshiftartifactoryhas.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" artifactory-ha does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for snapshotterNodeSelector
    • + +
    • "WARNING" Add a spec descriptor for artifactory-ha
    • + +
    • "WARNING" Add CRD validation for spec field `artifactory-ha` in OpenshiftArtifactoryHa/v1alpha1
    • @@ -1355,27 +1431,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-spectrum-scale-csi-operator.v2.2.0:

      +

      For artifactory-ha-operator.v1.1.13:

      -

    • "WARNING" (ibm-spectrum-scale-csi-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (artifactory-ha-operator.v1.1.13) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -1385,22 +1461,22 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    mongodb-enterprisestorageos2 -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -1409,71 +1485,115 @@
    Grade

    NOT USED

    USED

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For storageosoperator.v2.3.0:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Warning: Value storageos.com/v1, Kind=StorageOSUpgrade: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value storageos.com/v1, Kind=Job: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value storageos.com/v1, Kind=NFSServer: provided API should have an example annotation
    • + + + +
    +
    +
    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For storageosoperator.v2.3.0:

      + + +

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jobs.storageos.com" "nfsservers.storageos.com" "storageosclusters.storageos.com" "storageosupgrades.storageos.com"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + + + +
    +
    +

    NOT USED

    Grade B
    (700)
    Grade D
    (200)
    nutanixcsioperatortransform-adv-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • v2.3
    @@ -1482,71 +1602,174 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For nutanixcsioperator.v0.1.3:

      +

      For ta-operator.v2.3.4:

      -

    • "ERROR" nutanixcsistorages.crd.nutanix.com does not have a status descriptor
    • +
    • "ERROR" demo does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" networkPolicy does not have a spec descriptor
    • -
    • "ERROR" sidecars does not have a spec descriptor
    • +
    • "ERROR" fips does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" couchdb does not have a spec descriptor
    • -
    • "ERROR" node does not have a spec descriptor
    • +
    • "ERROR" transadv does not have a spec descriptor
    • -
    • "ERROR" provisioner does not have a spec descriptor
    • +
    • "ERROR" transadvui does not have a spec descriptor
    • -
    • "ERROR" scc does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • +
    • "ERROR" commonServices does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `provisioner` in NutanixCsiStorage/v1alpha1
    • +
    • "ERROR" route does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `scc` in NutanixCsiStorage/v1alpha1
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `sidecars` in NutanixCsiStorage/v1alpha1
    • +
    • "ERROR" nodePortConfig does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in NutanixCsiStorage/v1alpha1
    • +
    • "ERROR" authentication does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `node` in NutanixCsiStorage/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for sidecars
    • +
    • "WARNING" Add CRD validation for spec field `transadv` in TransAdv/v1
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add CRD validation for spec field `demo` in TransAdv/v1
    • -
    • "WARNING" Add a spec descriptor for node
    • +
    • "WARNING" Add CRD validation for spec field `networkPolicy` in TransAdv/v1
    • -
    • "WARNING" Add a spec descriptor for provisioner
    • +
    • "WARNING" Add CRD validation for spec field `tls` in TransAdv/v1
    • -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "WARNING" Add CRD validation for spec field `fips` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `couchdb` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `transadvui` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `commonServices` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `route` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `nodePortConfig` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `authentication` in TransAdv/v1
    • + +
    • "WARNING" Add a spec descriptor for demo
    • + +
    • "WARNING" Add a spec descriptor for networkPolicy
    • + +
    • "WARNING" Add a spec descriptor for fips
    • + +
    • "WARNING" Add a spec descriptor for couchdb
    • + +
    • "WARNING" Add a spec descriptor for transadv
    • + +
    • "WARNING" Add a spec descriptor for transadvui
    • + +
    • "WARNING" Add a spec descriptor for license
    • + +
    • "WARNING" Add a spec descriptor for commonServices
    • + +
    • "WARNING" Add a spec descriptor for route
    • + +
    • "WARNING" Add a spec descriptor for tls
    • + +
    • "WARNING" Add a spec descriptor for nodePortConfig
    • + +
    • "WARNING" Add a spec descriptor for authentication
    • + + +
      +

      For ta-operator.v2.2.0:

      + +

    • "ERROR" networkPolicy does not have a spec descriptor
    • + +
    • "ERROR" nodePortConfig does not have a spec descriptor
    • + +
    • "ERROR" transadv does not have a spec descriptor
    • + +
    • "ERROR" tls does not have a spec descriptor
    • + +
    • "ERROR" authentication does not have a spec descriptor
    • + +
    • "ERROR" couchdb does not have a spec descriptor
    • + +
    • "ERROR" transadvui does not have a spec descriptor
    • + +
    • "ERROR" commonServices does not have a spec descriptor
    • + +
    • "ERROR" demo does not have a spec descriptor
    • + +
    • "ERROR" route does not have a spec descriptor
    • + +
    • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
    • + + +
    • "WARNING" Add a spec descriptor for networkPolicy
    • + +
    • "WARNING" Add a spec descriptor for nodePortConfig
    • + +
    • "WARNING" Add a spec descriptor for transadv
    • + +
    • "WARNING" Add a spec descriptor for tls
    • + +
    • "WARNING" Add a spec descriptor for authentication
    • + +
    • "WARNING" Add a spec descriptor for couchdb
    • + +
    • "WARNING" Add a spec descriptor for transadvui
    • + +
    • "WARNING" Add a spec descriptor for commonServices
    • + +
    • "WARNING" Add a spec descriptor for demo
    • + +
    • "WARNING" Add a spec descriptor for route
    • + +
    • "WARNING" Add CRD validation for spec field `nodePortConfig` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `route` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `demo` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `networkPolicy` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `tls` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `authentication` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `couchdb` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `transadv` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `transadvui` in TransAdv/v1
    • + +
    • "WARNING" Add CRD validation for spec field `commonServices` in TransAdv/v1
    • @@ -1557,25 +1780,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For nutanixcsioperator.v0.1.3:

      +

      For ta-operator.v2.3.4:

      -

    • "WARNING" (nutanixcsioperator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (ta-operator.v2.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For ta-operator.v2.2.0:

      + + +

    • "WARNING" (ta-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -1585,35 +1819,45 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    tf-operatorxcrypt-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -1621,40 +1865,66 @@
    Grade

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For zts-xcrypt-operator.v0.0.14:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" status does not have a spec descriptor
    • + +
    • "ERROR" xcrypts.xcrypt.zettaset.com does not have a status descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `status` in XCrypt/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for status
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For tf-operator.v0.0.1:

      +

      For zts-xcrypt-operator.v0.0.14:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (zts-xcrypt-operator.v0.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xcrypts.xcrypt.zettaset.com"])
    • @@ -1664,59 +1934,49 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    armory-operatoranzounstructured-operator -

    PARTIAL COMPLY

    +

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • v1alpha2
    • - -
    -
    -

    NOT USED

    NOT USED

    USED

    PASS

    @@ -1725,27 +1985,25 @@
    Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For armory-operator.v1.2.0-ubi:

      - +

      For anzounstructured-operator.v2.0.101:

      -

    • "WARNING" (armory-operator.v1.2.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (anzounstructured-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -1755,89 +2013,155 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade A
    (900)
    openshiftartifactoryha-operatorfep-ansible-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • artifactory-ha-operator.v1.1.13
    • - -
    -
    -

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For artifactory-ha-operator.v1.1.13:

      +

      For fujitsu-enterprise-operator.v2.2.0:

      -

    • "ERROR" openshiftartifactoryhas.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" artifactory-ha does not have a spec descriptor
    • +
    • "ERROR" fepclusters.fep.fujitsu.io does not have a status descriptor
    • +
    • "ERROR" fepactions.fep.fujitsu.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for artifactory-ha
    • +
    • "ERROR" feppgpool2s.fep.fujitsu.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `artifactory-ha` in OpenshiftArtifactoryHa/v1alpha1
    • +
    • "ERROR" feprestores.fep.fujitsu.io does not have a status descriptor
    • + +
    • "ERROR" fepChildCrVal does not have a spec descriptor
    • + +
    • "ERROR" fep does not have a spec descriptor
    • + +
    • "ERROR" fepAction does not have a spec descriptor
    • + +
    • "ERROR" sysExtraLogging does not have a spec descriptor
    • + +
    • "ERROR" targetClusterName does not have a spec descriptor
    • + +
    • "ERROR" fepclustername does not have a spec descriptor
    • + +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • + +
    • "ERROR" customparams does not have a spec descriptor
    • + +
    • "ERROR" toFEPcluster does not have a spec descriptor
    • + +
    • "ERROR" restoretype does not have a spec descriptor
    • + +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • + +
    • "ERROR" mcSpec does not have a spec descriptor
    • + +
    • "ERROR" fromFEPcluster does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for FEPCluster/v2
    • + +
    • "WARNING" Add CRD validation for FEPAction/v1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPPgpool2/v1
    • + +
    • "WARNING" Add CRD validation for spec field `customparams` in FEPPgpool2/v1
    • + +
    • "WARNING" Add CRD validation for spec field `fepclustername` in FEPPgpool2/v1
    • + +
    • "WARNING" Add CRD validation for spec field `toFEPcluster` in FEPRestore/v1
    • + +
    • "WARNING" Add CRD validation for spec field `restoretype` in FEPRestore/v1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPRestore/v1
    • + +
    • "WARNING" Add CRD validation for spec field `mcSpec` in FEPRestore/v1
    • + +
    • "WARNING" Add CRD validation for spec field `fromFEPcluster` in FEPRestore/v1
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPVolume: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPUser: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPBackup: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPPgpool2Cert: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPConfig: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPCert: provided API should have an example annotation
    • + +
    • "WARNING" Add a spec descriptor for fepChildCrVal
    • + +
    • "WARNING" Add a spec descriptor for fep
    • + +
    • "WARNING" Add a spec descriptor for fepAction
    • + +
    • "WARNING" Add a spec descriptor for sysExtraLogging
    • + +
    • "WARNING" Add a spec descriptor for targetClusterName
    • + +
    • "WARNING" Add a spec descriptor for fepclustername
    • + +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • + +
    • "WARNING" Add a spec descriptor for customparams
    • + +
    • "WARNING" Add a spec descriptor for toFEPcluster
    • + +
    • "WARNING" Add a spec descriptor for restoretype
    • + +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • + +
    • "WARNING" Add a spec descriptor for mcSpec
    • + +
    • "WARNING" Add a spec descriptor for fromFEPcluster
    • @@ -1848,27 +2172,39 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For artifactory-ha-operator.v1.1.13:

      +

      For fujitsu-enterprise-operator.v2.2.0:

      -

    • "WARNING" (artifactory-ha-operator.v1.1.13) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (fujitsu-enterprise-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -1882,67 +2218,77 @@
      Grade
    sematextako-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For sematext-operator.v1.0.9:

      +

      For ako-operator.v1.4.2:

      -

    • "ERROR" region does not have a spec descriptor
    • -
    • "ERROR" sematextagents.sematext.com does not have a status descriptor
    • +
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=Gateway: provided API should have an example annotation
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=AviInfraSetting: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HostRule: provided API should have an example annotation
    • -
    • "WARNING" Add CRD validation for SematextAgent/v1alpha1
    • +
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HTTPRule: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for region
    • +
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=GatewayClass: provided API should have an example annotation
    • @@ -1951,29 +2297,41 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For sematext-operator.v1.0.9:

      +

      For ako-operator.v1.4.2:

      +

    • "ERROR" (ako-operator.v1.4.2) csv.Spec.Maintainers email https://github.com/vmware/load-balancer-and-ingress-services-for-kubernetes is invalid: mail: missing '@' or angle-addr
    • -
    • "WARNING" (sematext-operator.v1.0.9) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (ako-operator.v1.4.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -1983,45 +2341,35 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    splunk-certifiedpercona-xtradb-cluster-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -2031,45 +2379,159 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For splunk.v0.1.0:

      +

      For percona-xtradb-cluster-operator.v1.8.0:

      -

    • "ERROR" indexerclusters.enterprise.splunk.com does not have a status descriptor
    • +
    • "ERROR" perconaxtradbclusters.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" licensemasters.enterprise.splunk.com does not have a status descriptor
    • +
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" searchheadclusters.enterprise.splunk.com does not have a status descriptor
    • +
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" sparks.enterprise.splunk.com does not have a status descriptor
    • +
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" standalones.enterprise.splunk.com does not have a status descriptor
    • +
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" secretsName does not have a spec descriptor
    • +
    • "ERROR" vaultSecretName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "ERROR" sslSecretName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "ERROR" sslInternalSecretName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "ERROR" proxysql does not have a spec descriptor
    • + +
    • "ERROR" crVersion does not have a spec descriptor
    • + +
    • "ERROR" logcollector does not have a spec descriptor
    • + +
    • "ERROR" pmm does not have a spec descriptor
    • + +
    • "ERROR" backup does not have a spec descriptor
    • + +
    • "ERROR" updateStrategy does not have a spec descriptor
    • + +
    • "ERROR" haproxy does not have a spec descriptor
    • + +
    • "ERROR" logCollectorSecretName does not have a spec descriptor
    • + +
    • "ERROR" upgradeOptions does not have a spec descriptor
    • + +
    • "ERROR" pxc does not have a spec descriptor
    • + +
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • + +
    • "ERROR" pxcCluster does not have a spec descriptor
    • + +
    • "ERROR" storageName does not have a spec descriptor
    • + +
    • "ERROR" storageName does not have a spec descriptor
    • + +
    • "ERROR" pxcCluster does not have a spec descriptor
    • + +
    • "ERROR" pxcCluster does not have a spec descriptor
    • + +
    • "ERROR" backupName does not have a spec descriptor
    • + +
    • "ERROR" pxcCluster does not have a spec descriptor
    • + +
    • "ERROR" storageName does not have a spec descriptor
    • + +
    • "ERROR" pxcCluster does not have a spec descriptor
    • + +
    • "ERROR" storageName does not have a spec descriptor
    • + +
    • "ERROR" backupName does not have a spec descriptor
    • + +
    • "ERROR" pxcCluster does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for secretsName
    • + +
    • "WARNING" Add a spec descriptor for vaultSecretName
    • + +
    • "WARNING" Add a spec descriptor for sslSecretName
    • + +
    • "WARNING" Add a spec descriptor for sslInternalSecretName
    • + +
    • "WARNING" Add a spec descriptor for proxysql
    • + +
    • "WARNING" Add a spec descriptor for crVersion
    • + +
    • "WARNING" Add a spec descriptor for logcollector
    • + +
    • "WARNING" Add a spec descriptor for pmm
    • + +
    • "WARNING" Add a spec descriptor for backup
    • + +
    • "WARNING" Add a spec descriptor for updateStrategy
    • + +
    • "WARNING" Add a spec descriptor for haproxy
    • + +
    • "WARNING" Add a spec descriptor for logCollectorSecretName
    • + +
    • "WARNING" Add a spec descriptor for upgradeOptions
    • + +
    • "WARNING" Add a spec descriptor for pxc
    • + +
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for backupName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for backupName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBCluster/v1-8-0
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • @@ -2080,25 +2542,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For splunk.v0.1.0:

      +

      For percona-xtradb-cluster-operator.v1.8.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (percona-xtradb-cluster-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaxtradbbackups.pxc.percona.com" "perconaxtradbclusterbackups.pxc.percona.com" "perconaxtradbclusterrestores.pxc.percona.com" "perconaxtradbclusters.pxc.percona.com"])
    • @@ -2112,31 +2576,41 @@
      Grade
    storageos2appsody-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    @@ -2144,68 +2618,42 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For storageosoperator.v2.3.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Warning: Value storageos.com/v1, Kind=StorageOSUpgrade: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value storageos.com/v1, Kind=Job: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value storageos.com/v1, Kind=NFSServer: provided API should have an example annotation
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    -
      + +Info +
      +

        -

        For storageosoperator.v2.3.0:

        - - -

      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jobs.storageos.com" "nfsservers.storageos.com" "storageosclusters.storageos.com" "storageosupgrades.storageos.com"])
      • +

        For appsody-operator.v0.6.1:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (appsody-operator.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -2219,61 +2667,145 @@
        Grade
    xspc-operatorcouchbase-enterprise-certified -

    PARTIAL COMPLY

    +

    COMPLY

    COMPLY

    -

    NOT USED

    +

    USED

    USED

    NOT USED

    -

    ONLY ERRORS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For xspc-operator.1.5.0:

      +

      For couchbase-operator.v2.2.0-1:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" couchbasebuckets.couchbase.com does not have a status descriptor
    • -
    • "ERROR" xspcs.csi.hpe.com does not have a status descriptor
    • +
    • "ERROR" couchbaseephemeralbuckets.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbasememcachedbuckets.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbaseusers.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbasegroups.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbaserolebindings.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbasereplications.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbasebackups.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbasebackuprestores.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" couchbaseautoscalers.couchbase.com does not have a status descriptor
    • + +
    • "ERROR" enablePreviewScaling does not have a spec descriptor
    • + +
    • "ERROR" upgradeStrategy does not have a spec descriptor
    • +
    • "ERROR" recoveryPolicy does not have a spec descriptor
    • + +
    • "ERROR" xdcr does not have a spec descriptor
    • + +
    • "ERROR" logRetentionCount does not have a spec descriptor
    • + +
    • "ERROR" cluster does not have a spec descriptor
    • + +
    • "ERROR" hibernate does not have a spec descriptor
    • + +
    • "ERROR" backup does not have a spec descriptor
    • + +
    • "ERROR" hibernationStrategy does not have a spec descriptor
    • + +
    • "ERROR" monitoring does not have a spec descriptor
    • + +
    • "ERROR" logRetentionTime does not have a spec descriptor
    • + +
    • "ERROR" logRetention does not have a spec descriptor
    • + +
    • "ERROR" start does not have a spec descriptor
    • + +
    • "ERROR" end does not have a spec descriptor
    • + +
    • "ERROR" servers does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `logRetentionCount` in CouchbaseCluster/v2
    • + +
    • "WARNING" Add CRD validation for spec field `logRetentionTime` in CouchbaseCluster/v2
    • + +
    • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackup/v2
    • + +
    • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackupRestore/v2
    • + +
    • "WARNING" Add a spec descriptor for enablePreviewScaling
    • + +
    • "WARNING" Add a spec descriptor for upgradeStrategy
    • + +
    • "WARNING" Add a spec descriptor for recoveryPolicy
    • + +
    • "WARNING" Add a spec descriptor for xdcr
    • + +
    • "WARNING" Add a spec descriptor for logRetentionCount
    • + +
    • "WARNING" Add a spec descriptor for cluster
    • + +
    • "WARNING" Add a spec descriptor for hibernate
    • + +
    • "WARNING" Add a spec descriptor for backup
    • + +
    • "WARNING" Add a spec descriptor for hibernationStrategy
    • + +
    • "WARNING" Add a spec descriptor for monitoring
    • + +
    • "WARNING" Add a spec descriptor for logRetentionTime
    • + +
    • "WARNING" Add a spec descriptor for logRetention
    • + +
    • "WARNING" Add a spec descriptor for start
    • + +
    • "WARNING" Add a spec descriptor for end
    • + +
    • "WARNING" Add a spec descriptor for servers
    • @@ -2282,366 +2814,193 @@
      Grade
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For xspc-operator.1.5.0:

      - - -

    • "WARNING" (xspc-operator.1.5.0) csv.metadata.Name xspc-operator.1.5.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    -

    NOT USED

    Grade C
    (400)
    Grade B
    (800)
    citrix-cpx-with-ingress-controller-operatorfalco-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-cpx-with-ingress-controller-operator.v1.13.20:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" citrixcpxwithingresscontrollers.citrix.com does not have a status descriptor
    • - -
    • "ERROR" ipam does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • - -
    • "ERROR" sslCertManagedByAWS does not have a spec descriptor
    • - -
    • "ERROR" crds does not have a spec descriptor
    • - -
    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • - -
    • "ERROR" logProxy does not have a spec descriptor
    • - -
    • "ERROR" mgmtHttpPort does not have a spec descriptor
    • - -
    • "ERROR" routeLabels does not have a spec descriptor
    • - -
    • "ERROR" serviceAnnotations does not have a spec descriptor
    • - -
    • "ERROR" serviceType does not have a spec descriptor
    • +

      For falco-operator.v1.2.0:

      -

    • "ERROR" setAsDefaultIngressClass does not have a spec descriptor
    • +
    • "ERROR" falcos.falco.org does not have a status descriptor
    • -
    • "ERROR" azure does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" coeConfig does not have a spec descriptor
    • -
    • "ERROR" entityPrefix does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for Falco/v1
    • -
    • "ERROR" exporter does not have a spec descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "ERROR" updateIngressStatus does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" cic does not have a spec descriptor
    • -
    • "ERROR" namespaceLabels does not have a spec descriptor
    • +
      +

      For falco-operator.v1.2.0:

      -

    • "ERROR" cpxBgpRouter does not have a spec descriptor
    • -
    • "ERROR" bgpSettings does not have a spec descriptor
    • +
    • "WARNING" (falco-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" pullPolicy does not have a spec descriptor
    • - -
    • "ERROR" tolerations does not have a spec descriptor
    • - -
    • "ERROR" ADMSettings does not have a spec descriptor
    • - -
    • "ERROR" ingressClass does not have a spec descriptor
    • - -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" nsCookieVersion does not have a spec descriptor
    • - -
    • "ERROR" nsGateway does not have a spec descriptor
    • - -
    • "ERROR" nsHTTP2ServerSide does not have a spec descriptor
    • - -
    • "ERROR" aws does not have a spec descriptor
    • - -
    • "ERROR" nsIP does not have a spec descriptor
    • - -
    • "ERROR" mgmtHttpsPort does not have a spec descriptor
    • - -
    • "ERROR" ingressIP does not have a spec descriptor
    • - -
    • "ERROR" kubernetesURL does not have a spec descriptor
    • - -
    • "ERROR" nsProtocol does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `aws` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `cpxBgpRouter` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `mgmtHttpsPort` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `namespaceLabels` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsCookieVersion` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsGateway` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `logProxy` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `mgmtHttpPort` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `tolerations` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `bgpSettings` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `cic` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingressIP` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceAnnotations` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `setAsDefaultIngressClass` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `entityPrefix` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `pullPolicy` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `routeLabels` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ADMSettings` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `updateIngressStatus` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsHTTP2ServerSide` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `azure` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `coeConfig` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `crds` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `defaultSSLCertSecret` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ipam` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `license` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceType` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `sslCertManagedByAWS` in CitrixCpxWithIngressController/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for ipam
    • - -
    • "WARNING" Add a spec descriptor for license
    • - -
    • "WARNING" Add a spec descriptor for openshift
    • - -
    • "WARNING" Add a spec descriptor for sslCertManagedByAWS
    • - -
    • "WARNING" Add a spec descriptor for crds
    • - -
    • "WARNING" Add a spec descriptor for defaultSSLCertSecret
    • - -
    • "WARNING" Add a spec descriptor for logProxy
    • - -
    • "WARNING" Add a spec descriptor for mgmtHttpPort
    • - -
    • "WARNING" Add a spec descriptor for routeLabels
    • - -
    • "WARNING" Add a spec descriptor for serviceAnnotations
    • - -
    • "WARNING" Add a spec descriptor for serviceType
    • - -
    • "WARNING" Add a spec descriptor for setAsDefaultIngressClass
    • - -
    • "WARNING" Add a spec descriptor for azure
    • - -
    • "WARNING" Add a spec descriptor for coeConfig
    • - -
    • "WARNING" Add a spec descriptor for entityPrefix
    • - -
    • "WARNING" Add a spec descriptor for exporter
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for updateIngressStatus
    • - -
    • "WARNING" Add a spec descriptor for cic
    • - -
    • "WARNING" Add a spec descriptor for namespaceLabels
    • - -
    • "WARNING" Add a spec descriptor for cpxBgpRouter
    • - -
    • "WARNING" Add a spec descriptor for bgpSettings
    • - -
    • "WARNING" Add a spec descriptor for pullPolicy
    • - -
    • "WARNING" Add a spec descriptor for tolerations
    • - -
    • "WARNING" Add a spec descriptor for ADMSettings
    • - -
    • "WARNING" Add a spec descriptor for ingressClass
    • - -
    • "WARNING" Add a spec descriptor for logLevel
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for nsCookieVersion
    • - -
    • "WARNING" Add a spec descriptor for nsGateway
    • - -
    • "WARNING" Add a spec descriptor for nsHTTP2ServerSide
    • - -
    • "WARNING" Add a spec descriptor for aws
    • - -
    • "WARNING" Add a spec descriptor for nsIP
    • - -
    • "WARNING" Add a spec descriptor for mgmtHttpsPort
    • - -
    • "WARNING" Add a spec descriptor for ingressIP
    • - -
    • "WARNING" Add a spec descriptor for kubernetesURL
    • - -
    • "WARNING" Add a spec descriptor for nsProtocol
    • - -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    +

    NOT USED

    Grade D
    (200)
    hedvig-operator +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    PASS

    + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-cpx-with-ingress-controller-operator.v1.13.20:

      +

      For hedvig-operator.v1.0.1:

      -

    • "WARNING" (citrix-cpx-with-ingress-controller-operator.v1.13.20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (hedvig-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -2651,45 +3010,35 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (400)
    cockroachdb-certifiedmongodb-enterprise -

    COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    -

    NOT USED

    @@ -2697,84 +3046,30 @@
    Grade

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For cockroach-operator.v2.1.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • - - -
      -

      For cockroach-operator.v2.1.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • - - - -
    -
    -
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For cockroach-operator.v2.1.0:

      - - -

    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - - -
      -

      For cockroach-operator.v2.1.0:

      - - -

    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - - - -
    -
    -

    NOT USED

    open-liberty-certifiedstonebranch-universalagent-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -2812,11 +3107,11 @@
    Grade

    NOT USED

    @@ -2826,45 +3121,123 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For open-liberty-operator.v0.7.0:

      +

      For universalagent-operator.v1.0.0:

      -

    • "ERROR" podName does not have a spec descriptor
    • +
    • "ERROR" stonebranches.agent.stonebranch.com does not have a status descriptor
    • -
    • "ERROR" include does not have a spec descriptor
    • +
    • "ERROR" configmap does not have a spec descriptor
    • -
    • "ERROR" podName does not have a spec descriptor
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "ERROR" traceSpecification does not have a spec descriptor
    • +
    • "ERROR" podSecurityContext does not have a spec descriptor
    • + +
    • "ERROR" serviceAccount does not have a spec descriptor
    • + +
    • "ERROR" udmlicense does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • + +
    • "ERROR" ingress does not have a spec descriptor
    • + +
    • "ERROR" namespace does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" service does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" replicaCount does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" openlibertydumps.openliberty.io does not have a status descriptor
    • -
    • "ERROR" openlibertytraces.openliberty.io does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in Stonebranch/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in Stonebranch/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for podName
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in Stonebranch/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for include
    • +
    • "WARNING" Add CRD validation for spec field `namespace` in Stonebranch/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for podName
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Stonebranch/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for traceSpecification
    • +
    • "WARNING" Add CRD validation for spec field `podSecurityContext` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `service` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `configmap` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `udmlicense` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `replicaCount` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `securityContext` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tolerations` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `affinity` in Stonebranch/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for configmap
    • + +
    • "WARNING" Add a spec descriptor for nameOverride
    • + +
    • "WARNING" Add a spec descriptor for podSecurityContext
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • + +
    • "WARNING" Add a spec descriptor for udmlicense
    • + +
    • "WARNING" Add a spec descriptor for affinity
    • + +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • + +
    • "WARNING" Add a spec descriptor for ingress
    • + +
    • "WARNING" Add a spec descriptor for namespace
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for service
    • + +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for replicaCount
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • @@ -2875,27 +3248,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For open-liberty-operator.v0.7.0:

      +

      For universalagent-operator.v1.0.0:

      -

    • "WARNING" (open-liberty-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (universalagent-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -2905,32 +3278,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    ovms-operatoranaconda-team-edition -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -2939,205 +3312,89 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For openvino-operator.v0.0.1:

      - -

    • "ERROR" modelservers.intel.com does not have a status descriptor
    • +

      For anaconda-team-edition.v6.1.3:

      -

    • "ERROR" notebooks.intel.com does not have a status descriptor
    • +
    • "ERROR" anacondateameditions.anaconda.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" aws_access_key_id does not have a spec descriptor
    • - -
    • "ERROR" config_configmap_name does not have a spec descriptor
    • - -
    • "ERROR" plugin_config does not have a spec descriptor
    • - -
    • "ERROR" shape does not have a spec descriptor
    • - -
    • "ERROR" service_type does not have a spec descriptor
    • - -
    • "ERROR" image_name does not have a spec descriptor
    • - -
    • "ERROR" models_host_path does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" file_system_poll_wait_seconds does not have a spec descriptor
    • - -
    • "ERROR" model_name does not have a spec descriptor
    • - -
    • "ERROR" model_path does not have a spec descriptor
    • - -
    • "ERROR" rest_port does not have a spec descriptor
    • - -
    • "ERROR" security_context does not have a spec descriptor
    • - -
    • "ERROR" annotations does not have a spec descriptor
    • - -
    • "ERROR" batch_size does not have a spec descriptor
    • - -
    • "ERROR" models_volume_claim does not have a spec descriptor
    • - -
    • "ERROR" gcp_creds_secret_name does not have a spec descriptor
    • - -
    • "ERROR" https_proxy does not have a spec descriptor
    • - -
    • "ERROR" target_device does not have a spec descriptor
    • - -
    • "ERROR" aws_region does not have a spec descriptor
    • - -
    • "ERROR" grpc_port does not have a spec descriptor
    • - -
    • "ERROR" model_version_policy does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" aws_secret_access_key does not have a spec descriptor
    • - -
    • "ERROR" log_level does not have a spec descriptor
    • - -
    • "ERROR" nireq does not have a spec descriptor
    • - -
    • "ERROR" s3_compat_api_endpoint does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `rest_port` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `shape` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `target_device` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `grpc_port` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nireq` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `replicas` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `annotations` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `service_type` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `s3_compat_api_endpoint` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `config_configmap_name` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `models_volume_claim` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `plugin_config` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `aws_access_key_id` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `aws_region` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `log_level` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `security_context` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `model_name` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `model_path` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `aws_secret_access_key` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `file_system_poll_wait_seconds` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `gcp_creds_secret_name` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `models_host_path` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `model_version_policy` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `batch_size` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `https_proxy` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image_name` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for aws_access_key_id
    • - -
    • "WARNING" Add a spec descriptor for config_configmap_name
    • - -
    • "WARNING" Add a spec descriptor for plugin_config
    • +
    • "ERROR" dispatcher does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for shape
    • +
    • "ERROR" route does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for service_type
    • +
    • "ERROR" postgres does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image_name
    • +
    • "ERROR" proxy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for models_host_path
    • +
    • "ERROR" redis does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "ERROR" storage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for file_system_poll_wait_seconds
    • +
    • "ERROR" worker does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for model_name
    • +
    • "ERROR" api does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for model_path
    • -
    • "WARNING" Add a spec descriptor for rest_port
    • +
    • "WARNING" Add CRD validation for spec field `api` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for security_context
    • +
    • "WARNING" Add CRD validation for spec field `dispatcher` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for annotations
    • +
    • "WARNING" Add CRD validation for spec field `route` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for batch_size
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for models_volume_claim
    • +
    • "WARNING" Add CRD validation for spec field `proxy` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for gcp_creds_secret_name
    • +
    • "WARNING" Add CRD validation for spec field `redis` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for https_proxy
    • +
    • "WARNING" Add CRD validation for spec field `storage` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for target_device
    • +
    • "WARNING" Add CRD validation for spec field `worker` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for aws_region
    • +
    • "WARNING" Add a spec descriptor for dispatcher
    • -
    • "WARNING" Add a spec descriptor for grpc_port
    • +
    • "WARNING" Add a spec descriptor for route
    • -
    • "WARNING" Add a spec descriptor for model_version_policy
    • +
    • "WARNING" Add a spec descriptor for postgres
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for proxy
    • -
    • "WARNING" Add a spec descriptor for aws_secret_access_key
    • +
    • "WARNING" Add a spec descriptor for redis
    • -
    • "WARNING" Add a spec descriptor for log_level
    • +
    • "WARNING" Add a spec descriptor for storage
    • -
    • "WARNING" Add a spec descriptor for nireq
    • +
    • "WARNING" Add a spec descriptor for worker
    • -
    • "WARNING" Add a spec descriptor for s3_compat_api_endpoint
    • +
    • "WARNING" Add a spec descriptor for api
    • @@ -3146,27 +3403,33 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For openvino-operator.v0.0.1:

      +

      For anaconda-team-edition.v6.1.3:

      +

    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "WARNING" (openvino-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • + + +
    • "WARNING" (anaconda-team-edition.v6.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -3176,22 +3439,22 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (0)
    percona-xtradb-cluster-operator-certifiedanzograph-operator -

    PARTIAL COMPLY

    +

    COMPLY

    COMPLY

    @@ -3200,295 +3463,359 @@
    Grade

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For percona-xtradb-cluster-operator.v1.8.0:

      - -

    • "ERROR" perconaxtradbclusters.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" secretsName does not have a spec descriptor
    • - -
    • "ERROR" vaultSecretName does not have a spec descriptor
    • - -
    • "ERROR" sslSecretName does not have a spec descriptor
    • - -
    • "ERROR" sslInternalSecretName does not have a spec descriptor
    • +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" proxysql does not have a spec descriptor
    • -
    • "ERROR" crVersion does not have a spec descriptor
    • +
      +

      For anzograph-operator.v2.0.102:

      -

    • "ERROR" logcollector does not have a spec descriptor
    • -
    • "ERROR" pmm does not have a spec descriptor
    • +
    • "WARNING" (anzograph-operator.v2.0.102) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" backup does not have a spec descriptor
    • -
    • "ERROR" updateStrategy does not have a spec descriptor
    • -
    • "ERROR" haproxy does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade A
    (900)
    citrix-ingress-controller-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" logCollectorSecretName does not have a spec descriptor
    • + +
      +

      For citrix-ingress-controller-operator.v1.13.20:

      -

    • "ERROR" upgradeOptions does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" pxc does not have a spec descriptor
    • +
    • "ERROR" citrixingresscontrollers.citrix.com does not have a status descriptor
    • -
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • +
    • "ERROR" exporter does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" storageName does not have a spec descriptor
    • +
    • "ERROR" nsCookieVersion does not have a spec descriptor
    • -
    • "ERROR" storageName does not have a spec descriptor
    • +
    • "ERROR" podIPsforServiceGroupMembers does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    • "ERROR" kubernetesURL does not have a spec descriptor
    • -
    • "ERROR" backupName does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    • "ERROR" nsProtocol does not have a spec descriptor
    • -
    • "ERROR" storageName does not have a spec descriptor
    • +
    • "ERROR" nsVIP does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    • "ERROR" pullPolicy does not have a spec descriptor
    • -
    • "ERROR" storageName does not have a spec descriptor
    • +
    • "ERROR" routeLabels does not have a spec descriptor
    • -
    • "ERROR" backupName does not have a spec descriptor
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    • "ERROR" adcCredentialSecret does not have a spec descriptor
    • +
    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for secretsName
    • +
    • "ERROR" nodeWatch does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for vaultSecretName
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for sslSecretName
    • +
    • "ERROR" nsHTTP2ServerSide does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for sslInternalSecretName
    • +
    • "ERROR" nsPort does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for proxysql
    • +
    • "ERROR" serviceClass does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for crVersion
    • +
    • "ERROR" coeConfig does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for logcollector
    • +
    • "ERROR" crds does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pmm
    • +
    • "ERROR" ignoreNodeExternalIP does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for backup
    • +
    • "ERROR" logProxy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for updateStrategy
    • +
    • "ERROR" setAsDefaultIngressClass does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for haproxy
    • +
    • "ERROR" updateIngressStatus does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for logCollectorSecretName
    • +
    • "ERROR" nsSNIPS does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for upgradeOptions
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pxc
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • +
    • "ERROR" ipam does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "ERROR" namespaceLabels does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "ERROR" entityPrefix does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "ERROR" nsIP does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • -
    • "WARNING" Add a spec descriptor for backupName
    • +
    • "WARNING" Add CRD validation for spec field `adcCredentialSecret` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add CRD validation for spec field `ipam` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "WARNING" Add CRD validation for spec field `nsCookieVersion` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add CRD validation for spec field `nsHTTP2ServerSide` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "WARNING" Add CRD validation for spec field `podIPsforServiceGroupMembers` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for backupName
    • +
    • "WARNING" Add CRD validation for spec field `setAsDefaultIngressClass` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add CRD validation for spec field `coeConfig` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBCluster/v1-8-0
    • +
    • "WARNING" Add CRD validation for spec field `crds` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • +
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • +
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • +
    • "WARNING" Add CRD validation for spec field `entityPrefix` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `serviceClass` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `tolerations` in CitrixIngressController/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `ignoreNodeExternalIP` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • -
      -

      For percona-xtradb-cluster-operator.v1.8.0:

      +

    • "WARNING" Add CRD validation for spec field `nodeSelector` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" (percona-xtradb-cluster-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `pullPolicy` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaxtradbbackups.pxc.percona.com" "perconaxtradbclusterbackups.pxc.percona.com" "perconaxtradbclusterrestores.pxc.percona.com" "perconaxtradbclusters.pxc.percona.com"])
    • +
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `routeLabels` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    zoperator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - +
  • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `updateIngressStatus` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `defaultSSLCertSecret` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `logProxy` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `namespaceLabels` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `nsSNIPS` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
  • + +
  • "WARNING" Add a spec descriptor for exporter
  • + +
  • "WARNING" Add a spec descriptor for nodeSelector
  • + +
  • "WARNING" Add a spec descriptor for nsCookieVersion
  • + +
  • "WARNING" Add a spec descriptor for podIPsforServiceGroupMembers
  • + +
  • "WARNING" Add a spec descriptor for ingressClass
  • + +
  • "WARNING" Add a spec descriptor for kubernetesURL
  • + +
  • "WARNING" Add a spec descriptor for license
  • + +
  • "WARNING" Add a spec descriptor for nsProtocol
  • + +
  • "WARNING" Add a spec descriptor for nsVIP
  • + +
  • "WARNING" Add a spec descriptor for pullPolicy
  • + +
  • "WARNING" Add a spec descriptor for routeLabels
  • + +
  • "WARNING" Add a spec descriptor for tolerations
  • + +
  • "WARNING" Add a spec descriptor for adcCredentialSecret
  • + +
  • "WARNING" Add a spec descriptor for defaultSSLCertSecret
  • + +
  • "WARNING" Add a spec descriptor for nodeWatch
  • + +
  • "WARNING" Add a spec descriptor for logLevel
  • + +
  • "WARNING" Add a spec descriptor for nsHTTP2ServerSide
  • + +
  • "WARNING" Add a spec descriptor for nsPort
  • + +
  • "WARNING" Add a spec descriptor for serviceClass
  • + +
  • "WARNING" Add a spec descriptor for coeConfig
  • + +
  • "WARNING" Add a spec descriptor for crds
  • + +
  • "WARNING" Add a spec descriptor for ignoreNodeExternalIP
  • + +
  • "WARNING" Add a spec descriptor for logProxy
  • + +
  • "WARNING" Add a spec descriptor for setAsDefaultIngressClass
  • + +
  • "WARNING" Add a spec descriptor for updateIngressStatus
  • + +
  • "WARNING" Add a spec descriptor for nsSNIPS
  • + +
  • "WARNING" Add a spec descriptor for serviceAccount
  • + +
  • "WARNING" Add a spec descriptor for image
  • + +
  • "WARNING" Add a spec descriptor for ipam
  • + +
  • "WARNING" Add a spec descriptor for namespaceLabels
  • + +
  • "WARNING" Add a spec descriptor for entityPrefix
  • + +
  • "WARNING" Add a spec descriptor for nsIP
  • + +
  • "WARNING" Add a spec descriptor for openshift
  • + + + + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For zoperator.v0.3.6:

      +

      For citrix-ingress-controller-operator.v1.13.20:

      -

    • "WARNING" (zoperator.v0.3.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (citrix-ingress-controller-operator.v1.13.20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -3498,28 +3825,28 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    cic-operator-with-crdsopenshiftxray-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -3530,145 +3857,57 @@
      Grade
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • xray-operator.v2.0.4
    • + +
    +
    +

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-api-gateway-operator.v0.0.1:

      - -

    • "ERROR" citrixingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • - -
    • "ERROR" nodeWatch does not have a spec descriptor
    • - -
    • "ERROR" nsVIP does not have a spec descriptor
    • - -
    • "ERROR" cic does not have a spec descriptor
    • - -
    • "ERROR" ingressClass does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" nsIP does not have a spec descriptor
    • - -
    • "ERROR" nsNamespace does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • - -
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • - -
    • "ERROR" loginFileName does not have a spec descriptor
    • - -
    • "ERROR" nsPort does not have a spec descriptor
    • - -
    • "ERROR" nsProtocol does not have a spec descriptor
    • - -
    • "ERROR" exporter does not have a spec descriptor
    • - -
    • "ERROR" kubernetesURL does not have a spec descriptor
    • - -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for nodeWatch
    • - -
    • "WARNING" Add a spec descriptor for nsVIP
    • - -
    • "WARNING" Add a spec descriptor for cic
    • - -
    • "WARNING" Add a spec descriptor for ingressClass
    • - -
    • "WARNING" Add a spec descriptor for license
    • - -
    • "WARNING" Add a spec descriptor for nsIP
    • - -
    • "WARNING" Add a spec descriptor for nsNamespace
    • - -
    • "WARNING" Add a spec descriptor for openshift
    • - -
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • - -
    • "WARNING" Add a spec descriptor for loginFileName
    • - -
    • "WARNING" Add a spec descriptor for nsPort
    • - -
    • "WARNING" Add a spec descriptor for nsProtocol
    • - -
    • "WARNING" Add a spec descriptor for exporter
    • - -
    • "WARNING" Add a spec descriptor for kubernetesURL
    • - -
    • "WARNING" Add a spec descriptor for logLevel
    • - -
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `cic` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `loginFileName` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Warning: Value citrix.com/v1, Kind=vip: provided API should have an example annotation
    • +

      For xray-operator.v2.0.4:

      -

    • "WARNING" Warning: Value citrix.com/v1, Kind=rewritepolicy: provided API should have an example annotation
    • +
    • "ERROR" openshiftxrays.charts.helm.k8s.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=authpolicy: provided API should have an example annotation
    • +
    • "ERROR" xray does not have a spec descriptor
    • -
    • "WARNING" Warning: Value citrix.com/v1alpha1, Kind=HTTPRoute: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value citrix.com/v1alpha1, Kind=Listener: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `xray` in OpenshiftXray/v1alpha1
    • -
    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=ratelimit: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for xray
    • @@ -3679,39 +3918,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-api-gateway-operator.v0.0.1:

      - - -

    • "WARNING" (citrix-api-gateway-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • +

      For xray-operator.v2.0.4:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (xray-operator.v2.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftxrays.charts.helm.k8s.io"])
    • @@ -3721,35 +3948,45 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    ciliumaikit-operator

    COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -3759,65 +3996,45 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cilium.v1.10.3-x49b6fc1:

      - -

    • "ERROR" cni does not have a spec descriptor
    • - -
    • "ERROR" ipam does not have a spec descriptor
    • - -
    • "ERROR" prometheus does not have a spec descriptor
    • - -
    • "ERROR" hubble does not have a spec descriptor
    • - -
    • "ERROR" nativeRoutingCIDR does not have a spec descriptor
    • - -
    • "ERROR" endpointRoutes does not have a spec descriptor
    • - -
    • "ERROR" kubeProxyReplacement does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `ipam` in CiliumConfig/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `prometheus` in CiliumConfig/v1alpha1
    • +

      For aikit-operator.2021.2.0:

      -

    • "WARNING" Add CRD validation for spec field `hubble` in CiliumConfig/v1alpha1
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nativeRoutingCIDR` in CiliumConfig/v1alpha1
    • +
    • "ERROR" imagestream does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `endpointRoutes` in CiliumConfig/v1alpha1
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `kubeProxyReplacement` in CiliumConfig/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `cni` in CiliumConfig/v1alpha1
    • +
    • "ERROR" aikitoperators.aikit.intel does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for cni
    • -
    • "WARNING" Add a spec descriptor for ipam
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "WARNING" Add a spec descriptor for imagestream
    • -
    • "WARNING" Add a spec descriptor for hubble
    • +
    • "WARNING" Add a spec descriptor for nameOverride
    • -
    • "WARNING" Add a spec descriptor for nativeRoutingCIDR
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in AIKitOperator/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for endpointRoutes
    • +
    • "WARNING" Add CRD validation for spec field `imagestream` in AIKitOperator/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kubeProxyReplacement
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in AIKitOperator/v1alpha1
    • @@ -3828,25 +4045,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cilium.v1.10.3-x49b6fc1:

      +

      For aikit-operator.2021.2.0:

      -

    • "WARNING" (cilium.v1.10.3-x49b6fc1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (aikit-operator.2021.2.0) csv.metadata.Name aikit-operator.2021.2.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • @@ -3856,103 +4073,117 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade C
    (500)
    synopsys-certifiedbacula-operator2 -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For synopsys-operator.2019.8.4:

      +

      For bacula-operator.v0.0.1:

      -

    • "ERROR" secretName does not have a spec descriptor
    • +
    • "ERROR" baculae.bacula.baculasystems does not have a status descriptor
    • -
    • "ERROR" exposeService does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" encryptionPassword does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" encryptionGlobalSalt does not have a spec descriptor
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "ERROR" alertMemory does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" persistentStorage does not have a spec descriptor
    • +
    • "ERROR" service does not have a spec descriptor
    • -
    • "ERROR" pvcSize does not have a spec descriptor
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "ERROR" cfsslMemory does not have a spec descriptor
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "ERROR" pvcStorageClass does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for OpsSight/v1
    • +
    • "WARNING" Add CRD validation for spec field `service` in Bacula/v1
    • -
    • "WARNING" Add CRD validation for Blackduck/v1
    • +
    • "WARNING" Add CRD validation for spec field `tolerations` in Bacula/v1
    • -
    • "WARNING" Add CRD validation for Alert/v1
    • +
    • "WARNING" Add CRD validation for spec field `affinity` in Bacula/v1
    • -
    • "WARNING" Add a spec descriptor for secretName
    • +
    • "WARNING" Add CRD validation for spec field `image` in Bacula/v1
    • -
    • "WARNING" Add a spec descriptor for exposeService
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Bacula/v1
    • -
    • "WARNING" Add a spec descriptor for encryptionPassword
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in Bacula/v1
    • -
    • "WARNING" Add a spec descriptor for encryptionGlobalSalt
    • +
    • "WARNING" Add CRD validation for spec field `resources` in Bacula/v1
    • -
    • "WARNING" Add a spec descriptor for alertMemory
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add a spec descriptor for persistentStorage
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "WARNING" Add a spec descriptor for pvcSize
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for cfsslMemory
    • +
    • "WARNING" Add a spec descriptor for service
    • -
    • "WARNING" Add a spec descriptor for pvcStorageClass
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for affinity
    • + +
    • "WARNING" Add a spec descriptor for image
    • @@ -3963,27 +4194,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For synopsys-operator.2019.8.4:

      +

      For bacula-operator.v0.0.1:

      -

    • "WARNING" (synopsys-operator.2019.8.4) csv.metadata.Name synopsys-operator.2019.8.4 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (bacula-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -3993,87 +4224,95 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    anchore-enginefp-predict-plus-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For anchore-engine.v1.0.0:

      +

      For fp-predict-plus-operator.v0.0.4:

      -

    • "ERROR" anchoreengines.charts.anchore.io does not have a status descriptor
    • +
    • "ERROR" fppredictplus.apm.fp-predict-plus.findabilityplatform.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" serviceConfig does not have a spec descriptor
    • -
    • "ERROR" anchoreGlobal does not have a spec descriptor
    • +
    • "ERROR" deploymentConfig does not have a spec descriptor
    • -
    • "ERROR" postgresql does not have a spec descriptor
    • +
    • "ERROR" imagePullConfig does not have a spec descriptor
    • +
    • "ERROR" pvcConfig does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `anchoreGlobal` in AnchoreEngine/v1alpha1
    • +
    • "ERROR" routeConfig does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `postgresql` in AnchoreEngine/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for anchoreGlobal
    • -
    • "WARNING" Add a spec descriptor for postgresql
    • +
    • "WARNING" Add a spec descriptor for serviceConfig
    • + +
    • "WARNING" Add a spec descriptor for deploymentConfig
    • + +
    • "WARNING" Add a spec descriptor for imagePullConfig
    • + +
    • "WARNING" Add a spec descriptor for pvcConfig
    • + +
    • "WARNING" Add a spec descriptor for routeConfig
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullConfig` in FPpredictplus/v1
    • + +
    • "WARNING" Add CRD validation for spec field `pvcConfig` in FPpredictplus/v1
    • + +
    • "WARNING" Add CRD validation for spec field `routeConfig` in FPpredictplus/v1
    • + +
    • "WARNING" Add CRD validation for spec field `serviceConfig` in FPpredictplus/v1
    • + +
    • "WARNING" Add CRD validation for spec field `deploymentConfig` in FPpredictplus/v1
    • @@ -4084,27 +4323,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For anchore-engine.v1.0.0:

      +

      For fp-predict-plus-operator.v0.0.4:

      -

    • "WARNING" (anchore-engine.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (fp-predict-plus-operator.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anchoreengines.charts.anchore.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -4114,45 +4353,35 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    akka-cluster-operator-certifiedibm-spectrum-symphony-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    -

    NOT USED

    @@ -4160,58 +4389,42 @@
    Grade

    NOT USED

    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For akka-cluster-operator-certified.v1.0.0:

      - - -

    • "WARNING" Add CRD validation for spec field `replicas` in AkkaCluster/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `template` in AkkaCluster/v1alpha1
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For akka-cluster-operator-certified.v1.0.0:

      +

      For ibm-spectrum-symphony-operator.v1.1.1:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (ibm-spectrum-symphony-operator.v1.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["symphonyclusters.symphony.spectrumcomputing.ibm.com"])
    • @@ -4221,35 +4434,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (400)
    ibm-spectrum-symphony-operatorlinstor-operator -

    PARTIAL COMPLY

    +

    COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -4259,11 +4482,11 @@
    Grade

    PASS

    @@ -4272,27 +4495,32 @@
    Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-spectrum-symphony-operator.v1.1.1:

      +

      For linstor-operator.v1.5.1:

      -

    • "WARNING" (ibm-spectrum-symphony-operator.v1.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["symphonyclusters.symphony.spectrumcomputing.ibm.com"])
    • + +
      +

      For linstor-operator.v1.5.1:

      + + +

    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -4302,28 +4530,28 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade B
    (700)
    ibm-taspmem-csi-operator-os -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -4336,11 +4564,11 @@
      Grade

    NOT USED

    @@ -4350,107 +4578,48 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-tas.v0.0.1:

      - -

    • "ERROR" sid does not have a spec descriptor
    • - -
    • "ERROR" contextpath does not have a spec descriptor
    • - -
    • "ERROR" dbapassword does not have a spec descriptor
    • - -
    • "ERROR" dbname does not have a spec descriptor
    • - -
    • "ERROR" dbusername does not have a spec descriptor
    • - -
    • "ERROR" javamax does not have a spec descriptor
    • - -
    • "ERROR" javamin does not have a spec descriptor
    • - -
    • "ERROR" dbausername does not have a spec descriptor
    • - -
    • "ERROR" dbdnsname does not have a spec descriptor
    • - -
    • "ERROR" dbpassword does not have a spec descriptor
    • - -
    • "ERROR" dbport does not have a spec descriptor
    • - -
    • "ERROR" dbtype does not have a spec descriptor
    • - -
    • "ERROR" size does not have a spec descriptor
    • - -
    • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" tririgas.tas.ibm.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for sid
    • - -
    • "WARNING" Add a spec descriptor for contextpath
    • - -
    • "WARNING" Add a spec descriptor for dbapassword
    • - -
    • "WARNING" Add a spec descriptor for dbname
    • - -
    • "WARNING" Add a spec descriptor for dbusername
    • - -
    • "WARNING" Add a spec descriptor for javamax
    • - -
    • "WARNING" Add a spec descriptor for javamin
    • - -
    • "WARNING" Add a spec descriptor for dbausername
    • - -
    • "WARNING" Add a spec descriptor for dbdnsname
    • - -
    • "WARNING" Add a spec descriptor for dbpassword
    • +

      For pmem-csi-operator.v1.0.0:

      -

    • "WARNING" Add a spec descriptor for dbport
    • +
    • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for dbtype
    • +
    • "ERROR" deviceMode does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `size` in Tririga/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `dbpassword` in Tririga/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for deviceMode
    • -
    • "WARNING" Add CRD validation for spec field `dbtype` in Tririga/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add CRD validation for spec field `sid` in Tririga/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `dbdnsname` in Tririga/v1alpha1
    • +
      +

      For pmem-csi-operator.v1.0.0:

      -

    • "WARNING" Add CRD validation for spec field `dbname` in Tririga/v1alpha1
    • +
    • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `dbport` in Tririga/v1alpha1
    • +
    • "ERROR" deviceMode does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `dbusername` in Tririga/v1alpha1
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `javamax` in Tririga/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `contextpath` in Tririga/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for deviceMode
    • -
    • "WARNING" Add CRD validation for spec field `dbapassword` in Tririga/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `dbausername` in Tririga/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `javamin` in Tririga/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • @@ -4459,77 +4628,49 @@
      Grade
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For ibm-tas.v0.0.1:

      - - -

    • "WARNING" (ibm-tas.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • - - - -
    -
    -

    NOT USED

    Grade D
    (300)
    Grade B
    (700)
    insightedge-enterprise-operator2vfunction-server-operator -

    PARTIAL COMPLY

    +

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -4537,74 +4678,40 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For insightedge-enterprise-operator.v15.0.1:

      - -

    • "ERROR" pu does not have a spec descriptor
    • - -
    • "ERROR" zeppelin does not have a spec descriptor
    • - -
    • "ERROR" manager does not have a spec descriptor
    • - -
    • "ERROR" insightedges.insightedge.gigaspaces.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for pu
    • - -
    • "WARNING" Add a spec descriptor for zeppelin
    • - -
    • "WARNING" Add a spec descriptor for manager
    • - -
    • "WARNING" Add CRD validation for Insightedge/v1alpha1
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For insightedge-enterprise-operator.v15.0.1:

      - +

      For vfunction-server-operator.v2.2.469:

      -

    • "WARNING" (insightedge-enterprise-operator.v15.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (vfunction-server-operator.v2.2.469) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -4614,28 +4721,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade B
    (800)
    aikit-operatorcyberarmor-operator-certified -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -4648,11 +4755,11 @@
      Grade

    NOT USED

    @@ -4662,45 +4769,89 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For aikit-operator.2021.2.0:

      +

      For cyberarmor-operator.0.0.1:

      -

    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" imagestream does not have a spec descriptor
    • +
    • "ERROR" cyberarmors.apm.cyberarmor.com does not have a status descriptor
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "ERROR" cyberarmornamespaces.apm.cyberarmor.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" caK8sReportUrl does not have a spec descriptor
    • -
    • "ERROR" aikitoperators.aikit.intel does not have a status descriptor
    • +
    • "ERROR" caCustomerGuid does not have a spec descriptor
    • +
    • "ERROR" caPostman does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "ERROR" caClusterGuid does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagestream
    • +
    • "ERROR" caloginInfo does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "ERROR" caDashboardBackend does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in AIKitOperator/v1alpha1
    • +
    • "ERROR" caPortalBackend does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagestream` in AIKitOperator/v1alpha1
    • +
    • "ERROR" caClusterName does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nameOverride` in AIKitOperator/v1alpha1
    • +
    • "ERROR" caMasterNotificationServerHost does not have a spec descriptor
    • + +
    • "ERROR" cyberArmorNameSpace does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for caK8sReportUrl
    • + +
    • "WARNING" Add a spec descriptor for caCustomerGuid
    • + +
    • "WARNING" Add a spec descriptor for caPostman
    • + +
    • "WARNING" Add a spec descriptor for caClusterGuid
    • + +
    • "WARNING" Add a spec descriptor for caloginInfo
    • + +
    • "WARNING" Add a spec descriptor for caDashboardBackend
    • + +
    • "WARNING" Add a spec descriptor for caPortalBackend
    • + +
    • "WARNING" Add a spec descriptor for caClusterName
    • + +
    • "WARNING" Add a spec descriptor for caMasterNotificationServerHost
    • + +
    • "WARNING" Add a spec descriptor for cyberArmorNameSpace
    • + +
    • "WARNING" Add CRD validation for spec field `caClusterName` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caK8sReportUrl` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caPortalBackend` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caPostman` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caMasterNotificationServerHost` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caloginInfo` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caDashboardBackend` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caCustomerGuid` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caClusterGuid` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cyberArmorNameSpace` in Cyberarmornamespace/v1alpha1
    • @@ -4711,25 +4862,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For aikit-operator.2021.2.0:

      +

      For cyberarmor-operator.0.0.1:

      -

    • "WARNING" (aikit-operator.2021.2.0) csv.metadata.Name aikit-operator.2021.2.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (cyberarmor-operator.0.0.1) csv.metadata.Name cyberarmor-operator.0.0.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -4739,35 +4892,45 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    traefikee-redhat-certifiedf5-bigip-ctlr-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    @@ -4777,31 +4940,53 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For traefikee-redhat-certified.v2.0.2:

      +

      For f5-bigip-ctlr-operator.v1.8.0:

      -

    • "ERROR" traefikees.containo.us does not have a status descriptor
    • +
    • "ERROR" args does not have a spec descriptor
    • -
    • "ERROR" cluster does not have a spec descriptor
    • +
    • "ERROR" bigip_login_secret does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for Traefikee/v1alpha1
    • +
    • "ERROR" namespace does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cluster
    • +
    • "ERROR" rbac does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" serviceAccount does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for F5BigIpCtlr/v1
    • + +
    • "WARNING" Add a spec descriptor for args
    • + +
    • "WARNING" Add a spec descriptor for bigip_login_secret
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for namespace
    • + +
    • "WARNING" Add a spec descriptor for rbac
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • @@ -4812,27 +4997,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For traefikee-redhat-certified.v2.0.2:

      - +

      For f5-bigip-ctlr-operator.v1.8.0:

      -

    • "WARNING" (traefikee-redhat-certified.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["f5bigipctlrs.cis.f5.com"])
    • @@ -4842,168 +5025,65 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    densify-operatoriomesh-operator -

    PARTIAL COMPLY

    +

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    • v1.0
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For densify-operator.v0.0.2:

      - -

    • "ERROR" affinity does not have a spec descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" pullPolicy does not have a spec descriptor
    • - -
    • "ERROR" replicaCount does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • +

      For iomesh-operator.v0.0.1:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" densifies.densify.com does not have a status descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • - -
    • "WARNING" Add a spec descriptor for affinity
    • - -
    • "WARNING" Add a spec descriptor for config
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for pullPolicy
    • - -
    • "WARNING" Add a spec descriptor for replicaCount
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - - -
      -

      For densify-operator.v1.0.1:

      - -

    • "ERROR" densifies.densify.com does not have a status descriptor
    • - -
    • "ERROR" affinity does not have a spec descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" pullPolicy does not have a spec descriptor
    • - -
    • "ERROR" replicaCount does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for affinity
    • - -
    • "WARNING" Add a spec descriptor for config
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for pullPolicy
    • - -
    • "WARNING" Add a spec descriptor for replicaCount
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • +
    • "WARNING" Warning: Value : (iomesh-operator.v0.0.1) example annotations not found
    • @@ -5012,38 +5092,31 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For densify-operator.v0.0.2:

      - - -

    • "WARNING" (densify-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - +

      For iomesh-operator.v0.0.1:

      -
      -

      For densify-operator.v1.0.1:

      +

    • "ERROR" (iomesh-operator.v0.0.1) csv.Spec.Icon elements should contain both data and mediatype
    • -
    • "WARNING" (densify-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (iomesh-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (iomesh-operator.v0.0.1) example annotations not found
    • @@ -5053,35 +5126,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (500)
    elasticsearch-eck-operator-certifiedivory-server-app -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -5091,139 +5174,33 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For elasticsearch-eck-operator-certified.v1.7.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" elasticsearches.elasticsearch.k8s.elastic.co does not have a status descriptor
    • - -
    • "ERROR" kibanas.kibana.k8s.elastic.co does not have a status descriptor
    • - -
    • "ERROR" apmservers.apm.k8s.elastic.co does not have a status descriptor
    • - -
    • "ERROR" enterprisesearches.enterprisesearch.k8s.elastic.co does not have a status descriptor
    • - -
    • "ERROR" beats.beat.k8s.elastic.co does not have a status descriptor
    • - -
    • "ERROR" agents.agent.k8s.elastic.co does not have a status descriptor
    • - -
    • "ERROR" elasticmapsservers.maps.k8s.elastic.co does not have a status descriptor
    • +

      For ivory-server-operator.v1.0.0:

      -

    • "ERROR" version does not have a spec descriptor
    • +
    • "ERROR" ivoryservers.ivoryserver.gtsoftware.com does not have a status descriptor
    • -
    • "ERROR" nodeSets does not have a spec descriptor
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" count does not have a spec descriptor
    • -
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "ERROR" podTemplate does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" count does not have a spec descriptor
    • - -
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" count does not have a spec descriptor
    • - -
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" deployment does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" elasticsearchRefs does not have a spec descriptor
    • - -
    • "ERROR" daemonSet does not have a spec descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" count does not have a spec descriptor
    • - -
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for nodeSets
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for count
    • - -
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • - -
    • "WARNING" Add a spec descriptor for podTemplate
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for count
    • - -
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for config
    • - -
    • "WARNING" Add a spec descriptor for count
    • - -
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • - -
    • "WARNING" Add a spec descriptor for config
    • - -
    • "WARNING" Add a spec descriptor for deployment
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for elasticsearchRefs
    • - -
    • "WARNING" Add a spec descriptor for daemonSet
    • - -
    • "WARNING" Add a spec descriptor for config
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for count
    • - -
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • +
    • "WARNING" Add CRD validation for IvoryServer/v1alpha1
    • @@ -5232,49 +5209,77 @@
      Grade
    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For ivory-server-operator.v1.0.0:

      + + +

    • "WARNING" (ivory-server-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + + +
    +
    +

    NOT USED

    Grade B
    (700)
    Grade D
    (100)
    fp-predict-plus-operator-certifiedneuvector-certified-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    @@ -5284,57 +5289,89 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For fp-predict-plus-operator.v0.0.4:

      +

      For neuvector-operator.v1.2.8:

      -

    • "ERROR" fppredictplus.apm.fp-predict-plus.findabilityplatform.com does not have a status descriptor
    • +
    • "ERROR" psp does not have a spec descriptor
    • -
    • "ERROR" serviceConfig does not have a spec descriptor
    • +
    • "ERROR" enforcer does not have a spec descriptor
    • -
    • "ERROR" deploymentConfig does not have a spec descriptor
    • +
    • "ERROR" cve does not have a spec descriptor
    • -
    • "ERROR" imagePullConfig does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" pvcConfig does not have a spec descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "ERROR" routeConfig does not have a spec descriptor
    • +
    • "ERROR" manager does not have a spec descriptor
    • + +
    • "ERROR" docker does not have a spec descriptor
    • + +
    • "ERROR" admissionwebhook does not have a spec descriptor
    • + +
    • "ERROR" crdwebhook does not have a spec descriptor
    • + +
    • "ERROR" openshift does not have a spec descriptor
    • + +
    • "ERROR" controller does not have a spec descriptor
    • + +
    • "ERROR" k3s does not have a spec descriptor
    • + +
    • "ERROR" bottlerocket does not have a spec descriptor
    • + +
    • "ERROR" containerd does not have a spec descriptor
    • + +
    • "ERROR" crio does not have a spec descriptor
    • + +
    • "ERROR" neuvectors.apm.neuvector.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for serviceConfig
    • +
    • "WARNING" Add a spec descriptor for psp
    • -
    • "WARNING" Add a spec descriptor for deploymentConfig
    • +
    • "WARNING" Add a spec descriptor for enforcer
    • -
    • "WARNING" Add a spec descriptor for imagePullConfig
    • +
    • "WARNING" Add a spec descriptor for cve
    • -
    • "WARNING" Add a spec descriptor for pvcConfig
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for routeConfig
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add CRD validation for spec field `imagePullConfig` in FPpredictplus/v1
    • +
    • "WARNING" Add a spec descriptor for manager
    • -
    • "WARNING" Add CRD validation for spec field `pvcConfig` in FPpredictplus/v1
    • +
    • "WARNING" Add a spec descriptor for docker
    • -
    • "WARNING" Add CRD validation for spec field `routeConfig` in FPpredictplus/v1
    • +
    • "WARNING" Add a spec descriptor for admissionwebhook
    • -
    • "WARNING" Add CRD validation for spec field `serviceConfig` in FPpredictplus/v1
    • +
    • "WARNING" Add a spec descriptor for crdwebhook
    • -
    • "WARNING" Add CRD validation for spec field `deploymentConfig` in FPpredictplus/v1
    • +
    • "WARNING" Add a spec descriptor for openshift
    • + +
    • "WARNING" Add a spec descriptor for controller
    • + +
    • "WARNING" Add a spec descriptor for k3s
    • + +
    • "WARNING" Add a spec descriptor for bottlerocket
    • + +
    • "WARNING" Add a spec descriptor for containerd
    • + +
    • "WARNING" Add a spec descriptor for crio
    • + +
    • "WARNING" Add CRD validation for Neuvector/v1alpha1
    • @@ -5345,27 +5382,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For fp-predict-plus-operator.v0.0.4:

      +

      For neuvector-operator.v1.2.8:

      -

    • "WARNING" (fp-predict-plus-operator.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (neuvector-operator.v1.2.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -5375,35 +5412,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    nxrm-operator-certifiedorca -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    @@ -5411,107 +5458,170 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For nxrm-operator-certified.v3.32.0-1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" nexusrepos.sonatype.com does not have a status descriptor
    • - -
    • "ERROR" deploymentStrategy does not have a spec descriptor
    • +

      For orca-operator.v1.0.197:

      -

    • "ERROR" ingress does not have a spec descriptor
    • -
    • "ERROR" nexusProxyRoute does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `kube_platform` in Orca/v1alpha1
    • -
    • "ERROR" persistence does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `namespace` in Orca/v1alpha1
    • -
    • "ERROR" route does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `project` in Orca/v1alpha1
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `components` in Orca/v1alpha1
    • -
    • "ERROR" statefulset does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `domain` in Orca/v1alpha1
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `endpoints` in Orca/v1alpha1
    • -
    • "ERROR" deployment does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `ignored_config_maps` in Orca/v1alpha1
    • -
    • "ERROR" nexus does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `images` in Orca/v1alpha1
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for status field `phase` in Orca/v1alpha1
    • -
    • "ERROR" secret does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `mode` in Policy/v1
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `networkPolicyAllowAll` in Policy/v1
    • +
    • "WARNING" Add CRD validation for spec field `rules` in Policy/v1
    • -
    • "WARNING" Add CRD validation for spec field `route` in NexusRepo/v1alpha1
    • +
    • "WARNING" Add CRD validation for status field `phase` in Policy/v1
    • -
    • "WARNING" Add CRD validation for spec field `service` in NexusRepo/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `tolerations` in NexusRepo/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `deployment` in NexusRepo/v1alpha1
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `nexus` in NexusRepo/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in NexusRepo/v1alpha1
    • +
      +

      For orca-operator.v1.0.197:

      -

    • "WARNING" Add CRD validation for spec field `nexusProxyRoute` in NexusRepo/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `persistence` in NexusRepo/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in NexusRepo/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `secret` in NexusRepo/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `statefulset` in NexusRepo/v1alpha1
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    perceptilabs-operator-package +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `config` in NexusRepo/v1alpha1
    • + +
      +

      For perceptilabs-operator.v1.0.21:

      -

    • "WARNING" Add CRD validation for spec field `deploymentStrategy` in NexusRepo/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for deploymentStrategy
    • +
    • "ERROR" perceptilabs.perceptilabs.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "ERROR" ryggPvc does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nexusProxyRoute
    • +
    • "ERROR" coreGpus does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistence
    • +
    • "ERROR" license_name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for route
    • +
    • "ERROR" license_value does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "ERROR" corePvc does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for statefulset
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "WARNING" Add CRD validation for PerceptiLabs/v1
    • -
    • "WARNING" Add a spec descriptor for deployment
    • +
    • "WARNING" Add a spec descriptor for ryggPvc
    • -
    • "WARNING" Add a spec descriptor for nexus
    • +
    • "WARNING" Add a spec descriptor for coreGpus
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add a spec descriptor for license_name
    • -
    • "WARNING" Add a spec descriptor for secret
    • +
    • "WARNING" Add a spec descriptor for license_value
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "WARNING" Add a spec descriptor for corePvc
    • @@ -5522,27 +5632,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For nxrm-operator-certified.v3.32.0-1:

      +

      For perceptilabs-operator.v1.0.21:

      -

    • "WARNING" (nxrm-operator-certified.v3.32.0-1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (perceptilabs-operator.v1.0.21) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nexusrepos.sonatype.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -5552,353 +5662,137 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    presto-operatorpercona-server-mongodb-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For starburst-presto-helm-operator.v350.1.1-ubi:

      +

      For percona-server-mongodb-operator.v1.8.0:

      -

    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • +
    • "ERROR" secrets does not have a spec descriptor
    • -
    • "ERROR" starburstprestoes.charts.starburstdata.com does not have a status descriptor
    • +
    • "ERROR" pmm does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" replsets does not have a spec descriptor
    • -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • +
    • "ERROR" sharding does not have a spec descriptor
    • -
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • +
    • "ERROR" backup does not have a spec descriptor
    • -
    • "ERROR" heapSizePercentage does not have a spec descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" updateStrategy does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" upgradeOptions does not have a spec descriptor
    • -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • +
    • "ERROR" mongod does not have a spec descriptor
    • -
    • "ERROR" initFile does not have a spec descriptor
    • +
    • "ERROR" crVersion does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" extraArguments does not have a spec descriptor
    • +
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • -
    • "ERROR" hdfs does not have a spec descriptor
    • +
    • "ERROR" psmdbCluster does not have a spec descriptor
    • -
    • "ERROR" objectStorage does not have a spec descriptor
    • +
    • "ERROR" storageName does not have a spec descriptor
    • -
    • "ERROR" registryCredentials does not have a spec descriptor
    • +
    • "ERROR" backupName does not have a spec descriptor
    • -
    • "ERROR" env does not have a spec descriptor
    • +
    • "ERROR" clusterName does not have a spec descriptor
    • -
    • "ERROR" envFrom does not have a spec descriptor
    • +
    • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
    • -
    • "ERROR" expose does not have a spec descriptor
    • +
    • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for secrets
    • -
    • "ERROR" database does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for pmm
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replsets
    • -
    • "ERROR" cache does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for sharding
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for backup
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • - -
    • "ERROR" initImage does not have a spec descriptor
    • - -
    • "ERROR" prometheus does not have a spec descriptor
    • - -
    • "ERROR" securityContext does not have a spec descriptor
    • - -
    • "ERROR" catalogs does not have a spec descriptor
    • - -
    • "ERROR" externalSecrets does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" initFile does not have a spec descriptor
    • - -
    • "ERROR" readinessProbe does not have a spec descriptor
    • - -
    • "ERROR" spilling does not have a spec descriptor
    • - -
    • "ERROR" extraArguments does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • - -
    • "ERROR" registryCredentials does not have a spec descriptor
    • - -
    • "ERROR" sharedSecret does not have a spec descriptor
    • - -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • - -
    • "ERROR" usageMetrics does not have a spec descriptor
    • - -
    • "ERROR" userDatabase does not have a spec descriptor
    • - -
    • "ERROR" worker does not have a spec descriptor
    • - -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • - -
    • "ERROR" coordinator does not have a spec descriptor
    • - -
    • "ERROR" expose does not have a spec descriptor
    • - -
    • "ERROR" extraSecret does not have a spec descriptor
    • - -
    • "ERROR" internal does not have a spec descriptor
    • - -
    • "ERROR" livenessProbe does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `initImage` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `environment` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `cache` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `query` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `internal` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `spilling` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `worker` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstPresto/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • - -
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • - -
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for tolerations
    • - -
    • "WARNING" Add a spec descriptor for additionalVolumes
    • - -
    • "WARNING" Add a spec descriptor for initFile
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add a spec descriptor for extraArguments
    • - -
    • "WARNING" Add a spec descriptor for hdfs
    • - -
    • "WARNING" Add a spec descriptor for objectStorage
    • - -
    • "WARNING" Add a spec descriptor for registryCredentials
    • - -
    • "WARNING" Add a spec descriptor for env
    • - -
    • "WARNING" Add a spec descriptor for envFrom
    • - -
    • "WARNING" Add a spec descriptor for expose
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for podAnnotations
    • - -
    • "WARNING" Add a spec descriptor for affinity
    • - -
    • "WARNING" Add a spec descriptor for database
    • - -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • - -
    • "WARNING" Add a spec descriptor for cache
    • - -
    • "WARNING" Add a spec descriptor for environment
    • - -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • - -
    • "WARNING" Add a spec descriptor for initImage
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "WARNING" Add a spec descriptor for updateStrategy
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add a spec descriptor for upgradeOptions
    • -
    • "WARNING" Add a spec descriptor for catalogs
    • +
    • "WARNING" Add a spec descriptor for mongod
    • -
    • "WARNING" Add a spec descriptor for externalSecrets
    • +
    • "WARNING" Add a spec descriptor for crVersion
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for initFile
    • - -
    • "WARNING" Add a spec descriptor for readinessProbe
    • - -
    • "WARNING" Add a spec descriptor for spilling
    • - -
    • "WARNING" Add a spec descriptor for extraArguments
    • - -
    • "WARNING" Add a spec descriptor for query
    • - -
    • "WARNING" Add a spec descriptor for registryCredentials
    • - -
    • "WARNING" Add a spec descriptor for sharedSecret
    • - -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • - -
    • "WARNING" Add a spec descriptor for usageMetrics
    • - -
    • "WARNING" Add a spec descriptor for userDatabase
    • +
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • -
    • "WARNING" Add a spec descriptor for worker
    • +
    • "WARNING" Add a spec descriptor for psmdbCluster
    • -
    • "WARNING" Add a spec descriptor for additionalVolumes
    • +
    • "WARNING" Add a spec descriptor for storageName
    • -
    • "WARNING" Add a spec descriptor for coordinator
    • +
    • "WARNING" Add a spec descriptor for backupName
    • -
    • "WARNING" Add a spec descriptor for expose
    • +
    • "WARNING" Add a spec descriptor for clusterName
    • -
    • "WARNING" Add a spec descriptor for extraSecret
    • +
    • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-8-0
    • -
    • "WARNING" Add a spec descriptor for internal
    • +
    • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
    • -
    • "WARNING" Add a spec descriptor for livenessProbe
    • +
    • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
    • @@ -5909,27 +5803,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For starburst-presto-helm-operator.v350.1.1-ubi:

      +

      For percona-server-mongodb-operator.v1.8.0:

      -

    • "WARNING" (starburst-presto-helm-operator.v350.1.1-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (percona-server-mongodb-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
    • @@ -5939,32 +5833,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    stonebranch-universalagent-operator-certifiedarmory-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • v1alpha2
    @@ -5973,11 +5867,11 @@
    Grade

    NOT USED

    @@ -5985,123 +5879,128 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For universalagent-operator.v1.0.0:

      - -

    • "ERROR" stonebranches.agent.stonebranch.com does not have a status descriptor
    • - -
    • "ERROR" configmap does not have a spec descriptor
    • - -
    • "ERROR" nameOverride does not have a spec descriptor
    • - -
    • "ERROR" podSecurityContext does not have a spec descriptor
    • - -
    • "ERROR" serviceAccount does not have a spec descriptor
    • - -
    • "ERROR" udmlicense does not have a spec descriptor
    • - -
    • "ERROR" affinity does not have a spec descriptor
    • - -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "ERROR" namespace does not have a spec descriptor
    • +
      +

      For armory-operator.v1.2.0-ubi:

      -

    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "WARNING" (armory-operator.v1.2.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    hazelcast-enterprise-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" securityContext does not have a spec descriptor
    • + +
      +

      For hazelcast-enterprise-operator.v0.3.7:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" hazelcast does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingress` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nameOverride` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `namespace` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `podSecurityContext` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `service` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `configmap` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `udmlicense` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `replicaCount` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `securityContext` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `tolerations` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `affinity` in Stonebranch/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for configmap
    • - -
    • "WARNING" Add a spec descriptor for nameOverride
    • - -
    • "WARNING" Add a spec descriptor for podSecurityContext
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for udmlicense
    • - -
    • "WARNING" Add a spec descriptor for affinity
    • - -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • - -
    • "WARNING" Add a spec descriptor for ingress
    • - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for service
    • +
    • "ERROR" securityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "ERROR" hazelcastenterprises.hazelcast.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add CRD validation for HazelcastEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for hazelcast
    • "WARNING" Add a spec descriptor for securityContext
    • @@ -6114,27 +6013,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For universalagent-operator.v1.0.0:

      +

      For hazelcast-enterprise-operator.v0.3.7:

      -

    • "WARNING" (universalagent-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (hazelcast-enterprise-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -6144,28 +6043,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    blackduck-connector-operatorportworx-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -6178,141 +6077,50 @@
      Grade

    NOT USED

    USED

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY ERRORS

    - +Info -
    + +Info +

      -

      For blackduck-connector-operator.v1.0.0:

      +

      For portworx-operator.v1.5.0:

      -

    • "ERROR" imageGetter does not have a spec descriptor
    • +
    • "ERROR" error spec does not exist
    • -
    • "ERROR" podProcessor does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" processor does not have a spec descriptor
    • -
    • "ERROR" quayProcessor does not have a spec descriptor
    • -
    • "ERROR" status does not have a spec descriptor
    • +
      +

      For portworx-operator.v1.5.0:

      -

    • "ERROR" artifactoryProcessor does not have a spec descriptor
    • +
    • "ERROR" error spec does not exist
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • - -
    • "ERROR" registry does not have a spec descriptor
    • - -
    • "ERROR" scanner does not have a spec descriptor
    • - -
    • "ERROR" prometheus does not have a spec descriptor
    • - -
    • "ERROR" blackduck does not have a spec descriptor
    • - -
    • "ERROR" core does not have a spec descriptor
    • - -
    • "ERROR" externalBlackDuck does not have a spec descriptor
    • - -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • - -
    • "ERROR" imageProcessor does not have a spec descriptor
    • - -
    • "ERROR" imageTag does not have a spec descriptor
    • - -
    • "ERROR" securedRegistries does not have a spec descriptor
    • - -
    • "ERROR" blackduckconnectors.charts.synopsys.com does not have a status descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `status` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `processor` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `scanner` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `prometheus` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `blackduck` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imageGetter` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imageTag` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nameOverride` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `registry` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `quayProcessor` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `artifactoryProcessor` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `core` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imageProcessor` in BlackduckConnector/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for imageGetter
    • - -
    • "WARNING" Add a spec descriptor for podProcessor
    • - -
    • "WARNING" Add a spec descriptor for processor
    • - -
    • "WARNING" Add a spec descriptor for quayProcessor
    • - -
    • "WARNING" Add a spec descriptor for status
    • - -
    • "WARNING" Add a spec descriptor for artifactoryProcessor
    • - -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • - -
    • "WARNING" Add a spec descriptor for nameOverride
    • - -
    • "WARNING" Add a spec descriptor for registry
    • - -
    • "WARNING" Add a spec descriptor for scanner
    • - -
    • "WARNING" Add a spec descriptor for prometheus
    • - -
    • "WARNING" Add a spec descriptor for blackduck
    • - -
    • "WARNING" Add a spec descriptor for core
    • - -
    • "WARNING" Add a spec descriptor for externalBlackDuck
    • - -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • - -
    • "WARNING" Add a spec descriptor for imageProcessor
    • - -
    • "WARNING" Add a spec descriptor for imageTag
    • - -
    • "WARNING" Add a spec descriptor for securedRegistries
    • @@ -6321,31 +6129,34 @@
      Grade
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For blackduck-connector-operator.v1.0.0:

      +

      For portworx-operator.v1.5.0:

      -

    • "ERROR" (blackduck-connector-operator.v1.0.0) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
    • -
    • "WARNING" (blackduck-connector-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
      +

      For portworx-operator.v1.5.0:

      + + +

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
    • @@ -6355,28 +6166,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    citrix-adc-istio-ingress-gateway-operatork10-kasten-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -6389,11 +6200,11 @@
      Grade

    NOT USED

    @@ -6403,188 +6214,264 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-adc-istio-ingress-gateway-operator.v0.9.5:

      +

      For k10-helm-operator.2.5.18:

      -

    • "ERROR" metricExporter does not have a spec descriptor
    • +
    • "ERROR" scc does not have a spec descriptor
    • -
    • "ERROR" xDSAdaptor does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ADMSettings does not have a spec descriptor
    • +
    • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
    • -
    • "ERROR" certProvider does not have a spec descriptor
    • -
    • "ERROR" citrixCPX does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for scc
    • -
    • "ERROR" coe does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
    • -
    • "ERROR" ingressGateway does not have a spec descriptor
    • -
    • "ERROR" istioPilot does not have a spec descriptor
    • +
      +

      For k10-kasten-operator.4.0.6000:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
    • -
    • "ERROR" citrix-adc-istio-ingress-gateways.citrix.citrix.com does not have a status descriptor
    • +
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "ERROR" scc does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for metricExporter
    • +
    • "ERROR" dexImage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for xDSAdaptor
    • +
    • "ERROR" externalGateway does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ADMSettings
    • +
    • "ERROR" genericVolumeSnapshot does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for certProvider
    • +
    • "ERROR" global does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for citrixCPX
    • +
    • "ERROR" injectKanisterSidecar does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for coe
    • +
    • "ERROR" secrets does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ingressGateway
    • +
    • "ERROR" service does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for istioPilot
    • +
    • "ERROR" apiservices does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `certProvider` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" cacertconfigmap does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `citrixCPX` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" executorReplicas does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `coe` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ingressGateway` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" route does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `istioPilot` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" auth does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `metricExporter` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" gateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `xDSAdaptor` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ADMSettings` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • +
    • "ERROR" kanister does not have a spec descriptor
    • +
    • "ERROR" kanisterPodCustomAnnotations does not have a spec descriptor
    • +
    • "ERROR" metering does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" services does not have a spec descriptor
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
      -

      For citrix-adc-istio-ingress-gateway-operator.v0.9.5:

      +

    • "ERROR" prometheus does not have a spec descriptor
    • +
    • "ERROR" eula does not have a spec descriptor
    • -
    • "WARNING" (citrix-adc-istio-ingress-gateway-operator.v0.9.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrix-adc-istio-ingress-gateways.citrix.citrix.com"])
    • +
    • "ERROR" license does not have a spec descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" toolsImage does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    here-service-operator-certified -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" networkPolicy does not have a spec descriptor
    • - -
      -

      For hls-service-operator.v0.0.1:

      +

    • "ERROR" ambassadorImage does not have a spec descriptor
    • -
    • "ERROR" apikey does not have a spec descriptor
    • +
    • "ERROR" cluster does not have a spec descriptor
    • + +
    • "ERROR" clusterName does not have a spec descriptor
    • + +
    • "ERROR" jaeger does not have a spec descriptor
    • + +
    • "ERROR" kanisterToolsImage does not have a spec descriptor
    • + +
    • "ERROR" apigateway does not have a spec descriptor
    • + +
    • "ERROR" kanisterPodCustomLabels does not have a spec descriptor
    • + +
    • "ERROR" limiter does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" hlsservices.here.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for rbac
    • + +
    • "WARNING" Add a spec descriptor for scc
    • -
    • "WARNING" Add a spec descriptor for apikey
    • +
    • "WARNING" Add a spec descriptor for dexImage
    • + +
    • "WARNING" Add a spec descriptor for externalGateway
    • + +
    • "WARNING" Add a spec descriptor for genericVolumeSnapshot
    • + +
    • "WARNING" Add a spec descriptor for global
    • + +
    • "WARNING" Add a spec descriptor for injectKanisterSidecar
    • + +
    • "WARNING" Add a spec descriptor for secrets
    • + +
    • "WARNING" Add a spec descriptor for service
    • + +
    • "WARNING" Add a spec descriptor for apiservices
    • + +
    • "WARNING" Add a spec descriptor for cacertconfigmap
    • + +
    • "WARNING" Add a spec descriptor for executorReplicas
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for route
    • + +
    • "WARNING" Add a spec descriptor for auth
    • + +
    • "WARNING" Add a spec descriptor for gateway
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for kanister
    • + +
    • "WARNING" Add a spec descriptor for kanisterPodCustomAnnotations
    • + +
    • "WARNING" Add a spec descriptor for metering
    • + +
    • "WARNING" Add a spec descriptor for services
    • + +
    • "WARNING" Add a spec descriptor for logLevel
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for eula
    • + +
    • "WARNING" Add a spec descriptor for ingress
    • + +
    • "WARNING" Add a spec descriptor for license
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • + +
    • "WARNING" Add a spec descriptor for toolsImage
    • + +
    • "WARNING" Add a spec descriptor for networkPolicy
    • + +
    • "WARNING" Add a spec descriptor for ambassadorImage
    • + +
    • "WARNING" Add a spec descriptor for cluster
    • + +
    • "WARNING" Add a spec descriptor for clusterName
    • + +
    • "WARNING" Add a spec descriptor for jaeger
    • + +
    • "WARNING" Add a spec descriptor for kanisterToolsImage
    • + +
    • "WARNING" Add a spec descriptor for apigateway
    • + +
    • "WARNING" Add a spec descriptor for kanisterPodCustomLabels
    • + +
    • "WARNING" Add a spec descriptor for limiter
    • + +
    • "WARNING" Add CRD validation for spec field `limiter` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `apigateway` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `dexImage` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cluster` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kanisterPodCustomLabels` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `jaeger` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `license` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `externalGateway` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `metering` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `service` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `services` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `genericVolumeSnapshot` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `global` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kanisterPodCustomAnnotations` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `rbac` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `toolsImage` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `gateway` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingress` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `injectKanisterSidecar` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kanisterToolsImage` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `prometheus` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `secrets` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `eula` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `executorReplicas` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kanister` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ambassadorImage` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cacertconfigmap` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `clusterName` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `logLevel` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `networkPolicy` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `route` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `apiservices` in K10/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `auth` in K10/v1alpha1
    • @@ -6595,27 +6482,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For hls-service-operator.v0.0.1:

      +

      For k10-helm-operator.2.5.18:

      -

    • "WARNING" (hls-service-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (k10-helm-operator.2.5.18) csv.metadata.Name k10-helm-operator.2.5.18 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For k10-kasten-operator.4.0.6000:

      + + +

    • "WARNING" (k10-kasten-operator.4.0.6000) csv.metadata.Name k10-kasten-operator.4.0.6000 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -6629,170 +6525,120 @@
      Grade
    ionir-operatoropen-liberty-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    USED

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      + +Info +
      +
        + + +
        +

        For open-liberty-operator.v0.7.0:

        + +

      • "ERROR" podName does not have a spec descriptor
      • +
      • "ERROR" include does not have a spec descriptor
      • -
        -

        For ionir-operator.v1.0.3:

        +

      • "ERROR" podName does not have a spec descriptor
      • +
      • "ERROR" traceSpecification does not have a spec descriptor
      • -
      • "WARNING" (ionir-operator.v1.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "WARNING" this bundle is using APIs which were 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"])
      • +
      • "ERROR" openlibertydumps.openliberty.io does not have a status descriptor
      • + +
      • "ERROR" openlibertytraces.openliberty.io does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for podName
      • + +
      • "WARNING" Add a spec descriptor for include
      • + +
      • "WARNING" Add a spec descriptor for podName
      • + +
      • "WARNING" Add a spec descriptor for traceSpecification
      -

    NOT USED

    Grade B
    (600)
    linstor-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For linstor-operator.v1.5.1:

      - - -

    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - +

      For open-liberty-operator.v0.7.0:

      -
      -

      For linstor-operator.v1.5.1:

      +

    • "WARNING" (open-liberty-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -6802,45 +6648,35 @@
      Grade

    NOT USED

    Grade B
    (700)
    Grade D
    (100)
    mf-cics-tg-operatorsnyk-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -6850,31 +6686,37 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For mf-cics-tg-operator.v0.0.1:

      +

      For snyk-operator-certified.v1.40.3:

      + +

    • "ERROR" snykmonitors.charts.snyk.io does not have a status descriptor
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" pvc does not have a spec descriptor
    • + +
    • "ERROR" initContainerImage does not have a spec descriptor
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-tg/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for pvc
    • + +
    • "WARNING" Add a spec descriptor for initContainerImage
    • @@ -6885,27 +6727,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For mf-cics-tg-operator.v0.0.1:

      +

      For snyk-operator-certified.v1.40.3:

      -

    • "WARNING" (mf-cics-tg-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (snyk-operator-certified.v1.40.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • @@ -6919,82 +6761,92 @@
      Grade
    rapidbiz-operator-certifiedxspc-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    NOT USED

    USED

    -

    PASS

    +

    ONLY ERRORS

    + +Info +
    +
      + + +
      +

      For xspc-operator.1.5.0:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" xspcs.csi.hpe.com does not have a status descriptor
    • + + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For rapidbiz-operator.v0.0.1:

      +

      For xspc-operator.1.5.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (xspc-operator.1.5.0) csv.metadata.Name xspc-operator.1.5.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -7004,13 +6856,13 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (300)
    appranix-cps -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    @@ -7141,133 +6993,22 @@
    Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    cortex-hub-operatorgpu-operator-certified -

    PARTIAL COMPLY

    +

    COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cortex-hub-operator.v0.0.25:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • - -
    • "ERROR" hub does not have a spec descriptor
    • - -
    • "ERROR" hub-cronjob does not have a spec descriptor
    • - -
    • "ERROR" mongo-uri does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for hub
    • - -
    • "WARNING" Add a spec descriptor for hub-cronjob
    • - -
    • "WARNING" Add a spec descriptor for mongo-uri
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cortex-hub-operator.v0.0.25:

      - - -

    • "WARNING" (cortex-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    gpu-operator-certified -

    COMPLY

    -
    -

    NOT COMPLY

    - @@ -7421,18 +7162,18 @@
    Grade
    hpe-csi-operatorinfrastructure-asset-orchestrator-certified -

    COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -7441,53 +7182,57 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For hpe-csi-operator.v2.0.0:

      +

      For infrastructure-asset-orchestrator.v1.0.0:

      -

    • "ERROR" disable does not have a spec descriptor
    • +
    • "ERROR" external_db does not have a spec descriptor
    • -
    • "ERROR" kubeletRootDir does not have a spec descriptor
    • +
    • "ERROR" postgres does not have a spec descriptor
    • -
    • "ERROR" disableNodeGetVolumeStats does not have a spec descriptor
    • +
    • "ERROR" error spec does not exist
    • -
    • "ERROR" cspClientTimeout does not have a spec descriptor
    • +
    • "ERROR" generatekeys.infrastructure.asset.orchestrator.com does not have a status descriptor
    • + +
    • "ERROR" mb-broker-services.infrastructure.asset.orchestrator.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for disable
    • +
    • "WARNING" Add CRD validation for spec field `env_type` in Mb-broker-service/v1
    • -
    • "WARNING" Add a spec descriptor for kubeletRootDir
    • +
    • "WARNING" Add CRD validation for spec field `external_db` in Mb-broker-service/v1
    • -
    • "WARNING" Add a spec descriptor for disableNodeGetVolumeStats
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in Mb-broker-service/v1
    • -
    • "WARNING" Add a spec descriptor for cspClientTimeout
    • +
    • "WARNING" Add a spec descriptor for external_db
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • @@ -7496,42 +7241,60 @@
      Grade
    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For infrastructure-asset-orchestrator.v1.0.0:

      + + +

    • "WARNING" (infrastructure-asset-orchestrator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + + +
    +
    +

    NOT USED

    Grade B
    (700)
    Grade D
    (300)
    cloudbees-cisplunk-certified -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -7544,109 +7307,160 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cloudbees-ci.v3.34.1:

      - -

    • "ERROR" sidecarinjector does not have a spec descriptor
    • +

      For splunk.v0.1.0:

      -

    • "ERROR" Agents does not have a spec descriptor
    • +
    • "ERROR" indexerclusters.enterprise.splunk.com does not have a status descriptor
    • -
    • "ERROR" Hibernation does not have a spec descriptor
    • +
    • "ERROR" licensemasters.enterprise.splunk.com does not have a status descriptor
    • -
    • "ERROR" OperationsCenter does not have a spec descriptor
    • +
    • "ERROR" searchheadclusters.enterprise.splunk.com does not have a status descriptor
    • -
    • "ERROR" Subdomain does not have a spec descriptor
    • +
    • "ERROR" sparks.enterprise.splunk.com does not have a status descriptor
    • -
    • "ERROR" ingress-nginx does not have a spec descriptor
    • +
    • "ERROR" standalones.enterprise.splunk.com does not have a status descriptor
    • -
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" Master does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" NetworkPolicy does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" Persistence does not have a spec descriptor
    • -
    • "ERROR" PodSecurityPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" nginx-ingress does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" cloudbeescis.charts.cloudbees.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `sidecarinjector` in CloudBeesCI/v1alpha1
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `Agents` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `Master` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `NetworkPolicy` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `Persistence` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nginx-ingress` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `Hibernation` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `PodSecurityPolicy` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingress-nginx` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `rbac` in CloudBeesCI/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for sidecarinjector
    • +
      +

      For splunk.v0.1.0:

      -

    • "WARNING" Add a spec descriptor for Agents
    • -
    • "WARNING" Add a spec descriptor for Hibernation
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for OperationsCenter
    • -
    • "WARNING" Add a spec descriptor for Subdomain
    • -
    • "WARNING" Add a spec descriptor for ingress-nginx
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    aci-containers-operator +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for rbac
    • + +
      +

      For aci-containers-operator.v1.0.0:

      -

    • "WARNING" Add a spec descriptor for Master
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for NetworkPolicy
    • +
    • "ERROR" acicontainersoperators.aci.ctrl does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for Persistence
    • -
    • "WARNING" Add a spec descriptor for PodSecurityPolicy
    • +
    • "WARNING" Add CRD validation for AciContainersOperator/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for nginx-ingress
    • +
    • "WARNING" Add a spec descriptor for config
    • @@ -7657,25 +7471,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cloudbees-ci.v3.34.1:

      +

      For aci-containers-operator.v1.0.0:

      -

    • "WARNING" (cloudbees-ci.v3.34.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -7685,35 +7499,33 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (200)
    datadog-operator-certifiedcortex-fabric-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    • alpha
    • -
    • beta
    • -
    @@ -7721,90 +7533,70 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For datadog-operator.v0.3.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • - -
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • - -
    • "ERROR" credentials does not have a spec descriptor
    • - -
    • "ERROR" agent does not have a spec descriptor
    • - -
    • "ERROR" clusterAgent does not have a spec descriptor
    • - -
    • "ERROR" clusterChecksRunner does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • +

      For cortex-fabric-operator.v1.0.0:

      -

    • "ERROR" externalMetricName does not have a spec descriptor
    • +
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" kongui does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for credentials
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for agent
    • -
    • "WARNING" Add a spec descriptor for clusterAgent
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add a spec descriptor for clusterChecksRunner
    • +
    • "WARNING" Add a spec descriptor for kongui
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for externalMetricName
    • +
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1

    • -

      For datadog-operator.v0.4.0:

      - -

    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • - -
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • - -
    • "ERROR" agent does not have a spec descriptor
    • +

      For cortex-fabric-operator.v1.0.0:

      -

    • "ERROR" credentials does not have a spec descriptor
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "ERROR" query does not have a spec descriptor
    • +
    • "ERROR" kongui does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for agent
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add a spec descriptor for credentials
    • +
    • "WARNING" Add a spec descriptor for kongui
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1
    • @@ -7815,36 +7607,32 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For datadog-operator.v0.3.0:

      - +

      For cortex-fabric-operator.v1.0.0:

      -

    • "WARNING" (datadog-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For datadog-operator.v0.4.0:

      - +

      For cortex-fabric-operator.v1.0.0:

      -

    • "WARNING" (datadog-operator.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -7854,32 +7642,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    growth-stack-operator-certifiedruntime-component-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -7888,11 +7676,11 @@
    Grade

    NOT USED

    @@ -7900,193 +7688,213 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For growth-stack-operator.v2.0.1:

      +

    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" airgappeddeployments.growth-stack.operator.com does not have a status descriptor
    • -
    • "ERROR" analyticsproxies.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" deleteclusters.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" fulldeployments.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" generatekeys.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" storeforwardmetrics.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" segment_key does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" segment_key does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • +
      +

      For runtime-component-operator.v0.7.0:

      -

    • "ERROR" postgres does not have a spec descriptor
    • -
    • "ERROR" segment_key does not have a spec descriptor
    • +
    • "WARNING" (runtime-component-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `airgapped` in AirgappedDeployment/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AirgappedDeployment/v1alpha1
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    densify-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    • v1.0
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AirgappedDeployment/v1alpha1
    • + +
      +

      For densify-operator.v0.0.2:

      -

    • "WARNING" Add CRD validation for spec field `postgres` in AirgappedDeployment/v1alpha1
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `airgapped` in AnalyticsProxy/v1alpha1
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AnalyticsProxy/v1alpha1
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in AnalyticsProxy/v1alpha1
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AnalyticsProxy/v1alpha1
    • +
    • "ERROR" pullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `segment_key` in AnalyticsProxy/v1alpha1
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in AnalyticsProxy/v1alpha1
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in DeleteCluster/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in FullDeployment/v1alpha1
    • +
    • "ERROR" densifies.densify.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in FullDeployment/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `airgapped` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `segment_key` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in GenerateKey/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add CRD validation for spec field `segment_key` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add CRD validation for spec field `version` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for pullPolicy
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
      +

      For densify-operator.v1.0.1:

      -

    • "WARNING" Add a spec descriptor for postgres
    • +
    • "ERROR" densifies.densify.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" pullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for segment_key
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add a spec descriptor for segment_key
    • +
    • "WARNING" Add a spec descriptor for pullPolicy
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • +
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • -
    • "WARNING" Add a spec descriptor for segment_key
    • +
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • -
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • +
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • @@ -8097,27 +7905,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For growth-stack-operator.v2.0.1:

      +

      For densify-operator.v0.0.2:

      -

    • "WARNING" (growth-stack-operator.v2.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (densify-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For densify-operator.v1.0.1:

      + + +

    • "WARNING" (densify-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -8131,28 +7948,28 @@
      Grade
    h2o-operatorkpow-io-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -8161,39 +7978,147 @@
    Grade

    NOT USED

    NOT USED

    USED

    -

    ONLY ERRORS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For h2o-operator.v0.1.0:

      +

      For kpow-io.v1.0.3:

      -

    • "ERROR" h2os.h2o.ai does not have a status descriptor
    • +
    • "ERROR" kpows.kpow.io does not have a status descriptor
    • + +
    • "ERROR" schema_registry_configuration does not have a spec descriptor
    • + +
    • "ERROR" slack_integration does not have a spec descriptor
    • + +
    • "ERROR" saml_sso_options does not have a spec descriptor
    • + +
    • "ERROR" bootstrap does not have a spec descriptor
    • + +
    • "ERROR" kafka_cluster_configuration does not have a spec descriptor
    • + +
    • "ERROR" data_policy_configuration does not have a spec descriptor
    • + +
    • "ERROR" global_access_configuration does not have a spec descriptor
    • + +
    • "ERROR" live_mode_configuration does not have a spec descriptor
    • + +
    • "ERROR" license_configuration does not have a spec descriptor
    • + +
    • "ERROR" environment_name does not have a spec descriptor
    • + +
    • "ERROR" https_configuration does not have a spec descriptor
    • + +
    • "ERROR" serdis_configuration does not have a spec descriptor
    • + +
    • "ERROR" okta_sso_options does not have a spec descriptor
    • + +
    • "ERROR" github_sso_options does not have a spec descriptor
    • + +
    • "ERROR" kafka_connect_configuration does not have a spec descriptor
    • + +
    • "ERROR" prometheus_egress does not have a spec descriptor
    • + +
    • "ERROR" rbac_configuration does not have a spec descriptor
    • + +
    • "ERROR" system_configuration does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `environment_name` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `https_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `schema_registry_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `github_sso_options` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `live_mode_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `slack_integration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `saml_sso_options` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `system_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `data_policy_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `kafka_connect_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `rbac_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `serdis_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `okta_sso_options` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `license_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `bootstrap` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `kafka_cluster_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `global_access_configuration` in Kpow/v1beta1
    • + +
    • "WARNING" Add CRD validation for spec field `prometheus_egress` in Kpow/v1beta1
    • + +
    • "WARNING" Add a spec descriptor for schema_registry_configuration
    • + +
    • "WARNING" Add a spec descriptor for slack_integration
    • + +
    • "WARNING" Add a spec descriptor for saml_sso_options
    • + +
    • "WARNING" Add a spec descriptor for bootstrap
    • + +
    • "WARNING" Add a spec descriptor for kafka_cluster_configuration
    • + +
    • "WARNING" Add a spec descriptor for data_policy_configuration
    • + +
    • "WARNING" Add a spec descriptor for global_access_configuration
    • + +
    • "WARNING" Add a spec descriptor for live_mode_configuration
    • + +
    • "WARNING" Add a spec descriptor for license_configuration
    • + +
    • "WARNING" Add a spec descriptor for environment_name
    • + +
    • "WARNING" Add a spec descriptor for https_configuration
    • + +
    • "WARNING" Add a spec descriptor for serdis_configuration
    • + +
    • "WARNING" Add a spec descriptor for okta_sso_options
    • + +
    • "WARNING" Add a spec descriptor for github_sso_options
    • + +
    • "WARNING" Add a spec descriptor for kafka_connect_configuration
    • + +
    • "WARNING" Add a spec descriptor for prometheus_egress
    • + +
    • "WARNING" Add a spec descriptor for rbac_configuration
    • +
    • "WARNING" Add a spec descriptor for system_configuration
    • @@ -8204,27 +8129,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For h2o-operator.v0.1.0:

      +

      For kpow-io.v1.0.3:

      -

    • "WARNING" (h2o-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (kpow-io.v1.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -8238,27 +8163,29 @@
      Grade
    kubemq-operator-marketplaceentando-k8s-operator -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      +
    • beta
    • +
    • alpha
    @@ -8268,11 +8195,11 @@
    Grade

    NOT USED

    @@ -8280,638 +8207,411 @@
    Grade

    NOT USED

    -

    ONLY ERRORS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For kubemq-operator.v1.4.0:

      +

      For entando-k8s-operator.v6.3.2:

      -

    • "ERROR" error spec does not exist
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • +
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • +
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • +
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • -
      -

      For kubemq-operator.v1.4.0:

      +

    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • +
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • -
    • "WARNING" (kubemq-operator.v1.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" details does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io" "kubemqconnectors.core.k8s.kubemq.io" "kubemqdashboards.core.k8s.kubemq.io"])
    • +
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "ERROR" databaseName does not have a spec descriptor
    • +
    • "ERROR" createDeployment does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    snyk-operator-certified -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" replicas does not have a spec descriptor
    • - -
      -

      For snyk-operator-certified.v1.40.3:

      +

    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "ERROR" snykmonitors.charts.snyk.io does not have a status descriptor
    • +
    • "ERROR" standardImage does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" pvc does not have a spec descriptor
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "ERROR" initContainerImage does not have a spec descriptor
    • +
    • "ERROR" securityLevel does not have a spec descriptor
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" healthCheckPath does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pvc
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for initContainerImage
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • +
    • "ERROR" ingressPath does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" roles does not have a spec descriptor
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
      -

      For snyk-operator-certified.v1.40.3:

      +

    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "WARNING" (snyk-operator-certified.v1.40.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • +
    • "ERROR" standardServerImage does not have a spec descriptor
    • +
    • "ERROR" entandoAppName does not have a spec descriptor
    • +
    • "ERROR" entandoPluginName does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade C
    (400)
    aci-containers-operator -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" dbmsOverride does not have a spec descriptor
    • - -
      -

      For aci-containers-operator.v1.0.0:

      +

    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "ERROR" components does not have a spec descriptor
    • -
    • "ERROR" acicontainersoperators.aci.ctrl does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for details
    • -
    • "WARNING" Add CRD validation for AciContainersOperator/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "WARNING" Add a spec descriptor for databaseName
    • +
    • "WARNING" Add a spec descriptor for createDeployment
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for standardImage
    • -
      -

      For aci-containers-operator.v1.0.0:

      +

    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for securityLevel
    • +
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for healthCheckPath
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    cpx-cic-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for image
    • - -
      -

      For cpx-cic-operator.v130.47.103:

      +

    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "ERROR" citrixcpxingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for ingressPath
    • -
    • "ERROR" nsNamespace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" platform does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for roles
    • -
    • "ERROR" ingressClass does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "ERROR" license does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "ERROR" lsPort does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "ERROR" exporter does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" lsIP does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for standardServerImage
    • -
    • "ERROR" openshift does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for entandoAppName
    • -
    • "ERROR" cic does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for entandoPluginName
    • -
    • "ERROR" cpx does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbmsOverride
    • -
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for components
    • -
    • "WARNING" Add a spec descriptor for nsNamespace
    • +
      +

      For entando-k8s-operator.v6.3.2-pr4:

      -

    • "WARNING" Add a spec descriptor for platform
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for ingressClass
    • +
    • "ERROR" details does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for license
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for lsPort
    • +
    • "ERROR" databaseName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for exporter
    • +
    • "ERROR" createDeployment does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for lsIP
    • +
    • "ERROR" standardImage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for openshift
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cic
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpx
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `license` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `platform` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" ingressPath does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" roles does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `lsIP` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" securityLevel does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `lsPort` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" healthCheckPath does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `cic` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `cpx` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" standardServerImage does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" entandoAppName does not have a spec descriptor
    • +
    • "ERROR" entandoPluginName does not have a spec descriptor
    • -
      -

      For cpx-cic-operator.v130.47.103:

      +

    • "ERROR" dbmsOverride does not have a spec descriptor
    • +
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • -
    • "WARNING" (cpx-cic-operator.v130.47.103) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" components does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixcpxingresscontrollers.charts.helm.k8s.io"])
    • +
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • +
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • +
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    data-explorer-operator-certified -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • - -
      -

      For data-explorer-operator.v0.1.8:

      +

    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • +
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `resources` in DashboardWithJupyterLab/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for details
    • +
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for databaseName
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for createDeployment
    • +
    • "WARNING" Add a spec descriptor for standardImage
    • -
      -

      For data-explorer-operator.v0.1.8:

      +

    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" (data-explorer-operator.v0.1.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "WARNING" Add a spec descriptor for ingressPath
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    infrastructure-asset-orchestrator-certified -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for replicas
    • - -
      -

      For infrastructure-asset-orchestrator.v1.0.0:

      +

    • "WARNING" Add a spec descriptor for roles
    • -
    • "ERROR" external_db does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for securityLevel
    • -
    • "ERROR" postgres does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "ERROR" error spec does not exist
    • +
    • "WARNING" Add a spec descriptor for healthCheckPath
    • -
    • "ERROR" generatekeys.infrastructure.asset.orchestrator.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "ERROR" mb-broker-services.infrastructure.asset.orchestrator.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add CRD validation for spec field `env_type` in Mb-broker-service/v1
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "WARNING" Add CRD validation for spec field `external_db` in Mb-broker-service/v1
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in Mb-broker-service/v1
    • +
    • "WARNING" Add a spec descriptor for standardServerImage
    • -
    • "WARNING" Add a spec descriptor for external_db
    • +
    • "WARNING" Add a spec descriptor for entandoAppName
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "WARNING" Add a spec descriptor for entandoPluginName
    • + +
    • "WARNING" Add a spec descriptor for dbmsOverride
    • + +
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • + +
    • "WARNING" Add a spec descriptor for components
    • + +
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • + + +
      +

      For entando-k8s-operator.v6.3.2-pr2:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • + +
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • + +
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • + +
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • + +
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • + +
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • + +
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • + +
    • "ERROR" details does not have a spec descriptor
    • + +
    • "ERROR" dbms does not have a spec descriptor
    • + +
    • "ERROR" databaseName does not have a spec descriptor
    • + +
    • "ERROR" createDeployment does not have a spec descriptor
    • + +
    • "ERROR" replicas does not have a spec descriptor
    • + +
    • "ERROR" environmentVariables does not have a spec descriptor
    • + +
    • "ERROR" standardImage does not have a spec descriptor
    • + +
    • "ERROR" replicas does not have a spec descriptor
    • + +
    • "ERROR" environmentVariables does not have a spec descriptor
    • + +
    • "ERROR" ingressPath does not have a spec descriptor
    • + +
    • "ERROR" replicas does not have a spec descriptor
    • + +
    • "ERROR" roles does not have a spec descriptor
    • + +
    • "ERROR" securityLevel does not have a spec descriptor
    • + +
    • "ERROR" dbms does not have a spec descriptor
    • + +
    • "ERROR" healthCheckPath does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" ingressHostName does not have a spec descriptor
    • + +
    • "ERROR" ingressHostName does not have a spec descriptor
    • + +
    • "ERROR" replicas does not have a spec descriptor
    • + +
    • "ERROR" standardServerImage does not have a spec descriptor
    • + +
    • "ERROR" dbms does not have a spec descriptor
    • + +
    • "ERROR" environmentVariables does not have a spec descriptor
    • + +
    • "ERROR" entandoPluginName does not have a spec descriptor
    • + +
    • "ERROR" entandoAppName does not have a spec descriptor
    • + +
    • "ERROR" dbmsOverride does not have a spec descriptor
    • + +
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • + +
    • "ERROR" components does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • + +
    • "WARNING" Add a spec descriptor for details
    • + +
    • "WARNING" Add a spec descriptor for dbms
    • + +
    • "WARNING" Add a spec descriptor for databaseName
    • + +
    • "WARNING" Add a spec descriptor for createDeployment
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for environmentVariables
    • + +
    • "WARNING" Add a spec descriptor for standardImage
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for environmentVariables
    • + +
    • "WARNING" Add a spec descriptor for ingressPath
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for roles
    • + +
    • "WARNING" Add a spec descriptor for securityLevel
    • + +
    • "WARNING" Add a spec descriptor for dbms
    • + +
    • "WARNING" Add a spec descriptor for healthCheckPath
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for ingressHostName
    • + +
    • "WARNING" Add a spec descriptor for ingressHostName
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for standardServerImage
    • + +
    • "WARNING" Add a spec descriptor for dbms
    • + +
    • "WARNING" Add a spec descriptor for environmentVariables
    • + +
    • "WARNING" Add a spec descriptor for entandoPluginName
    • + +
    • "WARNING" Add a spec descriptor for entandoAppName
    • + +
    • "WARNING" Add a spec descriptor for dbmsOverride
    • + +
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • + +
    • "WARNING" Add a spec descriptor for components
    • @@ -8920,29 +8620,39 @@
      Grade
    -

    ONLY WARNINGS

    +

    ONLY ERRORS

    - +Info -
    + +Info +

      -

      For infrastructure-asset-orchestrator.v1.0.0:

      +

      For entando-k8s-operator.v6.3.2:

      +

    • "ERROR" (entando-k8s-operator.v6.3.2) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • -
    • "WARNING" (infrastructure-asset-orchestrator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
      +

      For entando-k8s-operator.v6.3.2-pr4:

      + +

    • "ERROR" (entando-k8s-operator.v6.3.2-pr4) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • + + + +
      +

      For entando-k8s-operator.v6.3.2-pr2:

      + @@ -8956,108 +8666,74 @@

      Grade
    memql-certifiedionir-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For memsql-operator.v1.2.1:

      - -

    • "ERROR" aggregatorSpec does not have a spec descriptor
    • - -
    • "ERROR" leafSpec does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for MemsqlCluster/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for aggregatorSpec
    • - -
    • "WARNING" Add a spec descriptor for leafSpec
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For memsql-operator.v1.2.1:

      +

      For ionir-operator.v1.0.3:

      -

    • "WARNING" (memsql-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (ionir-operator.v1.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were 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"])
    • @@ -9067,32 +8743,36 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (500)
    runtime-component-operator-certifiedaqua-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • latest
    • + +
    • alpha
    • + +
    • 5.3
    @@ -9101,11 +8781,11 @@
    Grade

    NOT USED

    @@ -9113,1028 +8793,697 @@
    Grade

    NOT USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    -
      + +Info +
      +
        + +
        +

        For aqua-operator.v1.0.4:

        -
        -

        For runtime-component-operator.v0.7.0:

        +

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "ERROR" database does not have a spec descriptor
      • -
      • "WARNING" (runtime-component-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" route does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "ERROR" adminPassword does not have a spec descriptor
      • +
      • "ERROR" infra does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • -
      -
      - -

    NOT USED

    Grade C
    (400)
    yugabyte-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" enforcer does not have a spec descriptor
    • - -
      -

      For yugabyte-operator.v0.9.0:

      +

    • "ERROR" licenseToken does not have a spec descriptor
    • -
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • +
    • "ERROR" gateway does not have a spec descriptor
    • -
    • "ERROR" subresources does not have a spec descriptor
    • +
    • "ERROR" diskSize does not have a spec descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `subresources` in YBCluster/v1alpha1
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for subresources
    • +
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
      -

      For yugabyte-operator.v0.9.0:

      +

    • "ERROR" gateway does not have a spec descriptor
    • -
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • +
    • "ERROR" token does not have a spec descriptor
    • -
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "ERROR" subresources does not have a spec descriptor
    • +
    • "ERROR" common does not have a spec descriptor
    • +
    • "ERROR" externalDb does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `subresources` in YBCluster/v1alpha1
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for subresources
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" login does not have a spec descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
      -

      For yugabyte-operator.v0.9.0:

      +

    • "ERROR" infra does not have a spec descriptor
    • -
    • "ERROR" (yugabyte-operator.v0.9.0) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "ERROR" common does not have a spec descriptor
    • +
    • "ERROR" externalDb does not have a spec descriptor
    • -
    • "WARNING" (yugabyte-operator.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "ERROR" adminPassword does not have a spec descriptor
    • +
    • "ERROR" licenseToken does not have a spec descriptor
    • -
      -

      For yugabyte-operator.v0.9.0:

      +

    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "ERROR" (yugabyte-operator.v0.9.0) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" (yugabyte-operator.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (100)
    cic-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - -
      -

      For cic-operator.v1.7.6:

      +

    • "WARNING" Add a spec descriptor for database
    • -
    • "ERROR" kubernetesURL does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for route
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for adminPassword
    • -
    • "ERROR" nsPort does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "ERROR" nsVIP does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for server
    • -
    • "ERROR" cic does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for enforcer
    • -
    • "ERROR" ingressClass does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for licenseToken
    • -
    • "ERROR" license does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "ERROR" loginFileName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for gateway
    • -
    • "ERROR" nsIP does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for diskSize
    • -
    • "ERROR" nsNamespace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "ERROR" nsProtocol does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "ERROR" exporter does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "ERROR" nodeWatch does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for gateway
    • -
    • "ERROR" openshift does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for token
    • -
    • "ERROR" citrixingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for common
    • +
    • "WARNING" Add a spec descriptor for externalDb
    • -
    • "WARNING" Add a spec descriptor for kubernetesURL
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" Add a spec descriptor for nsPort
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add a spec descriptor for nsVIP
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "WARNING" Add a spec descriptor for cic
    • +
    • "WARNING" Add a spec descriptor for login
    • -
    • "WARNING" Add a spec descriptor for ingressClass
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" Add a spec descriptor for license
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add a spec descriptor for loginFileName
    • +
    • "WARNING" Add a spec descriptor for common
    • -
    • "WARNING" Add a spec descriptor for nsIP
    • +
    • "WARNING" Add a spec descriptor for externalDb
    • -
    • "WARNING" Add a spec descriptor for nsNamespace
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "WARNING" Add a spec descriptor for nsProtocol
    • +
    • "WARNING" Add a spec descriptor for adminPassword
    • -
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • +
    • "WARNING" Add a spec descriptor for licenseToken
    • -
    • "WARNING" Add a spec descriptor for exporter
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" Add a spec descriptor for nodeWatch
    • +
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for openshift
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `cic` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `loginFileName` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • -
      -

      For cic-operator.v1.7.6:

      +

    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • -
    • "WARNING" (cic-operator.v1.7.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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.charts.helm.k8s.io"])
    • +
    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    node-red-operator-certified -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • - -
      -

      For node-red-operator.v0.0.3:

      +

    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
    • -
    • "ERROR" noderedbackups.nodered.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
    • -
    • "ERROR" noderedrestores.nodered.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • -
    • "ERROR" adminpassword does not have a spec descriptor
    • -
    • "ERROR" persistentvolume does not have a spec descriptor
    • +
      +

      For aqua-operator.v5.0.0:

      -

    • "ERROR" secretkey does not have a spec descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "ERROR" backup does not have a spec descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "ERROR" ibm_s3 does not have a spec descriptor
    • +
    • "ERROR" route does not have a spec descriptor
    • -
    • "ERROR" restore_file_name does not have a spec descriptor
    • +
    • "ERROR" licenseToken does not have a spec descriptor
    • -
    • "ERROR" ibm_s3 does not have a spec descriptor
    • +
    • "ERROR" database does not have a spec descriptor
    • +
    • "ERROR" gateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `adminpassword` in NodeRed/v1alpha1
    • +
    • "ERROR" enforcer does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `persistentvolume` in NodeRed/v1alpha1
    • +
    • "ERROR" adminPassword does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `secretkey` in NodeRed/v1alpha1
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `size` in NodeRed/v1alpha1
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `backup` in NodeRedBackup/v1alpha1
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedBackup/v1alpha1
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedRestore/v1alpha1
    • +
    • "ERROR" diskSize does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `restore_file_name` in NodeRedRestore/v1alpha1
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "ERROR" gateway does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for adminpassword
    • +
    • "ERROR" token does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentvolume
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for secretkey
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for backup
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ibm_s3
    • +
    • "ERROR" common does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for restore_file_name
    • +
    • "ERROR" externalDb does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ibm_s3
    • +
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" login does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
      -

      For node-red-operator.v0.0.3:

      +

    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" common does not have a spec descriptor
    • -
    • "WARNING" (node-red-operator.v0.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" externalDb does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["noderedbackups.nodered.com" "noderedrestores.nodered.com" "nodereds.nodered.com"])
    • +
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" adminPassword does not have a spec descriptor
    • +
    • "ERROR" licenseToken does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    portworx-certified -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      +
    • "ERROR" Owned CRDs do not have resources specified
    • - -
      -

      For portworx-operator.v1.5.0:

      +

    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • -
      -

      For portworx-operator.v1.5.0:

      +

    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • -
    • "ERROR" error spec does not exist
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • -
      -

      For portworx-operator.v1.5.0:

      +

    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • -
      -

      For portworx-operator.v1.5.0:

      +

    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
    • +
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    sysdig-certified -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • - -
      -

      For sysdig-operator.v1.8.3:

      +

    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • -
    • "ERROR" daemonset does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • -
    • "ERROR" scc does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • -
    • "ERROR" sysdig does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • -
    • "ERROR" scc does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • -
    • "ERROR" sysdig does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • -
    • "ERROR" ebpf does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • -
    • "ERROR" daemonset does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
    • -
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • -
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for daemonset
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for sysdig
    • +
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for sysdig
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add a spec descriptor for ebpf
    • +
    • "WARNING" Add a spec descriptor for server
    • -
    • "WARNING" Add a spec descriptor for daemonset
    • +
    • "WARNING" Add a spec descriptor for route
    • -
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • +
    • "WARNING" Add a spec descriptor for licenseToken
    • -
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • +
    • "WARNING" Add a spec descriptor for database
    • -
    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • +
    • "WARNING" Add a spec descriptor for gateway
    • -
    • "WARNING" Add CRD validation for spec field `ebpf` in SysdigAgent/v1
    • +
    • "WARNING" Add a spec descriptor for enforcer
    • -
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • +
    • "WARNING" Add a spec descriptor for adminPassword
    • -
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for diskSize
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
      -

      For sysdig-operator.v1.8.3:

      +

    • "WARNING" Add a spec descriptor for gateway
    • +
    • "WARNING" Add a spec descriptor for token
    • -
    • "WARNING" (sysdig-operator.v1.8.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sysdigagents.sysdig.com"])
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for common
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    coralogix-operator-certified -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
      -

      For coralogix-operator.v1.0.0:

      +

    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add a spec descriptor for login
    • -
    • "WARNING" (coralogix-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for common
    • + +
    • "WARNING" Add a spec descriptor for externalDb
    • + +
    • "WARNING" Add a spec descriptor for deploy
    • + +
    • "WARNING" Add a spec descriptor for adminPassword
    • + +
    • "WARNING" Add a spec descriptor for licenseToken
    • -
    -
    - -

    NOT USED

    Grade B
    (600)
    kubeturbo-certified -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      -
      -

      For kubeturbo-operator.v8.3.1:

      +

      For aqua-operator.v5.3.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" serverMeta does not have a spec descriptor
    • +
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • -
    • "ERROR" targetConfig does not have a spec descriptor
    • +
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • -
    • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for serverMeta
    • +
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for targetConfig
    • +
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" route does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" common does not have a spec descriptor
    • -
      -

      For kubeturbo-operator.v8.3.1:

      +

    • "ERROR" database does not have a spec descriptor
    • +
    • "ERROR" gateway does not have a spec descriptor
    • -
    • "WARNING" (kubeturbo-operator.v8.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" infra does not have a spec descriptor
    • +
    • "ERROR" common does not have a spec descriptor
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    nginx-ingress-operator -

    COMPLY

    +
  • "ERROR" diskSize does not have a spec descriptor
  • + +
  • "ERROR" token does not have a spec descriptor
  • + +
  • "ERROR" infra does not have a spec descriptor
  • + +
  • "ERROR" gateway does not have a spec descriptor
  • + +
  • "ERROR" config does not have a spec descriptor
  • + +
  • "ERROR" token does not have a spec descriptor
  • + +
  • "ERROR" infra does not have a spec descriptor
  • + +
  • "ERROR" common does not have a spec descriptor
  • + +
  • "ERROR" externalDb does not have a spec descriptor
  • + +
  • "ERROR" deploy does not have a spec descriptor
  • + +
  • "ERROR" deploy does not have a spec descriptor
  • + +
  • "ERROR" login does not have a spec descriptor
  • + +
  • "ERROR" infra does not have a spec descriptor
  • + +
  • "ERROR" infra does not have a spec descriptor
  • + +
  • "ERROR" common does not have a spec descriptor
  • + +
  • "ERROR" externalDb does not have a spec descriptor
  • + +
  • "ERROR" deploy does not have a spec descriptor
  • + + +
  • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add a spec descriptor for route
  • + +
  • "WARNING" Add a spec descriptor for infra
  • + +
  • "WARNING" Add a spec descriptor for common
  • + +
  • "WARNING" Add a spec descriptor for database
  • + +
  • "WARNING" Add a spec descriptor for gateway
  • + +
  • "WARNING" Add a spec descriptor for server
  • + +
  • "WARNING" Add a spec descriptor for infra
  • + +
  • "WARNING" Add a spec descriptor for common
  • + +
  • "WARNING" Add a spec descriptor for deploy
  • + +
  • "WARNING" Add a spec descriptor for diskSize
  • + +
  • "WARNING" Add a spec descriptor for token
  • + +
  • "WARNING" Add a spec descriptor for infra
  • + +
  • "WARNING" Add a spec descriptor for gateway
  • + +
  • "WARNING" Add a spec descriptor for config
  • + +
  • "WARNING" Add a spec descriptor for token
  • + +
  • "WARNING" Add a spec descriptor for infra
  • + +
  • "WARNING" Add a spec descriptor for common
  • + +
  • "WARNING" Add a spec descriptor for externalDb
  • + +
  • "WARNING" Add a spec descriptor for deploy
  • + +
  • "WARNING" Add a spec descriptor for deploy
  • + +
  • "WARNING" Add a spec descriptor for login
  • + +
  • "WARNING" Add a spec descriptor for infra
  • + +
  • "WARNING" Add a spec descriptor for infra
  • + +
  • "WARNING" Add a spec descriptor for common
  • + +
  • "WARNING" Add a spec descriptor for externalDb
  • + +
  • "WARNING" Add a spec descriptor for deploy
  • + + + + + + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      + + +
      +

      For aqua-operator.v1.0.4:

      + + +

    • "WARNING" (aqua-operator.v1.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For aqua-operator.v5.0.0:

      + + +

    • "WARNING" (aqua-operator.v5.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For aqua-operator.v5.3.0:

      + + +

    • "WARNING" (aqua-operator.v5.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + + +
    +
    + +

    NOT USED

    Grade D
    (100)
    eddi-operator-certified +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -10147,52 +9496,70 @@
      Grade

    NOT USED

    USED

    NOT USED

    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For eddi-operator.v1.0.2:

      + + +

    • "WARNING" Add CRD validation for Eddioperator/v1alpha1
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For nginx-ingress-operator.v0.3.0:

      +

      For eddi-operator.v1.0.2:

      -

    • "WARNING" (nginx-ingress-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (eddi-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -10202,32 +9569,32 @@
      Grade

    NOT USED

    Grade B
    (800)
    Grade D
    (200)
    nvmesh-operatorkubeplus -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -10236,54 +9603,92 @@
    Grade

    NOT USED

    USED

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For kubeplus.v1.0.5:

      + +

    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • + +
    • "ERROR" error getting custom resources
    • + +
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • + +
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Warning: Value workflows.kubeplus/v1alpha1, Kind=ResourceEvent: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value workflows.kubeplus/v1alpha1, Kind=ResourcePolicy: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value workflows.kubeplus/v1alpha1, Kind=ResourceMonitor: provided API should have an example annotation
    • + + + +
    +
    +
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For nvmesh-operator.0.7.2:

      +

      For kubeplus.v1.0.5:

      +

    • "ERROR" (kubeplus.v1.0.5) csv.Spec.Icon image/svg does not have a valid mediatype
    • -
    • "WARNING" (nvmesh-operator.0.7.2) csv.metadata.Name nvmesh-operator.0.7.2 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (kubeplus.v1.0.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -10293,45 +9698,35 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (0)
    joget-dx-operatornxiq-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -10341,33 +9736,81 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For joget-dx-openshift-operator.v0.0.12:

      +

      For nxiq-operator-certified.v1.121.0-2:

      -

    • "ERROR" jogetdx.app.joget.com does not have a status descriptor
    • +
    • "ERROR" nexusiqs.sonatype.com does not have a status descriptor
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" persistence does not have a spec descriptor
    • + +
    • "ERROR" service does not have a spec descriptor
    • + +
    • "ERROR" deployment does not have a spec descriptor
    • + +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" serviceAccount does not have a spec descriptor
    • + +
    • "ERROR" ingress does not have a spec descriptor
    • + +
    • "ERROR" iq does not have a spec descriptor
    • + +
    • "ERROR" nameOverride does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for JogetDX/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in NexusIQ/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "WARNING" Add CRD validation for spec field `iq` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nameOverride` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `service` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `deployment` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingress` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `persistence` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in NexusIQ/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for persistence
    • + +
    • "WARNING" Add a spec descriptor for service
    • + +
    • "WARNING" Add a spec descriptor for deployment
    • + +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • + +
    • "WARNING" Add a spec descriptor for ingress
    • + +
    • "WARNING" Add a spec descriptor for iq
    • + +
    • "WARNING" Add a spec descriptor for nameOverride
    • @@ -10378,27 +9821,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For joget-dx-openshift-operator.v0.0.12:

      +

      For nxiq-operator-certified.v1.121.0-2:

      -

    • "WARNING" (joget-dx-openshift-operator.v0.0.12) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (nxiq-operator-certified.v1.121.0-2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jogetdx.app.joget.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nexusiqs.sonatype.com"])
    • @@ -10412,24 +9855,24 @@
      Grade
    k10-kasten-operatorportshift-controller-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -10442,278 +9885,341 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For k10-helm-operator.2.5.18:

      - -

    • "ERROR" scc does not have a spec descriptor
    • +

      For portshift-operator.v0.1.6:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "ERROR" portshiftinstallers.portshift.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
    • +
    • "ERROR" managementUrl does not have a spec descriptor
    • +
    • "ERROR" portshiftClusterId does not have a spec descriptor
    • -
      -

      For k10-kasten-operator.4.0.6000:

      -

    • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for managementUrl
    • -
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for portshiftClusterId
    • -
    • "ERROR" scc does not have a spec descriptor
    • -
    • "ERROR" dexImage does not have a spec descriptor
    • -
    • "ERROR" externalGateway does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" genericVolumeSnapshot does not have a spec descriptor
    • -
    • "ERROR" global does not have a spec descriptor
    • +
      +

      For portshift-operator.v0.1.6:

      -

    • "ERROR" injectKanisterSidecar does not have a spec descriptor
    • -
    • "ERROR" secrets does not have a spec descriptor
    • +
    • "WARNING" (portshift-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" apiservices does not have a spec descriptor
    • -
    • "ERROR" cacertconfigmap does not have a spec descriptor
    • -
    • "ERROR" executorReplicas does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    ibm-block-csi-operator +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" route does not have a spec descriptor
    • + +
      +

      For ibm-block-csi-operator.v1.6.0:

      -

    • "ERROR" auth does not have a spec descriptor
    • +
    • "ERROR" controller does not have a spec descriptor
    • -
    • "ERROR" gateway does not have a spec descriptor
    • +
    • "ERROR" node does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" sidecars does not have a spec descriptor
    • -
    • "ERROR" kanister does not have a spec descriptor
    • -
    • "ERROR" kanisterPodCustomAnnotations does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for controller
    • -
    • "ERROR" metering does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for node
    • -
    • "ERROR" services does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for sidecars
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "ERROR" prometheus does not have a spec descriptor
    • -
    • "ERROR" eula does not have a spec descriptor
    • +
    +
    + +
    +

    PASS

    + + +

    NOT USED

    Grade B
    (700)
    jtrac-app-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" ingress does not have a spec descriptor
    • + +
      +

      For jtrac-app-operator.v0.0.1:

      -

    • "ERROR" license does not have a spec descriptor
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" autoscaling does not have a spec descriptor
    • -
    • "ERROR" toolsImage does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" networkPolicy does not have a spec descriptor
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "ERROR" ambassadorImage does not have a spec descriptor
    • +
    • "ERROR" service does not have a spec descriptor
    • -
    • "ERROR" cluster does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" clusterName does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" jaeger does not have a spec descriptor
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "ERROR" kanisterToolsImage does not have a spec descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" apigateway does not have a spec descriptor
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "ERROR" kanisterPodCustomLabels does not have a spec descriptor
    • +
    • "ERROR" podAnnotations does not have a spec descriptor
    • -
    • "ERROR" limiter does not have a spec descriptor
    • +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" podSecurityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for rbac
    • +
    • "ERROR" securityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for dexImage
    • +
    • "ERROR" jtracs.example.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for externalGateway
    • -
    • "WARNING" Add a spec descriptor for genericVolumeSnapshot
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Add a spec descriptor for global
    • +
    • "WARNING" Add a spec descriptor for autoscaling
    • -
    • "WARNING" Add a spec descriptor for injectKanisterSidecar
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add a spec descriptor for secrets
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • "WARNING" Add a spec descriptor for service
    • -
    • "WARNING" Add a spec descriptor for apiservices
    • - -
    • "WARNING" Add a spec descriptor for cacertconfigmap
    • - -
    • "WARNING" Add a spec descriptor for executorReplicas
    • +
    • "WARNING" Add a spec descriptor for image
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for route
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add a spec descriptor for auth
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for gateway
    • +
    • "WARNING" Add a spec descriptor for nameOverride
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "WARNING" Add a spec descriptor for kanister
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "WARNING" Add a spec descriptor for kanisterPodCustomAnnotations
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add a spec descriptor for metering
    • +
    • "WARNING" Add a spec descriptor for podSecurityContext
    • -
    • "WARNING" Add a spec descriptor for services
    • +
    • "WARNING" Add a spec descriptor for securityContext
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "WARNING" Add CRD validation for spec field `securityContext` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for eula
    • +
    • "WARNING" Add CRD validation for spec field `affinity` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for license
    • +
    • "WARNING" Add CRD validation for spec field `service` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add CRD validation for spec field `podAnnotations` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for toolsImage
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for networkPolicy
    • +
    • "WARNING" Add CRD validation for spec field `image` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for ambassadorImage
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for cluster
    • +
    • "WARNING" Add CRD validation for spec field `podSecurityContext` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "WARNING" Add CRD validation for spec field `resources` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for jaeger
    • +
    • "WARNING" Add CRD validation for spec field `autoscaling` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kanisterToolsImage
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for apigateway
    • +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kanisterPodCustomLabels
    • +
    • "WARNING" Add CRD validation for spec field `tolerations` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for limiter
    • - -
    • "WARNING" Add CRD validation for spec field `limiter` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `apigateway` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `dexImage` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `cluster` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kanisterPodCustomLabels` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `jaeger` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `license` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `externalGateway` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `metering` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `service` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `services` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `genericVolumeSnapshot` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `global` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kanisterPodCustomAnnotations` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `rbac` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `toolsImage` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `gateway` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingress` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `injectKanisterSidecar` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kanisterToolsImage` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `prometheus` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `secrets` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `eula` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `executorReplicas` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kanister` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ambassadorImage` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `cacertconfigmap` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `clusterName` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `logLevel` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `networkPolicy` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `route` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `apiservices` in K10/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `auth` in K10/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in jtrac/v1alpha1
    • @@ -10724,36 +10230,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For k10-helm-operator.2.5.18:

      - - -

    • "WARNING" (k10-helm-operator.2.5.18) csv.metadata.Name k10-helm-operator.2.5.18 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For k10-kasten-operator.4.0.6000:

      +

      For jtrac-app-operator.v0.0.1:

      -

    • "WARNING" (k10-kasten-operator.4.0.6000) csv.metadata.Name k10-kasten-operator.4.0.6000 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (jtrac-app-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" this bundle is using APIs which were deprecated 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"]),
    • @@ -10763,35 +10260,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    kube-arangodbzabbix-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • lts
    • + +
    +
    +

    NOT USED

    @@ -10801,174 +10308,151 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For kube-arangodb.v1.0.1:

      +

      For zabbix-operator-certified.v0.0.2:

      -

    • "ERROR" arangodeployments.database.arangodb.com does not have a status descriptor
    • +
    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" hostname does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackupPolicy: provided API should have an example annotation
    • +
    • "ERROR" web does not have a spec descriptor
    • -
    • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackup: provided API should have an example annotation
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "WARNING" Warning: Value replication.database.arangodb.com/v1, Kind=ArangoDeploymentReplication: provided API should have an example annotation
    • +
    • "ERROR" web does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for ArangoDeployment/v1
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" proxy does not have a spec descriptor
    • +
    • "ERROR" proxy does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • -
      -

      For kube-arangodb.v1.0.1:

      +

    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" web does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "ERROR" hostname does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" web does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    orca -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" proxy does not have a spec descriptor
    • - -
      -

      For orca-operator.v1.0.197:

      +

    • "ERROR" proxy does not have a spec descriptor
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `kube_platform` in Orca/v1alpha1
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `namespace` in Orca/v1alpha1
    • +
    • "ERROR" web does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `project` in Orca/v1alpha1
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `components` in Orca/v1alpha1
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `domain` in Orca/v1alpha1
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `endpoints` in Orca/v1alpha1
    • +
    • "ERROR" web does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ignored_config_maps` in Orca/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `images` in Orca/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • -
    • "WARNING" Add CRD validation for status field `phase` in Orca/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for hostname
    • -
    • "WARNING" Add CRD validation for spec field `mode` in Policy/v1
    • +
    • "WARNING" Add a spec descriptor for java_gateway
    • -
    • "WARNING" Add CRD validation for spec field `networkPolicyAllowAll` in Policy/v1
    • +
    • "WARNING" Add a spec descriptor for server
    • -
    • "WARNING" Add CRD validation for spec field `rules` in Policy/v1
    • +
    • "WARNING" Add a spec descriptor for web
    • -
    • "WARNING" Add CRD validation for status field `phase` in Policy/v1
    • +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for hostname
    • + +
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • @@ -10979,25 +10463,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For orca-operator.v1.0.197:

      +

      For zabbix-operator-certified.v0.0.2:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (zabbix-operator-certified.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -11007,44 +10493,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    redis-enterprise-operator-certccm-node-agent-operator -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 6.0.20
    • - -
    • 6.0.12
    • - -
    • production
    • - -
    • 6.0.8
    • - -
    • 5.4.14
    • - -
    • 6.0.6
    • - -
    • preview
    • +
    • alpha
    @@ -11053,982 +10527,1957 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For redis-enterprise-operator.v6.0.12-5:

      - -

    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - - -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - -

    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +

      For ccm-node-agent-operator.v0.0.1:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" podAnnotations does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.12-5:

      +

    • "ERROR" ccmJoinToken does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" ports does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "ERROR" log does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" ccmnodeagents.charts.operatorhub.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for image
    • -
      -

      For redis-enterprise-operator.v6.0.12-5:

      +

    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ccmJoinToken
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for ports
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for log
    • +
    • "WARNING" Add a spec descriptor for nameOverride
    • -
      -

      For redis-enterprise-operator.v6.0.12-5:

      +

    • "WARNING" Add CRD validation for spec field `serviceAccount` in CcmNodeAgent/v1
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `ccmJoinToken` in CcmNodeAgent/v1
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in CcmNodeAgent/v1
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in CcmNodeAgent/v1
    • +
    • "WARNING" Add CRD validation for spec field `ports` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add CRD validation for spec field `resources` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add CRD validation for spec field `image` in CcmNodeAgent/v1
    • +
    • "WARNING" Add CRD validation for spec field `log` in CcmNodeAgent/v1
    • -
      -

      For redis-enterprise-operator.v6.0.12-5:

      +

    • "WARNING" Add CRD validation for spec field `podAnnotations` in CcmNodeAgent/v1
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
      +

      For ccm-node-agent-operator.v0.0.1:

      -

    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" (ccm-node-agent-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - -

    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - - -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - -

    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - - -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • - - -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • - - -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +

    NOT USED

    Grade B
    (600)
    hpe-csi-operator +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

      For hpe-csi-operator.v2.0.0:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" disable does not have a spec descriptor
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "ERROR" kubeletRootDir does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" disableNodeGetVolumeStats does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" cspClientTimeout does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for disable
    • +
    • "WARNING" Add a spec descriptor for kubeletRootDir
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for disableNodeGetVolumeStats
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for cspClientTimeout
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +
    +

    PASS

    + + +

    NOT USED

    Grade B
    (700)
    insightedge-enterprise-operator2 +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For redis-enterprise-operator.v6.0.20-12a:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +

      For insightedge-enterprise-operator.v15.0.1:

      -

    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" pu does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "ERROR" zeppelin does not have a spec descriptor
    • +
    • "ERROR" manager does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" insightedges.insightedge.gigaspaces.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "WARNING" Add a spec descriptor for pu
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add a spec descriptor for zeppelin
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for manager
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for Insightedge/v1alpha1
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
      +

      For insightedge-enterprise-operator.v15.0.1:

      -

    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" (insightedge-enterprise-operator.v15.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    +
    + +

    NOT USED

    Grade D
    (100)
    nsx-container-plugin-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    PASS

    + + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
      +

      For nsx-container-plugin-operator.v0.1.0:

      -

    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" (nsx-container-plugin-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    openshiftpipeline-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    REQUIRED

    + + + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • pipeline-operator.v1.0.1
    • + +
    +
    + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for uiServiceType
    • + +
      +

      For pipeline-operator.v1.0.1:

      -

    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" pipelines does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "ERROR" openshiftpipelines.charts.helm.k8s.io does not have a status descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add a spec descriptor for pipelines
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `pipelines` in OpenshiftPipeline/v1alpha1
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
      +

      For pipeline-operator.v1.0.1:

      -

    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" (pipeline-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    cnvrg-operator-marketplace +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

      For cnvrg-operator.v0.352.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • - - -
      -

      For redis-enterprise-operator.v5.4.14-7:

      - -

    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" cnvrgapps.mlops.cnvrg.io does not have a status descriptor
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" clusterDomain does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" pg does not have a spec descriptor
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" istio does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" seeder does not have a spec descriptor
    • +
    • "ERROR" es does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • +
    • "ERROR" minio does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" ingressType does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "ERROR" cnvrgApp does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" fluentd does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "ERROR" nvidiadp does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "ERROR" securityMode does not have a spec descriptor
    • +
    • "ERROR" redis does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    • "ERROR" prometheus does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" kibana does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for clusterDomain
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for pg
    • +
    • "WARNING" Add a spec descriptor for istio
    • -
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • +
    • "WARNING" Add a spec descriptor for seeder
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for es
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for minio
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" Add a spec descriptor for ingressType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for cnvrgApp
    • +
    • "WARNING" Add a spec descriptor for fluentd
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    • "WARNING" Add a spec descriptor for nvidiadp
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for securityMode
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redis
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for prometheus
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for kibana
    • +
    • "WARNING" Add CRD validation for spec field `securityMode` in CnvrgApp/v1
    • -
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • +
    • "WARNING" Add CRD validation for spec field `ingressType` in CnvrgApp/v1
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add CRD validation for spec field `seeder` in CnvrgApp/v1
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add CRD validation for spec field `minio` in CnvrgApp/v1
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" Add CRD validation for spec field `prometheus` in CnvrgApp/v1
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add CRD validation for spec field `fluentd` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `nvidiadp` in CnvrgApp/v1
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    • "WARNING" Add CRD validation for spec field `redis` in CnvrgApp/v1
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `es` in CnvrgApp/v1
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `istio` in CnvrgApp/v1
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `kibana` in CnvrgApp/v1
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `pg` in CnvrgApp/v1
    • -
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
      +

      For cnvrg-operator.v0.352.0:

      -

    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" (cnvrg-operator.v0.352.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    gitlab-runner-operator +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • + +
      +

      For gitlab-runner-operator.v1.2.0:

      +

    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +
      +

      For gitlab-runner-operator.v1.2.0:

      -

    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" (gitlab-runner-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • +
    +
    + +

    NOT USED

    Grade C
    (400)
    memql-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for persistentSpec
    • + +
      +

      For memsql-operator.v1.2.1:

      -

    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" aggregatorSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "ERROR" leafSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add CRD validation for MemsqlCluster/v1alpha1
    • -
      -

      For redis-enterprise-operator-preview.v6.0.20-12:

      +

    • "WARNING" Add a spec descriptor for aggregatorSpec
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for leafSpec
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
      +

      For memsql-operator.v1.2.1:

      -

    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" (memsql-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    data-explorer-operator-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

      For data-explorer-operator.v0.1.8:

      -

    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `resources` in DashboardWithJupyterLab/v1alpha1
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
      +

      For data-explorer-operator.v0.1.8:

      -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" (data-explorer-operator.v0.1.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    openunison-ocp-certified +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      + +
      +

      For openunison.1.0.0:

      -

    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" openunisons.openunison.tremolo.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "ERROR" key_store does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" enable_activemq does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "ERROR" dest_secret does not have a spec descriptor
    • +
    • "ERROR" source_secret does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "ERROR" openunison_network_configuration does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" non_secret_data does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" hosts does not have a spec descriptor
    • +
    • "ERROR" secret_data does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" Add a spec descriptor for key_store
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for enable_activemq
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for dest_secret
    • +
    • "WARNING" Add a spec descriptor for source_secret
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Add a spec descriptor for openunison_network_configuration
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for non_secret_data
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for hosts
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for secret_data
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
      +

      For openunison.1.0.0:

      -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" (openunison.1.0.0) csv.metadata.Name openunison.1.0.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    uma-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      + +
      +

      For uma-operator.v21.6.0-29:

      -

    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" role does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "ERROR" type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" agentManager does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "ERROR" cloudmonitoring does not have a spec descriptor
    • +
    • "ERROR" clusterName does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "ERROR" monitor does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" universalmonitoringagents.ca.broadcom.com does not have a status descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for role
    • +
    • "WARNING" Add a spec descriptor for type
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for agentManager
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" Add a spec descriptor for cloudmonitoring
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for clusterName
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for monitor
    • +
    • "WARNING" Add CRD validation for UniversalMonitoringAgent/v1alpha1
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
      +

      For uma-operator.v21.6.0-29:

      -

    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" (uma-operator.v21.6.0-29) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    as400rpc-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

      For as400rpc-operator.v0.0.5:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" as400rpcs.openlegacy.com does not have a status descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" service does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" securityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" podSecurityContext does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" autoscaling does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" podAnnotations does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for service
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add a spec descriptor for securityContext
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for nameOverride
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for podSecurityContext
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for autoscaling
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add CRD validation for As400rpc/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
      +

      For as400rpc-operator.v0.0.5:

      -

    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" (as400rpc-operator.v0.0.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were 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: (["as400rpc-operator-metrics-reader"]),CRD: (["as400rpcs.openlegacy.com"]),
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    joget-dx-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for persistentSpec
    • + +
      +

      For joget-dx-openshift-operator.v0.0.12:

      -

    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" jogetdx.app.joget.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add CRD validation for JogetDX/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
      +

      For joget-dx-openshift-operator.v0.0.12:

      -

    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" (joget-dx-openshift-operator.v0.0.12) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jogetdx.app.joget.com"])
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    cortex-certifai-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    PASS

    + + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
      +

      For cortex-certifai-operator.v1.3.10:

      -

    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" (cortex-certifai-operator.v1.3.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
      +

      For cortex-certifai-operator.v1.3.10:

      -

    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" (cortex-certifai-operator.v1.3.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +

    NOT USED

    Grade C
    (400)
    crunchy-postgres-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • v5
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For redis-enterprise-operator.v6.0.20-12a:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +

      For postgresoperator.v4.6.2:

      +

    • "ERROR" ReplicaStorage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "ERROR" user does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "ERROR" BackrestStorage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" podAntiAffinity does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "ERROR" namespace does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add CRD validation for spec field `podAntiAffinity` in Pgcluster/v1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `BackrestStorage` in Pgcluster/v1
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `user` in Pgcluster/v1
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `ReplicaStorage` in Pgcluster/v1
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `namespace` in Pgcluster/v1
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ReplicaStorage
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for user
    • +
    • "WARNING" Add a spec descriptor for BackrestStorage
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for podAntiAffinity
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for namespace
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
      +

      For postgresoperator.v5.0.2:

      -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
      +

      For postgresoperator.v4.6.2:

      -

    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
      +

      For postgresoperator.v5.0.2:

      -

    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    +
    + +

    NOT USED

    Grade C
    (500)
    dell-csi-operator-certified +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For redis-enterprise-operator.v6.0.20-12a:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • +

      For dell-csi-operator-certified.v1.2.0:

      -

    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" tlsSecret does not have a spec descriptor
    • -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • +
    • "ERROR" csipowermaxrevproxies.storage.dell.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "WARNING" Add a spec descriptor for tlsSecret
    • @@ -12039,396 +12488,776 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For redis-enterprise-operator.v6.0.12-5:

      - - -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - - -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - - -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - - -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - - -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For redis-enterprise-operator.v6.0.12-5:

      - +

      For dell-csi-operator-certified.v1.2.0:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" (dell-csi-operator-certified.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were 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"]),
    • -
      -

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    h2o-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ONLY ERRORS

    + + + +Info +
    +
      -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
      +

      For h2o-operator.v0.1.0:

      +

    • "ERROR" h2os.h2o.ai does not have a status descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For redis-enterprise-operator.v6.0.20-12a:

      - - -

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +

      For h2o-operator.v0.1.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (h2o-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    infinibox-operator-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      + +
      +

      For infinibox-operator.v0.0.1:

      -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" infiniboxcsidrivers.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" csiDriverVersion does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" images does not have a spec descriptor
    • +
    • "ERROR" instanceCount does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" logLevel does not have a spec descriptor
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" volumeNamePrefix does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Infinibox_Cred does not have a spec descriptor
    • +
    • "ERROR" csiDriverName does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add a spec descriptor for csiDriverVersion
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for images
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for instanceCount
    • +
    • "WARNING" Add a spec descriptor for logLevel
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add a spec descriptor for volumeNamePrefix
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for Infinibox_Cred
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for csiDriverName
    • +
    • "WARNING" Add CRD validation for spec field `instanceCount` in InfiniboxCsiDriver/v1alpha1
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add CRD validation for spec field `logLevel` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in InfiniboxCsiDriver/v1alpha1
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `volumeNamePrefix` in InfiniboxCsiDriver/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `Infinibox_Cred` in InfiniboxCsiDriver/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `csiDriverName` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `csiDriverVersion` in InfiniboxCsiDriver/v1alpha1
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add CRD validation for spec field `images` in InfiniboxCsiDriver/v1alpha1
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For redis-enterprise-operator.v6.0.20-12a:

      - +

      For infinibox-operator.v0.0.1:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (infinibox-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infiniboxcsidrivers.charts.helm.k8s.io"])
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    oneagent-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ONLY ERRORS

    + + + +Info +
    +
      -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
      +

      For dynatrace-monitoring.v0.10.1:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
      -

      For redis-enterprise-operator.v5.4.14-7:

      -

    • "WARNING" (redis-enterprise-operator.v5.4.14-7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For redis-enterprise-operator.v6.0.6-24:

      +

      For dynatrace-monitoring.v0.10.1:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    +
    + +

    NOT USED

    Grade D
    (200)
    cic-operator-with-crds +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      + +
      +

      For citrix-api-gateway-operator.v0.0.1:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" citrixingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" nodeWatch does not have a spec descriptor
    • +
    • "ERROR" nsVIP does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    • "ERROR" cic does not have a spec descriptor
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" nsIP does not have a spec descriptor
    • +
    • "ERROR" nsNamespace does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    • "ERROR" openshift does not have a spec descriptor
    • +
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" loginFileName does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" nsPort does not have a spec descriptor
    • +
    • "ERROR" nsProtocol does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.6-24:

      +

    • "ERROR" exporter does not have a spec descriptor
    • +
    • "ERROR" kubernetesURL does not have a spec descriptor
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Owned CRDs do not have resources specified
    • -
      -

      For redis-enterprise-operator-preview.v6.0.20-12:

      +

    • "WARNING" Add a spec descriptor for nodeWatch
    • +
    • "WARNING" Add a spec descriptor for nsVIP
    • -
    • "WARNING" (redis-enterprise-operator-preview.v6.0.20-12) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for cic
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for ingressClass
    • +
    • "WARNING" Add a spec descriptor for license
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Add a spec descriptor for nsIP
    • +
    • "WARNING" Add a spec descriptor for nsNamespace
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for defaultSSLCert
    • +
    • "WARNING" Add a spec descriptor for loginFileName
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Add a spec descriptor for nsPort
    • +
    • "WARNING" Add a spec descriptor for nsProtocol
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for exporter
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for kubernetesURL
    • +
    • "WARNING" Add a spec descriptor for logLevel
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `cic` in CitrixIngressController/v1alpha1
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `loginFileName` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Warning: Value citrix.com/v1, Kind=vip: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value citrix.com/v1, Kind=rewritepolicy: provided API should have an example annotation
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=authpolicy: provided API should have an example annotation
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" Warning: Value citrix.com/v1alpha1, Kind=HTTPRoute: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value citrix.com/v1alpha1, Kind=Listener: provided API should have an example annotation
    • -
      -

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=ratelimit: provided API should have an example annotation
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

      For citrix-api-gateway-operator.v0.0.1:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (citrix-api-gateway-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" provided API should have an example annotation
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    citrix-cpx-istio-sidecar-injector-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
      +

      For citrix-cpx-istio-sidecar-injector-operator.v0.9.5:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" citrix-cpx-istio-sidecar-injectors.citrix.citrix.com does not have a status descriptor
    • +
    • "ERROR" sidecarWebHook does not have a spec descriptor
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" webhook does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" xDSAdaptor does not have a spec descriptor
    • +
    • "ERROR" ADMSettings does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" certProvider does not have a spec descriptor
    • +
    • "ERROR" coe does not have a spec descriptor
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" cpxProxy does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" istioPilot does not have a spec descriptor
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add CRD validation for spec field `ADMSettings` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `certProvider` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `coe` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `cpxProxy` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `istioPilot` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add CRD validation for spec field `sidecarWebHook` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `webhook` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `xDSAdaptor` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for sidecarWebHook
    • +
    • "WARNING" Add a spec descriptor for webhook
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add a spec descriptor for xDSAdaptor
    • +
    • "WARNING" Add a spec descriptor for ADMSettings
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for certProvider
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for coe
    • +
    • "WARNING" Add a spec descriptor for cpxProxy
    • -
      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" Add a spec descriptor for istioPilot
    • -
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For redis-enterprise-operator.v6.0.20-12a:

      +

      For citrix-cpx-istio-sidecar-injector-operator.v0.9.5:

      -

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (citrix-cpx-istio-sidecar-injector-operator.v0.9.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrix-cpx-istio-sidecar-injectors.citrix.citrix.com"])
    • @@ -12442,24 +13271,24 @@
      Grade
    infinibox-operator-certifiedwavefront-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -12472,11 +13301,11 @@
      Grade

    NOT USED

    @@ -12486,75 +13315,81 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For infinibox-operator.v0.0.1:

      - -

    • "ERROR" infiniboxcsidrivers.charts.helm.k8s.io does not have a status descriptor
    • +

      For wavefront-operator.v0.1.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" csiDriverVersion does not have a spec descriptor
    • +
    • "ERROR" wavefrontproxies.wavefront.com does not have a status descriptor
    • -
    • "ERROR" images does not have a spec descriptor
    • +
    • "ERROR" wavefrontcollectors.wavefront.com does not have a status descriptor
    • -
    • "ERROR" instanceCount does not have a spec descriptor
    • +
    • "ERROR" token does not have a spec descriptor
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • +
    • "ERROR" url does not have a spec descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" volumeNamePrefix does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "ERROR" Infinibox_Cred does not have a spec descriptor
    • +
    • "ERROR" storageClaimName does not have a spec descriptor
    • -
    • "ERROR" csiDriverName does not have a spec descriptor
    • +
    • "ERROR" enableAutoUpgrade does not have a spec descriptor
    • +
    • "ERROR" env does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for csiDriverVersion
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for images
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for instanceCount
    • +
    • "ERROR" daemon does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "ERROR" useOpenshiftDefaultConfig does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for volumeNamePrefix
    • +
    • "ERROR" enableAutoUpgrade does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for Infinibox_Cred
    • -
    • "WARNING" Add a spec descriptor for csiDriverName
    • +
    • "WARNING" Add a spec descriptor for token
    • -
    • "WARNING" Add CRD validation for spec field `instanceCount` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for url
    • -
    • "WARNING" Add CRD validation for spec field `logLevel` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add CRD validation for spec field `volumeNamePrefix` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for storageClaimName
    • -
    • "WARNING" Add CRD validation for spec field `Infinibox_Cred` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for enableAutoUpgrade
    • -
    • "WARNING" Add CRD validation for spec field `csiDriverName` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for env
    • -
    • "WARNING" Add CRD validation for spec field `csiDriverVersion` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `images` in InfiniboxCsiDriver/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for daemon
    • + +
    • "WARNING" Add a spec descriptor for openshift
    • + +
    • "WARNING" Add a spec descriptor for useOpenshiftDefaultConfig
    • + +
    • "WARNING" Add a spec descriptor for enableAutoUpgrade
    • @@ -12565,27 +13400,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For infinibox-operator.v0.0.1:

      +

      For wavefront-operator.v0.1.0:

      -

    • "WARNING" (infinibox-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (wavefront-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infiniboxcsidrivers.charts.helm.k8s.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12595,32 +13430,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    instana-agentzoperator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -12629,11 +13464,11 @@
    Grade

    NOT USED

    @@ -12641,72 +13476,42 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For instana-agent-operator.v1.0.4:

      - -

    • "ERROR" agent.env does not have a spec descriptor
    • - -
    • "ERROR" cluster.name does not have a spec descriptor
    • - -
    • "ERROR" config.files does not have a spec descriptor
    • - -
    • "ERROR" agents.instana.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add CRD validation for InstanaAgent/v1beta1
    • - -
    • "WARNING" Add a spec descriptor for agent.env
    • - -
    • "WARNING" Add a spec descriptor for cluster.name
    • - -
    • "WARNING" Add a spec descriptor for config.files
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For instana-agent-operator.v1.0.4:

      +

      For zoperator.v0.3.6:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (zoperator.v0.3.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12716,32 +13521,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (300)
    bacula-operator2rocketchat-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -12750,83 +13555,89 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For bacula-operator.v0.0.1:

      +

      For rocketchat-operator.v0.1.0:

      -

    • "ERROR" baculae.bacula.baculasystems does not have a status descriptor
    • +
    • "ERROR" rocketchats.open.rocket.chat does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" mongodbDatabase does not have a spec descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "ERROR" mongodbReplicaName does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" mongodbReplicas does not have a spec descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "ERROR" mongodbSecretName does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" rocketchatReplicas does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "ERROR" volumeCapacity does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" labels does not have a spec descriptor
    • + +
    • "ERROR" memoryLimit does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `service` in Bacula/v1
    • +
    • "WARNING" Add CRD validation for spec field `rocketchatReplicas` in RocketChat/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `tolerations` in Bacula/v1
    • +
    • "WARNING" Add CRD validation for spec field `volumeCapacity` in RocketChat/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in Bacula/v1
    • +
    • "WARNING" Add CRD validation for spec field `labels` in RocketChat/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image` in Bacula/v1
    • +
    • "WARNING" Add CRD validation for spec field `memoryLimit` in RocketChat/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Bacula/v1
    • +
    • "WARNING" Add CRD validation for spec field `mongodbDatabase` in RocketChat/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in Bacula/v1
    • +
    • "WARNING" Add CRD validation for spec field `mongodbReplicaName` in RocketChat/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `resources` in Bacula/v1
    • +
    • "WARNING" Add CRD validation for spec field `mongodbReplicas` in RocketChat/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add CRD validation for spec field `mongodbSecretName` in RocketChat/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add a spec descriptor for mongodbDatabase
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for mongodbReplicaName
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "WARNING" Add a spec descriptor for mongodbReplicas
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "WARNING" Add a spec descriptor for mongodbSecretName
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "WARNING" Add a spec descriptor for rocketchatReplicas
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for volumeCapacity
    • + +
    • "WARNING" Add a spec descriptor for labels
    • + +
    • "WARNING" Add a spec descriptor for memoryLimit
    • @@ -12837,27 +13648,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For bacula-operator.v0.0.1:

      +

      For rocketchat-operator.v0.1.0:

      -

    • "WARNING" (bacula-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (rocketchat-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12867,35 +13678,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    federatorai-certifiedvprotect-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -12905,65 +13726,61 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For federatorai.v4.6.1-2:

      - -

    • "ERROR" fedemeterInfluxdb does not have a spec descriptor
    • - -
    • "ERROR" imageLocation does not have a spec descriptor
    • +

      For vprotect-operator.v0.0.2:

      -

    • "ERROR" keycode does not have a spec descriptor
    • +
    • "ERROR" initcontainerimage does not have a spec descriptor
    • -
    • "ERROR" storages does not have a spec descriptor
    • +
    • "ERROR" mariadb does not have a spec descriptor
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "ERROR" alamedaAi does not have a spec descriptor
    • +
    • "ERROR" node does not have a spec descriptor
    • -
    • "ERROR" alamedaInfluxdb does not have a spec descriptor
    • +
    • "ERROR" useImagePullSecret does not have a spec descriptor
    • +
    • "ERROR" imagePullSecretsName does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imageLocation` in AlamedaService/v1alpha1
    • +
    • "ERROR" vprotectdbservernodes.vprotect.storware.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `keycode` in AlamedaService/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `storages` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for initcontainerimage
    • -
    • "WARNING" Add CRD validation for spec field `version` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for mariadb
    • -
    • "WARNING" Add CRD validation for spec field `alamedaAi` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for server
    • -
    • "WARNING" Add CRD validation for spec field `alamedaInfluxdb` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for node
    • -
    • "WARNING" Add CRD validation for spec field `fedemeterInfluxdb` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for useImagePullSecret
    • -
    • "WARNING" Add a spec descriptor for fedemeterInfluxdb
    • +
    • "WARNING" Add a spec descriptor for imagePullSecretsName
    • -
    • "WARNING" Add a spec descriptor for imageLocation
    • +
    • "WARNING" Add CRD validation for spec field `node` in VProtectDBServerNode/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for keycode
    • +
    • "WARNING" Add CRD validation for spec field `useImagePullSecret` in VProtectDBServerNode/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for storages
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecretsName` in VProtectDBServerNode/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add CRD validation for spec field `initcontainerimage` in VProtectDBServerNode/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for alamedaAi
    • +
    • "WARNING" Add CRD validation for spec field `mariadb` in VProtectDBServerNode/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for alamedaInfluxdb
    • +
    • "WARNING" Add CRD validation for spec field `server` in VProtectDBServerNode/v1alpha1
    • @@ -12974,27 +13791,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For federatorai.v4.6.1-2:

      +

      For vprotect-operator.v0.0.2:

      -

    • "WARNING" (federatorai.v4.6.1-2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (vprotect-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alamedaservices.federatorai.containers.ai"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -13004,35 +13821,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    hedvig-operatorappdynamics-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -13040,42 +13867,78 @@
    Grade

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For appdynamics-operator.v0.6.3:

      + +

    • "ERROR" enableDockerViz does not have a spec descriptor
    • + +
    • "ERROR" enableMasters does not have a spec descriptor
    • + +
    • "ERROR" netVizPort does not have a spec descriptor
    • + +
    • "ERROR" stdoutLogging does not have a spec descriptor
    • + +
    • "ERROR" adams.appdynamics.com does not have a status descriptor
    • + +
    • "ERROR" clusteragents.appdynamics.com does not have a status descriptor
    • + +
    • "ERROR" infravizs.appdynamics.com does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for enableDockerViz
    • + +
    • "WARNING" Add a spec descriptor for enableMasters
    • + +
    • "WARNING" Add a spec descriptor for netVizPort
    • + +
    • "WARNING" Add a spec descriptor for stdoutLogging
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For hedvig-operator.v1.0.1:

      +

      For appdynamics-operator.v0.6.3:

      -

    • "WARNING" (hedvig-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (appdynamics-operator.v0.6.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" "infravizs.appdynamics.com"])
    • @@ -13085,98 +13948,88 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    iomesh-operatornvmesh-operator -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For iomesh-operator.v0.0.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Warning: Value : (iomesh-operator.v0.0.1) example annotations not found
    • - - - -
    -
    -
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For iomesh-operator.v0.0.1:

      - -

    • "ERROR" (iomesh-operator.v0.0.1) csv.Spec.Icon elements should contain both data and mediatype
    • +

      For nvmesh-operator.0.7.2:

      -

    • "WARNING" (iomesh-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (nvmesh-operator.0.7.2) csv.metadata.Name nvmesh-operator.0.7.2 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" (iomesh-operator.v0.0.1) example annotations not found
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -13186,32 +14039,32 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade C
    (400)
    neuvector-certified-operatorblackduck-connector-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -13220,103 +14073,141 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For neuvector-operator.v1.2.8:

      +

      For blackduck-connector-operator.v1.0.0:

      -

    • "ERROR" psp does not have a spec descriptor
    • +
    • "ERROR" imageGetter does not have a spec descriptor
    • -
    • "ERROR" enforcer does not have a spec descriptor
    • +
    • "ERROR" podProcessor does not have a spec descriptor
    • -
    • "ERROR" cve does not have a spec descriptor
    • +
    • "ERROR" processor does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" quayProcessor does not have a spec descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" status does not have a spec descriptor
    • -
    • "ERROR" manager does not have a spec descriptor
    • +
    • "ERROR" artifactoryProcessor does not have a spec descriptor
    • -
    • "ERROR" docker does not have a spec descriptor
    • +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • -
    • "ERROR" admissionwebhook does not have a spec descriptor
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "ERROR" crdwebhook does not have a spec descriptor
    • +
    • "ERROR" registry does not have a spec descriptor
    • -
    • "ERROR" openshift does not have a spec descriptor
    • +
    • "ERROR" scanner does not have a spec descriptor
    • -
    • "ERROR" controller does not have a spec descriptor
    • +
    • "ERROR" prometheus does not have a spec descriptor
    • -
    • "ERROR" k3s does not have a spec descriptor
    • +
    • "ERROR" blackduck does not have a spec descriptor
    • -
    • "ERROR" bottlerocket does not have a spec descriptor
    • +
    • "ERROR" core does not have a spec descriptor
    • -
    • "ERROR" containerd does not have a spec descriptor
    • +
    • "ERROR" externalBlackDuck does not have a spec descriptor
    • -
    • "ERROR" crio does not have a spec descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" neuvectors.apm.neuvector.com does not have a status descriptor
    • +
    • "ERROR" imageProcessor does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" imageTag does not have a spec descriptor
    • +
    • "ERROR" securedRegistries does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for psp
    • +
    • "ERROR" blackduckconnectors.charts.synopsys.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for enforcer
    • -
    • "WARNING" Add a spec descriptor for cve
    • +
    • "WARNING" Add CRD validation for spec field `status` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add CRD validation for spec field `processor` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for manager
    • +
    • "WARNING" Add CRD validation for spec field `scanner` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for docker
    • +
    • "WARNING" Add CRD validation for spec field `prometheus` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for admissionwebhook
    • +
    • "WARNING" Add CRD validation for spec field `blackduck` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for crdwebhook
    • +
    • "WARNING" Add CRD validation for spec field `imageGetter` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for openshift
    • +
    • "WARNING" Add CRD validation for spec field `imageTag` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for controller
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for k3s
    • +
    • "WARNING" Add CRD validation for spec field `registry` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for bottlerocket
    • +
    • "WARNING" Add CRD validation for spec field `quayProcessor` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for containerd
    • +
    • "WARNING" Add CRD validation for spec field `artifactoryProcessor` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for crio
    • +
    • "WARNING" Add CRD validation for spec field `core` in BlackduckConnector/v1alpha1
    • -
    • "WARNING" Add CRD validation for Neuvector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in BlackduckConnector/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imageProcessor` in BlackduckConnector/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for imageGetter
    • + +
    • "WARNING" Add a spec descriptor for podProcessor
    • + +
    • "WARNING" Add a spec descriptor for processor
    • + +
    • "WARNING" Add a spec descriptor for quayProcessor
    • + +
    • "WARNING" Add a spec descriptor for status
    • + +
    • "WARNING" Add a spec descriptor for artifactoryProcessor
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for nameOverride
    • + +
    • "WARNING" Add a spec descriptor for registry
    • + +
    • "WARNING" Add a spec descriptor for scanner
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for blackduck
    • + +
    • "WARNING" Add a spec descriptor for core
    • + +
    • "WARNING" Add a spec descriptor for externalBlackDuck
    • + +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • + +
    • "WARNING" Add a spec descriptor for imageProcessor
    • + +
    • "WARNING" Add a spec descriptor for imageTag
    • + +
    • "WARNING" Add a spec descriptor for securedRegistries
    • @@ -13325,29 +14216,31 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For neuvector-operator.v1.2.8:

      +

      For blackduck-connector-operator.v1.0.0:

      +

    • "ERROR" (blackduck-connector-operator.v1.0.0) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "WARNING" (neuvector-operator.v1.2.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (blackduck-connector-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -13357,22 +14250,22 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    t8c-certifiedcilium -

    PARTIAL COMPLY

    +

    COMPLY

    COMPLY

    @@ -13381,11 +14274,11 @@
    Grade

    NOT USED

    @@ -13395,31 +14288,65 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For t8c-operator.v8.2.0:

      +

      For cilium.v1.10.3-x49b6fc1:

      -

    • "ERROR" global does not have a spec descriptor
    • +
    • "ERROR" cni does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" ipam does not have a spec descriptor
    • -
    • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" prometheus does not have a spec descriptor
    • + +
    • "ERROR" hubble does not have a spec descriptor
    • +
    • "ERROR" nativeRoutingCIDR does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for global
    • +
    • "ERROR" endpointRoutes does not have a spec descriptor
    • + +
    • "ERROR" kubeProxyReplacement does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `ipam` in CiliumConfig/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `prometheus` in CiliumConfig/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `hubble` in CiliumConfig/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nativeRoutingCIDR` in CiliumConfig/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `endpointRoutes` in CiliumConfig/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kubeProxyReplacement` in CiliumConfig/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cni` in CiliumConfig/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for cni
    • + +
    • "WARNING" Add a spec descriptor for ipam
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for hubble
    • + +
    • "WARNING" Add a spec descriptor for nativeRoutingCIDR
    • + +
    • "WARNING" Add a spec descriptor for endpointRoutes
    • + +
    • "WARNING" Add a spec descriptor for kubeProxyReplacement
    • @@ -13430,27 +14357,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For t8c-operator.v8.2.0:

      - +

      For cilium.v1.10.3-x49b6fc1:

      -

    • "WARNING" (t8c-operator.v8.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (cilium.v1.10.3-x49b6fc1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -13460,28 +14385,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (600)
    appdynamics-operatorkong-offline-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -13494,11 +14419,11 @@
      Grade

    NOT USED

    @@ -13508,45 +14433,45 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For appdynamics-operator.v0.6.3:

      +

      For kong.v0.3.0:

      -

    • "ERROR" enableDockerViz does not have a spec descriptor
    • +
    • "ERROR" proxy does not have a spec descriptor
    • -
    • "ERROR" enableMasters does not have a spec descriptor
    • +
    • "ERROR" env does not have a spec descriptor
    • -
    • "ERROR" netVizPort does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" stdoutLogging does not have a spec descriptor
    • +
    • "ERROR" ingressController does not have a spec descriptor
    • -
    • "ERROR" adams.appdynamics.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" clusteragents.appdynamics.com does not have a status descriptor
    • +
    • "ERROR" kongs.charts.helm.k8s.io does not have a status descriptor
    • -
    • "ERROR" infravizs.appdynamics.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for proxy
    • -
    • "WARNING" Add a spec descriptor for enableDockerViz
    • +
    • "WARNING" Add a spec descriptor for env
    • -
    • "WARNING" Add a spec descriptor for enableMasters
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for netVizPort
    • +
    • "WARNING" Add a spec descriptor for ingressController
    • -
    • "WARNING" Add a spec descriptor for stdoutLogging
    • +
    • "WARNING" Add CRD validation for Kong/v1alpha1
    • @@ -13557,27 +14482,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For appdynamics-operator.v0.6.3:

      +

      For kong.v0.3.0:

      -

    • "WARNING" (appdynamics-operator.v0.6.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (kong.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" "infravizs.appdynamics.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kongs.charts.helm.k8s.io"])
    • @@ -13587,32 +14512,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    appsody-operator-certifiedkubemq-operator-marketplace -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -13621,11 +14546,11 @@
    Grade

    NOT USED

    @@ -13633,42 +14558,58 @@
    Grade

    NOT USED

    -

    PASS

    +

    ONLY ERRORS

    + +Info +
    +
      + + +
      +

      For kubemq-operator.v1.4.0:

      + +

    • "ERROR" error spec does not exist
    • + + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For appsody-operator.v0.6.1:

      +

      For kubemq-operator.v1.4.0:

      -

    • "WARNING" (appsody-operator.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (kubemq-operator.v1.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io" "kubemqconnectors.core.k8s.kubemq.io" "kubemqdashboards.core.k8s.kubemq.io"])
    • @@ -13678,135 +14619,69 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (100)
    ccm-node-agent-operatort8c-certified -

    COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ccm-node-agent-operator.v0.0.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" podAnnotations does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" serviceAccount does not have a spec descriptor
    • - -
    • "ERROR" ccmJoinToken does not have a spec descriptor
    • - -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • - -
    • "ERROR" ports does not have a spec descriptor
    • - -
    • "ERROR" replicaCount does not have a spec descriptor
    • - -
    • "ERROR" log does not have a spec descriptor
    • - -
    • "ERROR" nameOverride does not have a spec descriptor
    • - -
    • "ERROR" ccmnodeagents.charts.operatorhub.io does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for podAnnotations
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for ccmJoinToken
    • - -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • - -
    • "WARNING" Add a spec descriptor for ports
    • - -
    • "WARNING" Add a spec descriptor for replicaCount
    • - -
    • "WARNING" Add a spec descriptor for log
    • - -
    • "WARNING" Add a spec descriptor for nameOverride
    • - -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in CcmNodeAgent/v1
    • - -
    • "WARNING" Add CRD validation for spec field `ccmJoinToken` in CcmNodeAgent/v1
    • - -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in CcmNodeAgent/v1
    • - -
    • "WARNING" Add CRD validation for spec field `nameOverride` in CcmNodeAgent/v1
    • - -
    • "WARNING" Add CRD validation for spec field `ports` in CcmNodeAgent/v1
    • +

      For t8c-operator.v8.2.0:

      -

    • "WARNING" Add CRD validation for spec field `replicaCount` in CcmNodeAgent/v1
    • +
    • "ERROR" global does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `resources` in CcmNodeAgent/v1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `image` in CcmNodeAgent/v1
    • +
    • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `log` in CcmNodeAgent/v1
    • -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for global
    • @@ -13817,25 +14692,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ccm-node-agent-operator.v0.0.1:

      +

      For t8c-operator.v8.2.0:

      -

    • "WARNING" (ccm-node-agent-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (t8c-operator.v8.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -13845,28 +14722,28 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (200)
    citrix-cpx-istio-sidecar-injector-operatorcloudbees-ci -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -13879,11 +14756,11 @@
      Grade

    NOT USED

    @@ -13893,75 +14770,95 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-cpx-istio-sidecar-injector-operator.v0.9.5:

      +

      For cloudbees-ci.v3.34.1:

      + +

    • "ERROR" sidecarinjector does not have a spec descriptor
    • + +
    • "ERROR" Agents does not have a spec descriptor
    • + +
    • "ERROR" Hibernation does not have a spec descriptor
    • + +
    • "ERROR" OperationsCenter does not have a spec descriptor
    • + +
    • "ERROR" Subdomain does not have a spec descriptor
    • + +
    • "ERROR" ingress-nginx does not have a spec descriptor
    • + +
    • "ERROR" rbac does not have a spec descriptor
    • + +
    • "ERROR" Master does not have a spec descriptor
    • + +
    • "ERROR" NetworkPolicy does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" Persistence does not have a spec descriptor
    • -
    • "ERROR" citrix-cpx-istio-sidecar-injectors.citrix.citrix.com does not have a status descriptor
    • +
    • "ERROR" PodSecurityPolicy does not have a spec descriptor
    • -
    • "ERROR" sidecarWebHook does not have a spec descriptor
    • +
    • "ERROR" nginx-ingress does not have a spec descriptor
    • -
    • "ERROR" webhook does not have a spec descriptor
    • +
    • "ERROR" cloudbeescis.charts.cloudbees.com does not have a status descriptor
    • -
    • "ERROR" xDSAdaptor does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ADMSettings does not have a spec descriptor
    • -
    • "ERROR" certProvider does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `sidecarinjector` in CloudBeesCI/v1alpha1
    • -
    • "ERROR" coe does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `Agents` in CloudBeesCI/v1alpha1
    • -
    • "ERROR" cpxProxy does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `Master` in CloudBeesCI/v1alpha1
    • -
    • "ERROR" istioPilot does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `NetworkPolicy` in CloudBeesCI/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `Persistence` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ADMSettings` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nginx-ingress` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `certProvider` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `Hibernation` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `coe` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `PodSecurityPolicy` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `cpxProxy` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `ingress-nginx` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `istioPilot` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `rbac` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `sidecarWebHook` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for sidecarinjector
    • -
    • "WARNING" Add CRD validation for spec field `webhook` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for Agents
    • -
    • "WARNING" Add CRD validation for spec field `xDSAdaptor` in Citrix-cpx-istio-sidecar-injector/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for Hibernation
    • -
    • "WARNING" Add a spec descriptor for sidecarWebHook
    • +
    • "WARNING" Add a spec descriptor for OperationsCenter
    • -
    • "WARNING" Add a spec descriptor for webhook
    • +
    • "WARNING" Add a spec descriptor for Subdomain
    • -
    • "WARNING" Add a spec descriptor for xDSAdaptor
    • +
    • "WARNING" Add a spec descriptor for ingress-nginx
    • -
    • "WARNING" Add a spec descriptor for ADMSettings
    • +
    • "WARNING" Add a spec descriptor for rbac
    • -
    • "WARNING" Add a spec descriptor for certProvider
    • +
    • "WARNING" Add a spec descriptor for Master
    • -
    • "WARNING" Add a spec descriptor for coe
    • +
    • "WARNING" Add a spec descriptor for NetworkPolicy
    • -
    • "WARNING" Add a spec descriptor for cpxProxy
    • +
    • "WARNING" Add a spec descriptor for Persistence
    • -
    • "WARNING" Add a spec descriptor for istioPilot
    • +
    • "WARNING" Add a spec descriptor for PodSecurityPolicy
    • + +
    • "WARNING" Add a spec descriptor for nginx-ingress
    • @@ -13972,27 +14869,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-cpx-istio-sidecar-injector-operator.v0.9.5:

      - +

      For cloudbees-ci.v3.34.1:

      -

    • "WARNING" (citrix-cpx-istio-sidecar-injector-operator.v0.9.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrix-cpx-istio-sidecar-injectors.citrix.citrix.com"])
    • +
    • "WARNING" (cloudbees-ci.v3.34.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -14002,28 +14897,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (600)
    eddi-operator-certifiedhazelcast-jet-enterprise-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14036,11 +14931,11 @@
      Grade

    NOT USED

    @@ -14048,27 +14943,47 @@
    Grade

    NOT USED

    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For eddi-operator.v1.0.2:

      +

      For hazelcast-jet-enterprise-operator.v0.2.0:

      +

    • "ERROR" hazelcastjetenterprises.hazelcast.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for Eddioperator/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" jet does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" cluster does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJetEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `jet` in HazelcastJetEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJetEnterprise/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for jet
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add a spec descriptor for cluster
    • @@ -14079,27 +14994,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For eddi-operator.v1.0.2:

      +

      For hazelcast-jet-enterprise-operator.v0.2.0:

      -

    • "WARNING" (eddi-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (hazelcast-jet-enterprise-operator.v0.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14109,28 +15024,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    hazelcast-enterprise-certifieddb2-zos-db-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14143,51 +15058,45 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For hazelcast-enterprise-operator.v0.3.7:

      +

      For db2-zos-db-operator.v0.0.2:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" hazelcast does not have a spec descriptor
    • - -
    • "ERROR" securityContext does not have a spec descriptor
    • - -
    • "ERROR" hazelcastenterprises.hazelcast.com does not have a status descriptor
    • - +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for HazelcastEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for hazelcast
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add CRD validation for spec field `image` in Db2-zos-db/v1alpha1
    • @@ -14198,27 +15107,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For hazelcast-enterprise-operator.v0.3.7:

      +

      For db2-zos-db-operator.v0.0.2:

      -

    • "WARNING" (hazelcast-enterprise-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (db2-zos-db-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14232,24 +15141,24 @@
      Grade
    openshiftpipeline-operatormf-cics-ts-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14260,57 +15169,47 @@
      Grade
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • pipeline-operator.v1.0.1
    • - -
    -
    -

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For pipeline-operator.v1.0.1:

      +

      For mf-cics-ts-operator.v0.0.1:

      -

    • "ERROR" pipelines does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" openshiftpipelines.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for pipelines
    • +
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-ts/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `pipelines` in OpenshiftPipeline/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image
    • @@ -14321,27 +15220,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For pipeline-operator.v1.0.1:

      +

      For mf-cics-ts-operator.v0.0.1:

      -

    • "WARNING" (pipeline-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (mf-cics-ts-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14355,24 +15254,24 @@
      Grade
    vprotect-operatortimemachine-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14385,11 +15284,11 @@
      Grade

    NOT USED

    @@ -14399,61 +15298,31 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For vprotect-operator.v0.0.2:

      - -

    • "ERROR" initcontainerimage does not have a spec descriptor
    • - -
    • "ERROR" mariadb does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" node does not have a spec descriptor
    • - -
    • "ERROR" useImagePullSecret does not have a spec descriptor
    • - -
    • "ERROR" imagePullSecretsName does not have a spec descriptor
    • - -
    • "ERROR" vprotectdbservernodes.vprotect.storware.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for initcontainerimage
    • - -
    • "WARNING" Add a spec descriptor for mariadb
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for node
    • - -
    • "WARNING" Add a spec descriptor for useImagePullSecret
    • - -
    • "WARNING" Add a spec descriptor for imagePullSecretsName
    • - -
    • "WARNING" Add CRD validation for spec field `node` in VProtectDBServerNode/v1alpha1
    • +

      For time-machine-operator4.v0.0.4:

      -

    • "WARNING" Add CRD validation for spec field `useImagePullSecret` in VProtectDBServerNode/v1alpha1
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecretsName` in VProtectDBServerNode/v1alpha1
    • +
    • "ERROR" timemachines.tm.solution-soft.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `initcontainerimage` in VProtectDBServerNode/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `mariadb` in VProtectDBServerNode/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add CRD validation for spec field `server` in VProtectDBServerNode/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `size` in TimeMachine/v1alpha1
    • @@ -14464,27 +15333,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For vprotect-operator.v0.0.2:

      +

      For time-machine-operator4.v0.0.4:

      -

    • "WARNING" (vprotect-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (time-machine-operator4.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["timemachines.tm.solution-soft.com"])
    • @@ -14494,76 +15363,134 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    anzograph-operatoratomicorp-helm-operator-certified -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    USED

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For atomicorp-helm-operator.v0.0.1:

      + +

    • "ERROR" atomicorps.atomicorp.com does not have a status descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" routes does not have a spec descriptor
    • + +
    • "ERROR" service does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for routes
    • + +
    • "WARNING" Add a spec descriptor for service
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add CRD validation for spec field `image` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `routes` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `service` in Atomicorp/v1alpha1
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For anzograph-operator.v2.0.102:

      +

      For atomicorp-helm-operator.v0.0.1:

      -

    • "WARNING" (anzograph-operator.v2.0.102) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (atomicorp-helm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14573,28 +15500,28 @@
      Grade

    NOT USED

    Grade A
    (900)
    Grade D
    (100)
    joget-openshift-operatoraws-event-sources-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14605,59 +15532,101 @@
      Grade
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • joget-openshift-operator.v0.0.4
    • - -
    -
    -

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For joget-openshift-operator.v0.0.4:

      +

      For aws-sources-operator.v0.3.0:

      -

    • "ERROR" joget.app.joget.com does not have a status descriptor
    • +
    • "ERROR" awseventsources.sources.triggermesh.com does not have a status descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" rbac does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" adapters does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" nameOverride does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" podAnnotations does not have a spec descriptor
    • + +
    • "ERROR" podSecurityContext does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" serviceAccount does not have a spec descriptor
    • + +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for rbac
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for adapters
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for nameOverride
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for podAnnotations
    • + +
    • "WARNING" Add a spec descriptor for podSecurityContext
    • + +
    • "WARNING" Add a spec descriptor for affinity
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add CRD validation for Joget/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "WARNING" Add CRD validation for AwsEventSources/v1alpha1
    • @@ -14668,27 +15637,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For joget-openshift-operator.v0.0.4:

      +

      For aws-sources-operator.v0.3.0:

      -

    • "WARNING" (joget-openshift-operator.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (aws-sources-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14698,28 +15667,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    kpow-io-certifiedcitrix-cpx-with-ingress-controller-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14732,11 +15701,11 @@
      Grade

    NOT USED

    @@ -14746,133 +15715,255 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For kpow-io.v1.0.3:

      +

      For citrix-cpx-with-ingress-controller-operator.v1.13.20:

      -

    • "ERROR" kpows.kpow.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" schema_registry_configuration does not have a spec descriptor
    • +
    • "ERROR" citrixcpxwithingresscontrollers.citrix.com does not have a status descriptor
    • -
    • "ERROR" slack_integration does not have a spec descriptor
    • +
    • "ERROR" ipam does not have a spec descriptor
    • -
    • "ERROR" saml_sso_options does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" bootstrap does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "ERROR" kafka_cluster_configuration does not have a spec descriptor
    • +
    • "ERROR" sslCertManagedByAWS does not have a spec descriptor
    • -
    • "ERROR" data_policy_configuration does not have a spec descriptor
    • +
    • "ERROR" crds does not have a spec descriptor
    • -
    • "ERROR" global_access_configuration does not have a spec descriptor
    • +
    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • -
    • "ERROR" live_mode_configuration does not have a spec descriptor
    • +
    • "ERROR" logProxy does not have a spec descriptor
    • -
    • "ERROR" license_configuration does not have a spec descriptor
    • +
    • "ERROR" mgmtHttpPort does not have a spec descriptor
    • -
    • "ERROR" environment_name does not have a spec descriptor
    • +
    • "ERROR" routeLabels does not have a spec descriptor
    • -
    • "ERROR" https_configuration does not have a spec descriptor
    • +
    • "ERROR" serviceAnnotations does not have a spec descriptor
    • -
    • "ERROR" serdis_configuration does not have a spec descriptor
    • +
    • "ERROR" serviceType does not have a spec descriptor
    • -
    • "ERROR" okta_sso_options does not have a spec descriptor
    • +
    • "ERROR" setAsDefaultIngressClass does not have a spec descriptor
    • -
    • "ERROR" github_sso_options does not have a spec descriptor
    • +
    • "ERROR" azure does not have a spec descriptor
    • -
    • "ERROR" kafka_connect_configuration does not have a spec descriptor
    • +
    • "ERROR" coeConfig does not have a spec descriptor
    • -
    • "ERROR" prometheus_egress does not have a spec descriptor
    • +
    • "ERROR" entityPrefix does not have a spec descriptor
    • -
    • "ERROR" rbac_configuration does not have a spec descriptor
    • +
    • "ERROR" exporter does not have a spec descriptor
    • -
    • "ERROR" system_configuration does not have a spec descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" updateIngressStatus does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `environment_name` in Kpow/v1beta1
    • +
    • "ERROR" cic does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `https_configuration` in Kpow/v1beta1
    • +
    • "ERROR" namespaceLabels does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `schema_registry_configuration` in Kpow/v1beta1
    • +
    • "ERROR" cpxBgpRouter does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `github_sso_options` in Kpow/v1beta1
    • +
    • "ERROR" bgpSettings does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `live_mode_configuration` in Kpow/v1beta1
    • +
    • "ERROR" pullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `slack_integration` in Kpow/v1beta1
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `saml_sso_options` in Kpow/v1beta1
    • +
    • "ERROR" ADMSettings does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `system_configuration` in Kpow/v1beta1
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `data_policy_configuration` in Kpow/v1beta1
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `kafka_connect_configuration` in Kpow/v1beta1
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `rbac_configuration` in Kpow/v1beta1
    • +
    • "ERROR" nsCookieVersion does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `serdis_configuration` in Kpow/v1beta1
    • +
    • "ERROR" nsGateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `okta_sso_options` in Kpow/v1beta1
    • +
    • "ERROR" nsHTTP2ServerSide does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `license_configuration` in Kpow/v1beta1
    • +
    • "ERROR" aws does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `bootstrap` in Kpow/v1beta1
    • +
    • "ERROR" nsIP does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `kafka_cluster_configuration` in Kpow/v1beta1
    • +
    • "ERROR" mgmtHttpsPort does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `global_access_configuration` in Kpow/v1beta1
    • +
    • "ERROR" ingressIP does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `prometheus_egress` in Kpow/v1beta1
    • +
    • "ERROR" kubernetesURL does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for schema_registry_configuration
    • +
    • "ERROR" nsProtocol does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for slack_integration
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for saml_sso_options
    • -
    • "WARNING" Add a spec descriptor for bootstrap
    • +
    • "WARNING" Add CRD validation for spec field `aws` in CitrixCpxWithIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kafka_cluster_configuration
    • +
    • "WARNING" Add CRD validation for spec field `cpxBgpRouter` in CitrixCpxWithIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for data_policy_configuration
    • +
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `mgmtHttpsPort` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `namespaceLabels` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsCookieVersion` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsGateway` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `logProxy` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `mgmtHttpPort` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tolerations` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `bgpSettings` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cic` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingressIP` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `serviceAnnotations` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `setAsDefaultIngressClass` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `entityPrefix` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `pullPolicy` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `routeLabels` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ADMSettings` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `updateIngressStatus` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsHTTP2ServerSide` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `azure` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `coeConfig` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `crds` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `defaultSSLCertSecret` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ipam` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `license` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `serviceType` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `sslCertManagedByAWS` in CitrixCpxWithIngressController/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for ipam
    • + +
    • "WARNING" Add a spec descriptor for license
    • + +
    • "WARNING" Add a spec descriptor for openshift
    • + +
    • "WARNING" Add a spec descriptor for sslCertManagedByAWS
    • + +
    • "WARNING" Add a spec descriptor for crds
    • + +
    • "WARNING" Add a spec descriptor for defaultSSLCertSecret
    • + +
    • "WARNING" Add a spec descriptor for logProxy
    • + +
    • "WARNING" Add a spec descriptor for mgmtHttpPort
    • + +
    • "WARNING" Add a spec descriptor for routeLabels
    • + +
    • "WARNING" Add a spec descriptor for serviceAnnotations
    • + +
    • "WARNING" Add a spec descriptor for serviceType
    • + +
    • "WARNING" Add a spec descriptor for setAsDefaultIngressClass
    • + +
    • "WARNING" Add a spec descriptor for azure
    • + +
    • "WARNING" Add a spec descriptor for coeConfig
    • + +
    • "WARNING" Add a spec descriptor for entityPrefix
    • + +
    • "WARNING" Add a spec descriptor for exporter
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • + +
    • "WARNING" Add a spec descriptor for updateIngressStatus
    • + +
    • "WARNING" Add a spec descriptor for cic
    • + +
    • "WARNING" Add a spec descriptor for namespaceLabels
    • + +
    • "WARNING" Add a spec descriptor for cpxBgpRouter
    • + +
    • "WARNING" Add a spec descriptor for bgpSettings
    • + +
    • "WARNING" Add a spec descriptor for pullPolicy
    • + +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for ADMSettings
    • + +
    • "WARNING" Add a spec descriptor for ingressClass
    • -
    • "WARNING" Add a spec descriptor for global_access_configuration
    • +
    • "WARNING" Add a spec descriptor for logLevel
    • -
    • "WARNING" Add a spec descriptor for live_mode_configuration
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add a spec descriptor for license_configuration
    • +
    • "WARNING" Add a spec descriptor for nsCookieVersion
    • -
    • "WARNING" Add a spec descriptor for environment_name
    • +
    • "WARNING" Add a spec descriptor for nsGateway
    • -
    • "WARNING" Add a spec descriptor for https_configuration
    • +
    • "WARNING" Add a spec descriptor for nsHTTP2ServerSide
    • -
    • "WARNING" Add a spec descriptor for serdis_configuration
    • +
    • "WARNING" Add a spec descriptor for aws
    • -
    • "WARNING" Add a spec descriptor for okta_sso_options
    • +
    • "WARNING" Add a spec descriptor for nsIP
    • -
    • "WARNING" Add a spec descriptor for github_sso_options
    • +
    • "WARNING" Add a spec descriptor for mgmtHttpsPort
    • -
    • "WARNING" Add a spec descriptor for kafka_connect_configuration
    • +
    • "WARNING" Add a spec descriptor for ingressIP
    • -
    • "WARNING" Add a spec descriptor for prometheus_egress
    • +
    • "WARNING" Add a spec descriptor for kubernetesURL
    • -
    • "WARNING" Add a spec descriptor for rbac_configuration
    • +
    • "WARNING" Add a spec descriptor for nsProtocol
    • -
    • "WARNING" Add a spec descriptor for system_configuration
    • +
    • "WARNING" Add a spec descriptor for image
    • @@ -14883,27 +15974,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For kpow-io.v1.0.3:

      +

      For citrix-cpx-with-ingress-controller-operator.v1.13.20:

      -

    • "WARNING" (kpow-io.v1.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (citrix-cpx-with-ingress-controller-operator.v1.13.20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14913,119 +16004,125 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    nxiq-operator-certifiedcloud-native-postgresql -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    • alpha
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For nxiq-operator-certified.v1.121.0-2:

      +

      For cloud-native-postgresql.v1.0.0:

      -

    • "ERROR" nexusiqs.sonatype.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" persistence does not have a spec descriptor
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "ERROR" storage does not have a spec descriptor
    • -
    • "ERROR" deployment does not have a spec descriptor
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for storage
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "ERROR" iq does not have a spec descriptor
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
      +

      For cloud-native-postgresql.v1.0.0:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in NexusIQ/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `iq` in NexusIQ/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nameOverride` in NexusIQ/v1alpha1
    • +
    • "ERROR" storage does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `service` in NexusIQ/v1alpha1
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `deployment` in NexusIQ/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in NexusIQ/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in NexusIQ/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for storage
    • -
    • "WARNING" Add CRD validation for spec field `persistence` in NexusIQ/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in NexusIQ/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for persistence
    • +
      +

      For cloud-native-postgresql.v1.1.0:

      -

    • "WARNING" Add a spec descriptor for service
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for deployment
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "ERROR" storage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "WARNING" Add a spec descriptor for iq
    • +
    • "WARNING" Add a spec descriptor for storage
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "WARNING" Add a spec descriptor for cluster
    • @@ -15036,132 +16133,45 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For nxiq-operator-certified.v1.121.0-2:

      - - -

    • "WARNING" (nxiq-operator-certified.v1.121.0-2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nexusiqs.sonatype.com"])
    • - +

      For cloud-native-postgresql.v1.0.0:

      -

    -
    - -

    NOT USED

    Grade D
    (300)
    oneagent-certified -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      +
    • "WARNING" (cloud-native-postgresql.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
      -

      For dynatrace-monitoring.v0.10.1:

      +

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
      +

      For cloud-native-postgresql.v1.0.0:

      +

    • "WARNING" (cloud-native-postgresql.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For dynatrace-monitoring.v0.10.1:

      +

      For cloud-native-postgresql.v1.1.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (cloud-native-postgresql.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -15171,22 +16181,22 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    perceptilabs-operator-packageelasticsearch-eck-operator-certified -

    PARTIAL COMPLY

    +

    COMPLY

    COMPLY

    @@ -15195,11 +16205,11 @@
    Grade

    NOT USED

    @@ -15209,49 +16219,139 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For perceptilabs-operator.v1.0.21:

      +

      For elasticsearch-eck-operator-certified.v1.7.1:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" perceptilabs.perceptilabs.com does not have a status descriptor
    • +
    • "ERROR" elasticsearches.elasticsearch.k8s.elastic.co does not have a status descriptor
    • -
    • "ERROR" ryggPvc does not have a spec descriptor
    • +
    • "ERROR" kibanas.kibana.k8s.elastic.co does not have a status descriptor
    • -
    • "ERROR" coreGpus does not have a spec descriptor
    • +
    • "ERROR" apmservers.apm.k8s.elastic.co does not have a status descriptor
    • -
    • "ERROR" license_name does not have a spec descriptor
    • +
    • "ERROR" enterprisesearches.enterprisesearch.k8s.elastic.co does not have a status descriptor
    • -
    • "ERROR" license_value does not have a spec descriptor
    • +
    • "ERROR" beats.beat.k8s.elastic.co does not have a status descriptor
    • -
    • "ERROR" corePvc does not have a spec descriptor
    • +
    • "ERROR" agents.agent.k8s.elastic.co does not have a status descriptor
    • +
    • "ERROR" elasticmapsservers.maps.k8s.elastic.co does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for PerceptiLabs/v1
    • +
    • "ERROR" version does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ryggPvc
    • +
    • "ERROR" nodeSets does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for coreGpus
    • +
    • "ERROR" version does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for license_name
    • +
    • "ERROR" count does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for license_value
    • +
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for corePvc
    • +
    • "ERROR" podTemplate does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" count does not have a spec descriptor
    • + +
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" config does not have a spec descriptor
    • + +
    • "ERROR" count does not have a spec descriptor
    • + +
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • + +
    • "ERROR" config does not have a spec descriptor
    • + +
    • "ERROR" deployment does not have a spec descriptor
    • + +
    • "ERROR" type does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" elasticsearchRefs does not have a spec descriptor
    • + +
    • "ERROR" daemonSet does not have a spec descriptor
    • + +
    • "ERROR" config does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" count does not have a spec descriptor
    • + +
    • "ERROR" elasticsearchRef does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for nodeSets
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for count
    • + +
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • + +
    • "WARNING" Add a spec descriptor for podTemplate
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for count
    • + +
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for config
    • + +
    • "WARNING" Add a spec descriptor for count
    • + +
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • + +
    • "WARNING" Add a spec descriptor for config
    • + +
    • "WARNING" Add a spec descriptor for deployment
    • + +
    • "WARNING" Add a spec descriptor for type
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for elasticsearchRefs
    • + +
    • "WARNING" Add a spec descriptor for daemonSet
    • + +
    • "WARNING" Add a spec descriptor for config
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for count
    • + +
    • "WARNING" Add a spec descriptor for elasticsearchRef
    • @@ -15260,77 +16360,49 @@
      Grade
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For perceptilabs-operator.v1.0.21:

      - - -

    • "WARNING" (perceptilabs-operator.v1.0.21) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    -

    NOT USED

    Grade D
    (300)
    Grade B
    (700)
    transform-adv-operatorfederatorai-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • v2.3
    • - -
    -
    -

    NOT USED

    @@ -15340,160 +16412,164 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ta-operator.v2.3.4:

      - -

    • "ERROR" demo does not have a spec descriptor
    • - -
    • "ERROR" networkPolicy does not have a spec descriptor
    • - -
    • "ERROR" fips does not have a spec descriptor
    • - -
    • "ERROR" couchdb does not have a spec descriptor
    • - -
    • "ERROR" transadv does not have a spec descriptor
    • - -
    • "ERROR" transadvui does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" commonServices does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" tls does not have a spec descriptor
    • - -
    • "ERROR" nodePortConfig does not have a spec descriptor
    • - -
    • "ERROR" authentication does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `transadv` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `demo` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `networkPolicy` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `tls` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `fips` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `couchdb` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `transadvui` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `commonServices` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `route` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `nodePortConfig` in TransAdv/v1
    • - -
    • "WARNING" Add CRD validation for spec field `authentication` in TransAdv/v1
    • - -
    • "WARNING" Add a spec descriptor for demo
    • - -
    • "WARNING" Add a spec descriptor for networkPolicy
    • - -
    • "WARNING" Add a spec descriptor for fips
    • - -
    • "WARNING" Add a spec descriptor for couchdb
    • - -
    • "WARNING" Add a spec descriptor for transadv
    • - -
    • "WARNING" Add a spec descriptor for transadvui
    • - -
    • "WARNING" Add a spec descriptor for license
    • - -
    • "WARNING" Add a spec descriptor for commonServices
    • - -
    • "WARNING" Add a spec descriptor for route
    • +

      For federatorai.v4.6.1-2:

      -

    • "WARNING" Add a spec descriptor for tls
    • +
    • "ERROR" fedemeterInfluxdb does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodePortConfig
    • +
    • "ERROR" imageLocation does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for authentication
    • +
    • "ERROR" keycode does not have a spec descriptor
    • +
    • "ERROR" storages does not have a spec descriptor
    • -
      -

      For ta-operator.v2.2.0:

      +

    • "ERROR" version does not have a spec descriptor
    • -
    • "ERROR" networkPolicy does not have a spec descriptor
    • +
    • "ERROR" alamedaAi does not have a spec descriptor
    • -
    • "ERROR" nodePortConfig does not have a spec descriptor
    • +
    • "ERROR" alamedaInfluxdb does not have a spec descriptor
    • -
    • "ERROR" transadv does not have a spec descriptor
    • -
    • "ERROR" tls does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `imageLocation` in AlamedaService/v1alpha1
    • -
    • "ERROR" authentication does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `keycode` in AlamedaService/v1alpha1
    • -
    • "ERROR" couchdb does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `storages` in AlamedaService/v1alpha1
    • -
    • "ERROR" transadvui does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `version` in AlamedaService/v1alpha1
    • -
    • "ERROR" commonServices does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `alamedaAi` in AlamedaService/v1alpha1
    • -
    • "ERROR" demo does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `alamedaInfluxdb` in AlamedaService/v1alpha1
    • -
    • "ERROR" route does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `fedemeterInfluxdb` in AlamedaService/v1alpha1
    • -
    • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
    • +
    • "WARNING" Add a spec descriptor for fedemeterInfluxdb
    • +
    • "WARNING" Add a spec descriptor for imageLocation
    • -
    • "WARNING" Add a spec descriptor for networkPolicy
    • +
    • "WARNING" Add a spec descriptor for keycode
    • -
    • "WARNING" Add a spec descriptor for nodePortConfig
    • +
    • "WARNING" Add a spec descriptor for storages
    • -
    • "WARNING" Add a spec descriptor for transadv
    • +
    • "WARNING" Add a spec descriptor for version
    • -
    • "WARNING" Add a spec descriptor for tls
    • +
    • "WARNING" Add a spec descriptor for alamedaAi
    • -
    • "WARNING" Add a spec descriptor for authentication
    • +
    • "WARNING" Add a spec descriptor for alamedaInfluxdb
    • -
    • "WARNING" Add a spec descriptor for couchdb
    • -
    • "WARNING" Add a spec descriptor for transadvui
    • -
    • "WARNING" Add a spec descriptor for commonServices
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for demo
    • -
    • "WARNING" Add a spec descriptor for route
    • +
      +

      For federatorai.v4.6.1-2:

      -

    • "WARNING" Add CRD validation for spec field `nodePortConfig` in TransAdv/v1
    • -
    • "WARNING" Add CRD validation for spec field `route` in TransAdv/v1
    • +
    • "WARNING" (federatorai.v4.6.1-2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `demo` in TransAdv/v1
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alamedaservices.federatorai.containers.ai"])
    • -
    • "WARNING" Add CRD validation for spec field `networkPolicy` in TransAdv/v1
    • -
    • "WARNING" Add CRD validation for spec field `tls` in TransAdv/v1
    • -
    • "WARNING" Add CRD validation for spec field `authentication` in TransAdv/v1
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    hspc-operator +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    ONLY ERRORS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `couchdb` in TransAdv/v1
    • + +
      +

      For hspc-operator.v1.5.0:

      -

    • "WARNING" Add CRD validation for spec field `transadv` in TransAdv/v1
    • +
    • "ERROR" hspcs.csi.hitachi.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `transadvui` in TransAdv/v1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `commonServices` in TransAdv/v1
    • @@ -15504,36 +16580,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ta-operator.v2.3.4:

      - - -

    • "WARNING" (ta-operator.v2.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For ta-operator.v2.2.0:

      +

      For hspc-operator.v1.5.0:

      -

    • "WARNING" (ta-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (hspc-operator.v1.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -15543,32 +16610,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (300)
    as400rpc-operatorredhat-marketplace-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -15577,11 +16644,11 @@
    Grade

    NOT USED

    @@ -15591,89 +16658,134 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For as400rpc-operator.v0.0.5:

      +

      For redhat-marketplace-operator.v1.0.6:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" as400rpcs.openlegacy.com does not have a status descriptor
    • +
    • "ERROR" remoteresources3s.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
      +

      For redhat-marketplace-operator.v2.1.0:

      -

    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    • "ERROR" marketplaceconfigs.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" meterbases.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" meterreports.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" razeedeployments.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" remoteresources3s.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "ERROR" meterdefinitions.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" podSecurityContext does not have a spec descriptor
    • +
    • "ERROR" meterdefinitions.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "ERROR" deploySecretName does not have a spec descriptor
    • + +
    • "ERROR" installIBMCatalogSource does not have a spec descriptor
    • + +
    • "ERROR" rhmAccountID does not have a spec descriptor
    • + +
    • "ERROR" clusterUUID does not have a spec descriptor
    • + +
    • "ERROR" enabled does not have a spec descriptor
    • + +
    • "ERROR" prometheus does not have a spec descriptor
    • + +
    • "ERROR" endTime does not have a spec descriptor
    • + +
    • "ERROR" prometheusService does not have a spec descriptor
    • + +
    • "ERROR" startTime does not have a spec descriptor
    • + +
    • "ERROR" clusterUUID does not have a spec descriptor
    • + +
    • "ERROR" enabled does not have a spec descriptor
    • + +
    • "ERROR" auth does not have a spec descriptor
    • + +
    • "ERROR" requests does not have a spec descriptor
    • + +
    • "ERROR" meters does not have a spec descriptor
    • + +
    • "ERROR" resourceFilters does not have a spec descriptor
    • + +
    • "ERROR" group does not have a spec descriptor
    • + +
    • "ERROR" kind does not have a spec descriptor
    • + +
    • "ERROR" group does not have a spec descriptor
    • + +
    • "ERROR" kind does not have a spec descriptor
    • + +
    • "ERROR" meters does not have a spec descriptor
    • + +
    • "ERROR" resourceFilters does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for deploySecretName
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for installIBMCatalogSource
    • -
    • "ERROR" autoscaling does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for rhmAccountID
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for clusterUUID
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for enabled
    • +
    • "WARNING" Add a spec descriptor for prometheus
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "WARNING" Add a spec descriptor for endTime
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "WARNING" Add a spec descriptor for prometheusService
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "WARNING" Add a spec descriptor for startTime
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "WARNING" Add a spec descriptor for clusterUUID
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for enabled
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for auth
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add a spec descriptor for requests
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "WARNING" Add a spec descriptor for meters
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "WARNING" Add a spec descriptor for resourceFilters
    • -
    • "WARNING" Add a spec descriptor for podSecurityContext
    • +
    • "WARNING" Add a spec descriptor for group
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add a spec descriptor for kind
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add a spec descriptor for group
    • -
    • "WARNING" Add a spec descriptor for autoscaling
    • +
    • "WARNING" Add a spec descriptor for kind
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add a spec descriptor for meters
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "WARNING" Add a spec descriptor for resourceFilters
    • -
    • "WARNING" Add CRD validation for As400rpc/v1alpha1
    • +
    • "WARNING" Warning: Value marketplace.redhat.com/v1alpha1, Kind=MeterDefinition: provided API should have an example annotation
    • @@ -15684,27 +16796,38 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For as400rpc-operator.v0.0.5:

      +

      For redhat-marketplace-operator.v1.0.6:

      -

    • "WARNING" (as400rpc-operator.v0.0.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redhat-marketplace-operator.v1.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were 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: (["as400rpc-operator-metrics-reader"]),CRD: (["as400rpcs.openlegacy.com"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["marketplaceconfigs.marketplace.redhat.com" "meterbases.marketplace.redhat.com" "meterdefinitions.marketplace.redhat.com" "meterreports.marketplace.redhat.com" "razeedeployments.marketplace.redhat.com" "remoteresources3s.marketplace.redhat.com"])
    • + + +
      +

      For redhat-marketplace-operator.v2.1.0:

      + + +

    • "WARNING" (redhat-marketplace-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["marketplaceconfigs.marketplace.redhat.com" "meterbases.marketplace.redhat.com" "meterdefinitions.marketplace.redhat.com" "meterreports.marketplace.redhat.com" "razeedeployments.marketplace.redhat.com" "remoteresources3s.marketplace.redhat.com"])
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -15714,33 +16837,31 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    cloud-native-postgresqlcan-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • -
    • alpha
    @@ -15750,11 +16871,11 @@
    Grade

    NOT USED

    @@ -15764,75 +16885,33 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cloud-native-postgresql.v1.0.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for cluster
    • - -
    • "WARNING" Add a spec descriptor for storage
    • - -
    • "WARNING" Add a spec descriptor for cluster
    • - - -
      -

      For cloud-native-postgresql.v1.1.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for cluster
    • - -
    • "WARNING" Add a spec descriptor for storage
    • - -
    • "WARNING" Add a spec descriptor for cluster
    • - +

      For can-operator.v0.0.6:

      -
      -

      For cloud-native-postgresql.v1.0.0:

      +

    • "ERROR" cans.can.avanseus.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" cluster does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - +
    • "ERROR" size does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "WARNING" Add a spec descriptor for storage
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add a spec descriptor for cluster
    • +
    • "WARNING" Add CRD validation for spec field `size` in CAN/v1alpha1
    • @@ -15843,45 +16922,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cloud-native-postgresql.v1.0.0:

      - - -

    • "WARNING" (cloud-native-postgresql.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For cloud-native-postgresql.v1.1.0:

      - - -

    • "WARNING" (cloud-native-postgresql.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For cloud-native-postgresql.v1.0.0:

      +

      For can-operator.v0.0.6:

      -

    • "WARNING" (cloud-native-postgresql.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (can-operator.v0.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were 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: (["can-operator-metrics-reader"]),CRD: (["cans.can.avanseus.com"]),
    • @@ -15891,28 +16952,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    atomicorp-helm-operator-certifiedcitrix-adc-istio-ingress-gateway-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -15925,69 +16986,89 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For atomicorp-helm-operator.v0.0.1:

      +

      For citrix-adc-istio-ingress-gateway-operator.v0.9.5:

      -

    • "ERROR" atomicorps.atomicorp.com does not have a status descriptor
    • +
    • "ERROR" metricExporter does not have a spec descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" xDSAdaptor does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" ADMSettings does not have a spec descriptor
    • -
    • "ERROR" routes does not have a spec descriptor
    • +
    • "ERROR" certProvider does not have a spec descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "ERROR" citrixCPX does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" coe does not have a spec descriptor
    • +
    • "ERROR" ingressGateway does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" istioPilot does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for routes
    • +
    • "ERROR" citrix-adc-istio-ingress-gateways.citrix.citrix.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for service
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for metricExporter
    • -
    • "WARNING" Add CRD validation for spec field `image` in Atomicorp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for xDSAdaptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in Atomicorp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ADMSettings
    • -
    • "WARNING" Add CRD validation for spec field `resources` in Atomicorp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for certProvider
    • -
    • "WARNING" Add CRD validation for spec field `routes` in Atomicorp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for citrixCPX
    • + +
    • "WARNING" Add a spec descriptor for coe
    • + +
    • "WARNING" Add a spec descriptor for ingressGateway
    • + +
    • "WARNING" Add a spec descriptor for istioPilot
    • + +
    • "WARNING" Add CRD validation for spec field `certProvider` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `citrixCPX` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `coe` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingressGateway` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `istioPilot` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `metricExporter` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `xDSAdaptor` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `service` in Atomicorp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `ADMSettings` in Citrix-adc-istio-ingress-gateway/v1alpha1
    • @@ -15998,27 +17079,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For atomicorp-helm-operator.v0.0.1:

      +

      For citrix-adc-istio-ingress-gateway-operator.v0.9.5:

      -

    • "WARNING" (atomicorp-helm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (citrix-adc-istio-ingress-gateway-operator.v0.9.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrix-adc-istio-ingress-gateways.citrix.citrix.com"])
    • @@ -16032,24 +17113,24 @@
      Grade
    cnvrg-operator-marketplacecpx-cic-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -16062,11 +17143,11 @@
      Grade

    NOT USED

    @@ -16076,107 +17157,93 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cnvrg-operator.v0.352.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" cnvrgapps.mlops.cnvrg.io does not have a status descriptor
    • - -
    • "ERROR" clusterDomain does not have a spec descriptor
    • - -
    • "ERROR" pg does not have a spec descriptor
    • - -
    • "ERROR" istio does not have a spec descriptor
    • - -
    • "ERROR" seeder does not have a spec descriptor
    • - -
    • "ERROR" es does not have a spec descriptor
    • +

      For cpx-cic-operator.v130.47.103:

      -

    • "ERROR" minio does not have a spec descriptor
    • +
    • "ERROR" citrixcpxingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • -
    • "ERROR" ingressType does not have a spec descriptor
    • +
    • "ERROR" nsNamespace does not have a spec descriptor
    • -
    • "ERROR" cnvrgApp does not have a spec descriptor
    • +
    • "ERROR" platform does not have a spec descriptor
    • -
    • "ERROR" fluentd does not have a spec descriptor
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "ERROR" nvidiadp does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" securityMode does not have a spec descriptor
    • +
    • "ERROR" lsPort does not have a spec descriptor
    • -
    • "ERROR" redis does not have a spec descriptor
    • +
    • "ERROR" exporter does not have a spec descriptor
    • -
    • "ERROR" prometheus does not have a spec descriptor
    • +
    • "ERROR" lsIP does not have a spec descriptor
    • -
    • "ERROR" kibana does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • +
    • "ERROR" cic does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for clusterDomain
    • +
    • "ERROR" cpx does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pg
    • +
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for istio
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for seeder
    • -
    • "WARNING" Add a spec descriptor for es
    • +
    • "WARNING" Add a spec descriptor for nsNamespace
    • -
    • "WARNING" Add a spec descriptor for minio
    • +
    • "WARNING" Add a spec descriptor for platform
    • -
    • "WARNING" Add a spec descriptor for ingressType
    • +
    • "WARNING" Add a spec descriptor for ingressClass
    • -
    • "WARNING" Add a spec descriptor for cnvrgApp
    • +
    • "WARNING" Add a spec descriptor for license
    • -
    • "WARNING" Add a spec descriptor for fluentd
    • +
    • "WARNING" Add a spec descriptor for lsPort
    • -
    • "WARNING" Add a spec descriptor for nvidiadp
    • +
    • "WARNING" Add a spec descriptor for exporter
    • -
    • "WARNING" Add a spec descriptor for securityMode
    • +
    • "WARNING" Add a spec descriptor for lsIP
    • -
    • "WARNING" Add a spec descriptor for redis
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "WARNING" Add a spec descriptor for cic
    • -
    • "WARNING" Add a spec descriptor for kibana
    • +
    • "WARNING" Add a spec descriptor for cpx
    • -
    • "WARNING" Add CRD validation for spec field `securityMode` in CnvrgApp/v1
    • +
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • -
    • "WARNING" Add CRD validation for spec field `ingressType` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `license` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `seeder` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `platform` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `minio` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `prometheus` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `fluentd` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `lsIP` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nvidiadp` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `lsPort` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `redis` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `es` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `cic` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `istio` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `cpx` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `kibana` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `pg` in CnvrgApp/v1
    • +
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixCPXIngressController/v1alpha1
    • @@ -16187,27 +17254,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cnvrg-operator.v0.352.0:

      +

      For cpx-cic-operator.v130.47.103:

      -

    • "WARNING" (cnvrg-operator.v0.352.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cpx-cic-operator.v130.47.103) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixcpxingresscontrollers.charts.helm.k8s.io"])
    • @@ -16217,96 +17284,200 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    gitlab-runner-operatorkubeturbo-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    -

    USED

    +

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For gitlab-runner-operator.v1.2.0:

      +

      For kubeturbo-operator.v8.3.1:

      -

    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" serverMeta does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "ERROR" targetConfig does not have a spec descriptor
    • + +
    • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for serverMeta
    • + +
    • "WARNING" Add a spec descriptor for targetConfig
    • + + + +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      + + +
      +

      For kubeturbo-operator.v8.3.1:

      + + +

    • "WARNING" (kubeturbo-operator.v8.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    +

    NOT USED

    Grade D
    (200)
    seldon-operator-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    PASS

    + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For gitlab-runner-operator.v1.2.0:

      +

      For seldon-operator.v1.6.0:

      -

    • "WARNING" (gitlab-runner-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
      +

      For seldon-operator.v1.2.2:

      + + +

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -16316,45 +17487,35 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade C
    (400)
    nsx-container-plugin-operatorsysdig-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -16362,42 +17523,104 @@
    Grade

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For sysdig-operator.v1.8.3:

      + +

    • "ERROR" daemonset does not have a spec descriptor
    • + +
    • "ERROR" scc does not have a spec descriptor
    • + +
    • "ERROR" sysdig does not have a spec descriptor
    • + +
    • "ERROR" scc does not have a spec descriptor
    • + +
    • "ERROR" sysdig does not have a spec descriptor
    • + +
    • "ERROR" ebpf does not have a spec descriptor
    • + +
    • "ERROR" daemonset does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • + +
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for daemonset
    • + +
    • "WARNING" Add a spec descriptor for scc
    • + +
    • "WARNING" Add a spec descriptor for sysdig
    • + +
    • "WARNING" Add a spec descriptor for scc
    • + +
    • "WARNING" Add a spec descriptor for sysdig
    • + +
    • "WARNING" Add a spec descriptor for ebpf
    • + +
    • "WARNING" Add a spec descriptor for daemonset
    • + +
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • + +
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • + +
    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • + +
    • "WARNING" Add CRD validation for spec field `ebpf` in SysdigAgent/v1
    • + +
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • + +
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • + +
    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For nsx-container-plugin-operator.v0.1.0:

      +

      For sysdig-operator.v1.8.3:

      -

    • "WARNING" (nsx-container-plugin-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (sysdig-operator.v1.8.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sysdigagents.sysdig.com"])
    • @@ -16407,32 +17630,32 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    zabbix-operator-certifiedalcide-kaudit-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • lts
    • +
    • alpha
    @@ -16441,11 +17664,11 @@
    Grade

    NOT USED

    @@ -16455,151 +17678,129 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For zabbix-operator-certified.v0.0.2:

      - -

    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • - -
    • "ERROR" hostname does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" proxy does not have a spec descriptor
    • - -
    • "ERROR" proxy does not have a spec descriptor
    • +

      For alcide-kaudit-operator.v0.0.3:

      -

    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" runOptions does not have a spec descriptor
    • -
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" vault does not have a spec descriptor
    • -
    • "ERROR" web does not have a spec descriptor
    • +
    • "ERROR" namespace does not have a spec descriptor
    • -
    • "ERROR" hostname does not have a spec descriptor
    • +
    • "ERROR" prometheus does not have a spec descriptor
    • -
    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" web does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" k8s does not have a spec descriptor
    • -
    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" kauditPolicyFile does not have a spec descriptor
    • -
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" aks does not have a spec descriptor
    • -
    • "ERROR" proxy does not have a spec descriptor
    • +
    • "ERROR" alcide does not have a spec descriptor
    • -
    • "ERROR" proxy does not have a spec descriptor
    • +
    • "ERROR" aws does not have a spec descriptor
    • -
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" k8sAuditEnvironment does not have a spec descriptor
    • -
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" storage does not have a spec descriptor
    • -
    • "ERROR" web does not have a spec descriptor
    • +
    • "ERROR" clusterName does not have a spec descriptor
    • -
    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" gke does not have a spec descriptor
    • -
    • "ERROR" java_gateway does not have a spec descriptor
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" kaudits.kaudit.alcide.com does not have a status descriptor
    • -
    • "ERROR" web does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • +
    • "WARNING" Add CRD validation for spec field `namespace` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for hostname
    • +
    • "WARNING" Add CRD validation for spec field `aks` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add CRD validation for spec field `clusterName` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add CRD validation for spec field `image` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "WARNING" Add CRD validation for spec field `k8sAuditEnvironment` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add CRD validation for spec field `prometheus` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "WARNING" Add CRD validation for spec field `tls` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add CRD validation for spec field `alcide` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add CRD validation for spec field `aws` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for proxy
    • +
    • "WARNING" Add CRD validation for spec field `vault` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for proxy
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add CRD validation for spec field `kauditPolicyFile` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add CRD validation for spec field `resources` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add CRD validation for spec field `runOptions` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "WARNING" Add CRD validation for spec field `storage` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for hostname
    • +
    • "WARNING" Add CRD validation for spec field `gke` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • +
    • "WARNING" Add CRD validation for spec field `k8s` in Kaudit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "WARNING" Add a spec descriptor for runOptions
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add a spec descriptor for vault
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add a spec descriptor for namespace
    • -
    • "WARNING" Add a spec descriptor for proxy
    • +
    • "WARNING" Add a spec descriptor for prometheus
    • -
    • "WARNING" Add a spec descriptor for proxy
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add a spec descriptor for k8s
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "WARNING" Add a spec descriptor for kauditPolicyFile
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add a spec descriptor for aks
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" Add a spec descriptor for alcide
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add a spec descriptor for aws
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "WARNING" Add a spec descriptor for k8sAuditEnvironment
    • -
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for storage
    • -
    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for clusterName
    • -
    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for gke
    • -
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingress
    • @@ -16610,27 +17811,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For zabbix-operator-certified.v0.0.2:

      +

      For alcide-kaudit-operator.v0.0.3:

      -

    • "WARNING" (zabbix-operator-certified.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (alcide-kaudit-operator.v0.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -16640,28 +17841,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    ako-operatorcert-manager-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -16674,47 +17875,50 @@
      Grade

    NOT USED

    USED

    NOT USED

    -

    ONLY WARNINGS

    +

    ONLY ERRORS

    - +Info -
    + +Info +

      -

      For ako-operator.v1.4.2:

      +

      For cert-manager-operator.v0.15.3:

      +

    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=Gateway: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=AviInfraSetting: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HostRule: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HTTPRule: provided API should have an example annotation
    • +
      +

      For cert-manager-operator.v0.15.3:

      + +

    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=GatewayClass: provided API should have an example annotation
    • @@ -16723,41 +17927,38 @@
      Grade
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ako-operator.v1.4.2:

      - -

    • "ERROR" (ako-operator.v1.4.2) csv.Spec.Maintainers email https://github.com/vmware/load-balancer-and-ingress-services-for-kubernetes is invalid: mail: missing '@' or angle-addr
    • +

      For cert-manager-operator.v0.15.3:

      -

    • "WARNING" (ako-operator.v1.4.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cert-manager-operator.v0.15.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For cert-manager-operator.v0.15.3:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (cert-manager-operator.v0.15.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -16767,112 +17968,203 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    ivory-server-appmodel-builder-for-vision-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ivory-server-operator.v1.0.0:

      +

      For ibm-modelbuilder-for-vision.v1.0.0:

      -

    • "ERROR" ivoryservers.ivoryserver.gtsoftware.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" in_memory_storage does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" license does not have a spec descriptor
    • +
    • "ERROR" backup_storage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "ERROR" metadata_storage does not have a spec descriptor
    • + +
    • "ERROR" photo_storage does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for in_memory_storage
    • + +
    • "WARNING" Add a spec descriptor for license
    • + +
    • "WARNING" Add a spec descriptor for backup_storage
    • + +
    • "WARNING" Add a spec descriptor for metadata_storage
    • + +
    • "WARNING" Add a spec descriptor for photo_storage
    • + + + +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for IvoryServer/v1alpha1
    • + +
      +

      For ibm-modelbuilder-for-vision.v1.0.0:

      + + +

    • "WARNING" (ibm-modelbuilder-for-vision.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    +

    NOT USED

    Grade D
    (300)
    nginx-ingress-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    PASS

    + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ivory-server-operator.v1.0.0:

      - +

      For nginx-ingress-operator.v0.3.0:

      -

    • "WARNING" (ivory-server-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (nginx-ingress-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -16882,45 +18174,35 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade B
    (800)
    kong-offline-operatorsynopsys-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -16930,45 +18212,65 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For kong.v0.3.0:

      +

      For synopsys-operator.2019.8.4:

      -

    • "ERROR" proxy does not have a spec descriptor
    • +
    • "ERROR" secretName does not have a spec descriptor
    • -
    • "ERROR" env does not have a spec descriptor
    • +
    • "ERROR" exposeService does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" encryptionPassword does not have a spec descriptor
    • -
    • "ERROR" ingressController does not have a spec descriptor
    • +
    • "ERROR" encryptionGlobalSalt does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" alertMemory does not have a spec descriptor
    • -
    • "ERROR" kongs.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" persistentStorage does not have a spec descriptor
    • +
    • "ERROR" pvcSize does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for proxy
    • +
    • "ERROR" cfsslMemory does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for env
    • +
    • "ERROR" pvcStorageClass does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for ingressController
    • +
    • "WARNING" Add CRD validation for OpsSight/v1
    • -
    • "WARNING" Add CRD validation for Kong/v1alpha1
    • +
    • "WARNING" Add CRD validation for Blackduck/v1
    • + +
    • "WARNING" Add CRD validation for Alert/v1
    • + +
    • "WARNING" Add a spec descriptor for secretName
    • + +
    • "WARNING" Add a spec descriptor for exposeService
    • + +
    • "WARNING" Add a spec descriptor for encryptionPassword
    • + +
    • "WARNING" Add a spec descriptor for encryptionGlobalSalt
    • + +
    • "WARNING" Add a spec descriptor for alertMemory
    • + +
    • "WARNING" Add a spec descriptor for persistentStorage
    • + +
    • "WARNING" Add a spec descriptor for pvcSize
    • + +
    • "WARNING" Add a spec descriptor for cfsslMemory
    • + +
    • "WARNING" Add a spec descriptor for pvcStorageClass
    • @@ -16979,27 +18281,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For kong.v0.3.0:

      +

      For synopsys-operator.2019.8.4:

      -

    • "WARNING" (kong.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (synopsys-operator.2019.8.4) csv.metadata.Name synopsys-operator.2019.8.4 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kongs.charts.helm.k8s.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -17013,61 +18315,161 @@
      Grade
    sanstoragecsi-operator-bundlecic-operator -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +
    -

    USED

    +

    NOT USED

    USED

    NOT USED

    -

    ONLY ERRORS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For sanstoragecsi-operator-bundle.v1.0.0:

      +

      For cic-operator.v1.7.6:

      + +

    • "ERROR" kubernetesURL does not have a spec descriptor
    • + +
    • "ERROR" logLevel does not have a spec descriptor
    • + +
    • "ERROR" nsPort does not have a spec descriptor
    • + +
    • "ERROR" nsVIP does not have a spec descriptor
    • + +
    • "ERROR" cic does not have a spec descriptor
    • + +
    • "ERROR" ingressClass does not have a spec descriptor
    • + +
    • "ERROR" license does not have a spec descriptor
    • + +
    • "ERROR" loginFileName does not have a spec descriptor
    • + +
    • "ERROR" nsIP does not have a spec descriptor
    • + +
    • "ERROR" nsNamespace does not have a spec descriptor
    • + +
    • "ERROR" nsProtocol does not have a spec descriptor
    • + +
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • + +
    • "ERROR" exporter does not have a spec descriptor
    • + +
    • "ERROR" nodeWatch does not have a spec descriptor
    • + +
    • "ERROR" openshift does not have a spec descriptor
    • + +
    • "ERROR" citrixingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" sanstoragecsis.csi.nec.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for kubernetesURL
    • + +
    • "WARNING" Add a spec descriptor for logLevel
    • + +
    • "WARNING" Add a spec descriptor for nsPort
    • + +
    • "WARNING" Add a spec descriptor for nsVIP
    • + +
    • "WARNING" Add a spec descriptor for cic
    • + +
    • "WARNING" Add a spec descriptor for ingressClass
    • + +
    • "WARNING" Add a spec descriptor for license
    • + +
    • "WARNING" Add a spec descriptor for loginFileName
    • + +
    • "WARNING" Add a spec descriptor for nsIP
    • + +
    • "WARNING" Add a spec descriptor for nsNamespace
    • + +
    • "WARNING" Add a spec descriptor for nsProtocol
    • + +
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • + +
    • "WARNING" Add a spec descriptor for exporter
    • + +
    • "WARNING" Add a spec descriptor for nodeWatch
    • + +
    • "WARNING" Add a spec descriptor for openshift
    • + +
    • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cic` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `loginFileName` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixIngressController/v1alpha1
    • @@ -17076,29 +18478,29 @@
      Grade
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For sanstoragecsi-operator-bundle.v1.0.0:

      +

      For cic-operator.v1.7.6:

      -

    • "ERROR" (sanstoragecsi-operator-bundle.v1.0.0) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "WARNING" (cic-operator.v1.7.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" (sanstoragecsi-operator-bundle.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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.charts.helm.k8s.io"])
    • @@ -17108,32 +18510,34 @@
      Grade

    NOT USED

    Grade B
    (700)
    Grade D
    (100)
    aws-event-sources-operator-certifiedk8s-triliovault -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • cluster
    • + +
    • namespaced
    @@ -17142,11 +18546,11 @@
    Grade

    NOT USED

    @@ -17156,85 +18560,81 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For aws-sources-operator.v0.3.0:

      - -

    • "ERROR" awseventsources.sources.triggermesh.com does not have a status descriptor
    • +

      For k8s-triliovault-stable.v2.1.0:

      -

    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" nfsCredentials does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" rbac does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for nfsCredentials
    • -
    • "ERROR" adapters does not have a spec descriptor
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • -
    • "ERROR" podSecurityContext does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
      +

      For k8s-triliovault-cluster.v2.0.4:

      -

    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" nfsCredentials does not have a spec descriptor
    • -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for rbac
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for nfsCredentials
    • -
    • "WARNING" Add a spec descriptor for adapters
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
      +

      For k8s-triliovault-cluster.v2.0.0:

      -

    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" nfsCredentials does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "WARNING" Add a spec descriptor for podSecurityContext
    • +
    • "WARNING" Add a spec descriptor for nfsCredentials
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • -
    • "WARNING" Add CRD validation for AwsEventSources/v1alpha1
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • @@ -17245,126 +18645,69 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For aws-sources-operator.v0.3.0:

      +

      For k8s-triliovault-stable.v2.1.0:

      -

    • "WARNING" (aws-sources-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    hspc-operator -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      +
    • "WARNING" provided API should have an example annotation
    • - -
      -

      For hspc-operator.v1.5.0:

      +

    • "WARNING" provided API should have an example annotation
    • -
    • "ERROR" hspcs.csi.hitachi.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
      +

      For k8s-triliovault-cluster.v2.0.4:

      +

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" provided API should have an example annotation
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation

    • -

      For hspc-operator.v1.5.0:

      +

      For k8s-triliovault-cluster.v2.0.0:

      -

    • "WARNING" (hspc-operator.v1.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -17374,35 +18717,47 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (100)
    openunison-ocp-certifiedyugabyte-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    +

    NOT USED

    @@ -17412,65 +18767,48 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For openunison.1.0.0:

      - -

    • "ERROR" openunisons.openunison.tremolo.io does not have a status descriptor
    • - -
    • "ERROR" key_store does not have a spec descriptor
    • - -
    • "ERROR" enable_activemq does not have a spec descriptor
    • - -
    • "ERROR" dest_secret does not have a spec descriptor
    • - -
    • "ERROR" source_secret does not have a spec descriptor
    • - -
    • "ERROR" openunison_network_configuration does not have a spec descriptor
    • - -
    • "ERROR" non_secret_data does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • +

      For yugabyte-operator.v0.9.0:

      -

    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • -
    • "ERROR" hosts does not have a spec descriptor
    • +
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • -
    • "ERROR" secret_data does not have a spec descriptor
    • +
    • "ERROR" subresources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for key_store
    • +
    • "WARNING" Add CRD validation for spec field `subresources` in YBCluster/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for enable_activemq
    • +
    • "WARNING" Add a spec descriptor for subresources
    • -
    • "WARNING" Add a spec descriptor for dest_secret
    • -
    • "WARNING" Add a spec descriptor for source_secret
    • +
      +

      For yugabyte-operator.v0.9.0:

      -

    • "WARNING" Add a spec descriptor for openunison_network_configuration
    • +
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for non_secret_data
    • +
    • "ERROR" ybclusters.yugabyte.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for openshift
    • +
    • "ERROR" subresources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for hosts
    • +
    • "WARNING" Add CRD validation for spec field `subresources` in YBCluster/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for secret_data
    • +
    • "WARNING" Add a spec descriptor for subresources
    • @@ -17479,29 +18817,42 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For openunison.1.0.0:

      +

      For yugabyte-operator.v0.9.0:

      +

    • "ERROR" (yugabyte-operator.v0.9.0) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "WARNING" (openunison.1.0.0) csv.metadata.Name openunison.1.0.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (yugabyte-operator.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For yugabyte-operator.v0.9.0:

      + +

    • "ERROR" (yugabyte-operator.v0.9.0) csv.Spec.Maintainers elements should contain both name and email
    • + + +
    • "WARNING" (yugabyte-operator.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -17511,33 +18862,31 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (0)
    entando-k8s-operatorjoget-openshift-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • -
    • alpha
    @@ -17545,425 +18894,332 @@
    Grade
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • joget-openshift-operator.v0.0.4
    • + +
    +
    +

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For entando-k8s-operator.v6.3.2:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • - -
    • "ERROR" details does not have a spec descriptor
    • - -
    • "ERROR" dbms does not have a spec descriptor
    • - -
    • "ERROR" databaseName does not have a spec descriptor
    • - -
    • "ERROR" createDeployment does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" environmentVariables does not have a spec descriptor
    • - -
    • "ERROR" standardImage does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" environmentVariables does not have a spec descriptor
    • - -
    • "ERROR" securityLevel does not have a spec descriptor
    • - -
    • "ERROR" dbms does not have a spec descriptor
    • - -
    • "ERROR" healthCheckPath does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" ingressHostName does not have a spec descriptor
    • - -
    • "ERROR" ingressPath does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" dbms does not have a spec descriptor
    • - -
    • "ERROR" environmentVariables does not have a spec descriptor
    • - -
    • "ERROR" ingressHostName does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" standardServerImage does not have a spec descriptor
    • - -
    • "ERROR" entandoAppName does not have a spec descriptor
    • - -
    • "ERROR" entandoPluginName does not have a spec descriptor
    • - -
    • "ERROR" dbmsOverride does not have a spec descriptor
    • - -
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • - -
    • "ERROR" components does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for details
    • - -
    • "WARNING" Add a spec descriptor for dbms
    • - -
    • "WARNING" Add a spec descriptor for databaseName
    • - -
    • "WARNING" Add a spec descriptor for createDeployment
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for environmentVariables
    • - -
    • "WARNING" Add a spec descriptor for standardImage
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for environmentVariables
    • - -
    • "WARNING" Add a spec descriptor for securityLevel
    • - -
    • "WARNING" Add a spec descriptor for dbms
    • - -
    • "WARNING" Add a spec descriptor for healthCheckPath
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for ingressHostName
    • - -
    • "WARNING" Add a spec descriptor for ingressPath
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for dbms
    • - -
    • "WARNING" Add a spec descriptor for environmentVariables
    • - -
    • "WARNING" Add a spec descriptor for ingressHostName
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for standardServerImage
    • - -
    • "WARNING" Add a spec descriptor for entandoAppName
    • - -
    • "WARNING" Add a spec descriptor for entandoPluginName
    • - -
    • "WARNING" Add a spec descriptor for dbmsOverride
    • - -
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • - -
    • "WARNING" Add a spec descriptor for components
    • - +

      ERRORS AND WARNINGS

      + + + +Info +
      +
        +
        -

        For entando-k8s-operator.v6.3.2-pr4:

        - -

      • "ERROR" Owned CRDs do not have resources specified
      • - -
      • "ERROR" details does not have a spec descriptor
      • - -
      • "ERROR" dbms does not have a spec descriptor
      • - -
      • "ERROR" databaseName does not have a spec descriptor
      • - -
      • "ERROR" createDeployment does not have a spec descriptor
      • - -
      • "ERROR" standardImage does not have a spec descriptor
      • - -
      • "ERROR" replicas does not have a spec descriptor
      • - -
      • "ERROR" environmentVariables does not have a spec descriptor
      • - -
      • "ERROR" replicas does not have a spec descriptor
      • - -
      • "ERROR" environmentVariables does not have a spec descriptor
      • - -
      • "ERROR" ingressHostName does not have a spec descriptor
      • - -
      • "ERROR" ingressPath does not have a spec descriptor
      • - -
      • "ERROR" replicas does not have a spec descriptor
      • - -
      • "ERROR" roles does not have a spec descriptor
      • - -
      • "ERROR" securityLevel does not have a spec descriptor
      • - -
      • "ERROR" dbms does not have a spec descriptor
      • - -
      • "ERROR" healthCheckPath does not have a spec descriptor
      • - -
      • "ERROR" image does not have a spec descriptor
      • - -
      • "ERROR" dbms does not have a spec descriptor
      • - -
      • "ERROR" environmentVariables does not have a spec descriptor
      • - -
      • "ERROR" ingressHostName does not have a spec descriptor
      • - -
      • "ERROR" replicas does not have a spec descriptor
      • - -
      • "ERROR" standardServerImage does not have a spec descriptor
      • - -
      • "ERROR" entandoAppName does not have a spec descriptor
      • - -
      • "ERROR" entandoPluginName does not have a spec descriptor
      • - -
      • "ERROR" dbmsOverride does not have a spec descriptor
      • - -
      • "ERROR" ingressHostNameOverride does not have a spec descriptor
      • +

        For joget-openshift-operator.v0.0.4:

        -

      • "ERROR" components does not have a spec descriptor
      • +
      • "ERROR" joget.app.joget.com does not have a status descriptor
      • -
      • "ERROR" entandodebundles.entando.org does not have a status descriptor
      • +
      • "ERROR" Owned CRDs do not have resources specified
      • -
      • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
      • +
      • "ERROR" size does not have a spec descriptor
      • -
      • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
      • -
      • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
      • +
      • "WARNING" Add CRD validation for Joget/v1alpha1
      • -
      • "ERROR" entandoplugins.entando.org does not have a status descriptor
      • +
      • "WARNING" Add a spec descriptor for size
      • -
      • "ERROR" entandoapps.entando.org does not have a status descriptor
      • -
      • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
      • +
      +
      + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for details
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
      +

      For joget-openshift-operator.v0.0.4:

      -

    • "WARNING" Add a spec descriptor for databaseName
    • -
    • "WARNING" Add a spec descriptor for createDeployment
    • +
    • "WARNING" (joget-openshift-operator.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for standardImage
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    ovms-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for environmentVariables
    • + +
      +

      For openvino-operator.v0.0.1:

      -

    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "ERROR" modelservers.intel.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for ingressPath
    • +
    • "ERROR" notebooks.intel.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for roles
    • +
    • "ERROR" aws_access_key_id does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for securityLevel
    • +
    • "ERROR" config_configmap_name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "ERROR" plugin_config does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for healthCheckPath
    • +
    • "ERROR" shape does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" service_type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "ERROR" image_name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "ERROR" models_host_path does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "ERROR" file_system_poll_wait_seconds does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for standardServerImage
    • +
    • "ERROR" model_name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for entandoAppName
    • +
    • "ERROR" model_path does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for entandoPluginName
    • +
    • "ERROR" rest_port does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for dbmsOverride
    • +
    • "ERROR" security_context does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • +
    • "ERROR" annotations does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for components
    • +
    • "ERROR" batch_size does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • +
    • "ERROR" models_volume_claim does not have a spec descriptor
    • +
    • "ERROR" gcp_creds_secret_name does not have a spec descriptor
    • -
      -

      For entando-k8s-operator.v6.3.2-pr2:

      +

    • "ERROR" https_proxy does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" target_device does not have a spec descriptor
    • -
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • +
    • "ERROR" aws_region does not have a spec descriptor
    • -
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • +
    • "ERROR" grpc_port does not have a spec descriptor
    • -
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • +
    • "ERROR" model_version_policy does not have a spec descriptor
    • -
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • +
    • "ERROR" aws_secret_access_key does not have a spec descriptor
    • -
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • +
    • "ERROR" log_level does not have a spec descriptor
    • -
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • +
    • "ERROR" nireq does not have a spec descriptor
    • -
    • "ERROR" details does not have a spec descriptor
    • +
    • "ERROR" s3_compat_api_endpoint does not have a spec descriptor
    • -
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "ERROR" databaseName does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `rest_port` in ModelServer/v1alpha1
    • -
    • "ERROR" createDeployment does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `shape` in ModelServer/v1alpha1
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `target_device` in ModelServer/v1alpha1
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `grpc_port` in ModelServer/v1alpha1
    • -
    • "ERROR" standardImage does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `nireq` in ModelServer/v1alpha1
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `replicas` in ModelServer/v1alpha1
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `annotations` in ModelServer/v1alpha1
    • -
    • "ERROR" ingressPath does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `service_type` in ModelServer/v1alpha1
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `s3_compat_api_endpoint` in ModelServer/v1alpha1
    • -
    • "ERROR" roles does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `config_configmap_name` in ModelServer/v1alpha1
    • -
    • "ERROR" securityLevel does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `models_volume_claim` in ModelServer/v1alpha1
    • -
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `plugin_config` in ModelServer/v1alpha1
    • -
    • "ERROR" healthCheckPath does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `resources` in ModelServer/v1alpha1
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `aws_access_key_id` in ModelServer/v1alpha1
    • -
    • "ERROR" ingressHostName does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `aws_region` in ModelServer/v1alpha1
    • -
    • "ERROR" ingressHostName does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `log_level` in ModelServer/v1alpha1
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `security_context` in ModelServer/v1alpha1
    • -
    • "ERROR" standardServerImage does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `model_name` in ModelServer/v1alpha1
    • -
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `model_path` in ModelServer/v1alpha1
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `aws_secret_access_key` in ModelServer/v1alpha1
    • -
    • "ERROR" entandoPluginName does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `file_system_poll_wait_seconds` in ModelServer/v1alpha1
    • -
    • "ERROR" entandoAppName does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `gcp_creds_secret_name` in ModelServer/v1alpha1
    • -
    • "ERROR" dbmsOverride does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `models_host_path` in ModelServer/v1alpha1
    • -
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `model_version_policy` in ModelServer/v1alpha1
    • -
    • "ERROR" components does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `batch_size` in ModelServer/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `https_proxy` in ModelServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • +
    • "WARNING" Add CRD validation for spec field `image_name` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for details
    • +
    • "WARNING" Add a spec descriptor for aws_access_key_id
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for config_configmap_name
    • -
    • "WARNING" Add a spec descriptor for databaseName
    • +
    • "WARNING" Add a spec descriptor for plugin_config
    • -
    • "WARNING" Add a spec descriptor for createDeployment
    • +
    • "WARNING" Add a spec descriptor for shape
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for service_type
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for image_name
    • -
    • "WARNING" Add a spec descriptor for standardImage
    • +
    • "WARNING" Add a spec descriptor for models_host_path
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for file_system_poll_wait_seconds
    • -
    • "WARNING" Add a spec descriptor for ingressPath
    • +
    • "WARNING" Add a spec descriptor for model_name
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for model_path
    • -
    • "WARNING" Add a spec descriptor for roles
    • +
    • "WARNING" Add a spec descriptor for rest_port
    • -
    • "WARNING" Add a spec descriptor for securityLevel
    • +
    • "WARNING" Add a spec descriptor for security_context
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for annotations
    • -
    • "WARNING" Add a spec descriptor for healthCheckPath
    • +
    • "WARNING" Add a spec descriptor for batch_size
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for models_volume_claim
    • -
    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "WARNING" Add a spec descriptor for gcp_creds_secret_name
    • -
    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "WARNING" Add a spec descriptor for https_proxy
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for target_device
    • -
    • "WARNING" Add a spec descriptor for standardServerImage
    • +
    • "WARNING" Add a spec descriptor for aws_region
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for grpc_port
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for model_version_policy
    • -
    • "WARNING" Add a spec descriptor for entandoPluginName
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for entandoAppName
    • +
    • "WARNING" Add a spec descriptor for aws_secret_access_key
    • -
    • "WARNING" Add a spec descriptor for dbmsOverride
    • +
    • "WARNING" Add a spec descriptor for log_level
    • -
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • +
    • "WARNING" Add a spec descriptor for nireq
    • -
    • "WARNING" Add a spec descriptor for components
    • +
    • "WARNING" Add a spec descriptor for s3_compat_api_endpoint
    • @@ -17972,39 +19228,27 @@
      Grade
    -

    ONLY ERRORS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For entando-k8s-operator.v6.3.2:

      - -

    • "ERROR" (entando-k8s-operator.v6.3.2) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • - - - -
      -

      For entando-k8s-operator.v6.3.2-pr4:

      - -

    • "ERROR" (entando-k8s-operator.v6.3.2-pr4) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • - - +

      For openvino-operator.v0.0.1:

      -
      -

      For entando-k8s-operator.v6.3.2-pr2:

      +

    • "WARNING" (openvino-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -18014,34 +19258,44 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade B
    (600)
    k8s-triliovaultredis-enterprise-operator-cert -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • cluster
    • +
    • 6.0.20
    • -
    • namespaced
    • +
    • production
    • + +
    • 6.0.12
    • + +
    • 6.0.8
    • + +
    • 5.4.14
    • + +
    • 6.0.6
    • + +
    • preview
    @@ -18050,11 +19304,11 @@
    Grade

    NOT USED

    @@ -18064,1793 +19318,1368 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For k8s-triliovault-stable.v2.1.0:

      - -

    • "ERROR" nfsCredentials does not have a spec descriptor
    • +

      For redis-enterprise-operator.v6.0.20-12a:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for nfsCredentials
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • + +
    • "WARNING" Add a spec descriptor for uiServiceType
    • + +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • + +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster

    • -

      For k8s-triliovault-cluster.v2.0.4:

      +

      For redis-enterprise-operator.v6.0.20-12a:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" nfsCredentials does not have a spec descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for nfsCredentials
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • + +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • + +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster

    • -

      For k8s-triliovault-cluster.v2.0.0:

      +

      For redis-enterprise-operator.v6.0.20-12a:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" nfsCredentials does not have a spec descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nfsCredentials
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -
      -

      For k8s-triliovault-stable.v2.1.0:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" persistentSpec does not have a spec descriptor
    • + +
    • "ERROR" uiServiceType does not have a spec descriptor
    • + +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • + +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
      -

      For k8s-triliovault-cluster.v2.0.4:

      +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
      -

      For k8s-triliovault-cluster.v2.0.0:

      +

    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    couchdb-operator-certified -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    • v1.1
    • - -
    • v1.2
    • - -
    • v1.3
    • - -
    • v1.4
    • - -
    • v1.0
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - -
      -

      For couchdb-operator.v1.1.0:

      -

    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster

    • -

      For couchdb-operator.v1.1.0:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" Add a spec descriptor for cpu
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.2.1:

      +

    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • + +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster

    • -

      For couchdb-operator.v1.2.1:

      - -

    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" disk does not have a spec descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec

    • -

      For couchdb-operator.v1.3.1:

      - -

    • "ERROR" cpu does not have a spec descriptor
    • +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec

    • -

      For couchdb-operator.v1.4.3:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" memory does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec

    • -

      For couchdb-operator.v1.4.3:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" memory does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" Add a spec descriptor for environment
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • + +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" Add a spec descriptor for environment
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • + +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • + +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • - -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
      +

      For redis-enterprise-operator.v5.4.14-7:

      -

    • "WARNING" Add a spec descriptor for memory
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" size does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "WARNING" Add a spec descriptor for memory
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec

    • -

      For couchdb-operator.v1.0.14:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1
    • -
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator-preview.v6.0.20-12:

      -

    • "WARNING" Add a spec descriptor for environment
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • -
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "ERROR" disk does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for disk
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.1.0:

      +

    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" (couchdb-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
      -

      For couchdb-operator.v1.1.0:

      +

    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" (couchdb-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.2.1:

      +

    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" (couchdb-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
      -

      For couchdb-operator.v1.2.1:

      +

    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" (couchdb-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "ERROR" uiServiceType does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.3.1:

      +

    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" (couchdb-operator.v1.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
      -

      For couchdb-operator.v1.4.3:

      +

    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" (couchdb-operator.v1.4.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -
      -

      For couchdb-operator.v1.4.3:

      +

    • "ERROR" uiServiceType does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "WARNING" (couchdb-operator.v1.4.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" persistentSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
      -

      For couchdb-operator.v1.0.14:

      +
      +

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" redisEnterpriseNodeResources does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" redisEnterpriseImageSpec does not have a spec descriptor
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
      -

      For couchdb-operator.v1.0.14:

      +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" redisEnterpriseNodeResources does not have a spec descriptor
    • +
    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "ERROR" persistentSpec does not have a spec descriptor
    • -
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
      -

      For couchdb-operator.v1.0.14:

      +

    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For couchdb-operator.v1.0.14:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For couchdb-operator.v1.0.14:

      - - -

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    can-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - -
      -

      For can-operator.v0.0.6:

      -

    • "ERROR" cans.can.avanseus.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add CRD validation for spec field `size` in CAN/v1alpha1
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For can-operator.v0.0.6:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (can-operator.v0.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were 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: (["can-operator-metrics-reader"]),CRD: (["cans.can.avanseus.com"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    -
    - -

    NOT USED

    Grade D
    (300)
    cortex-healthcare-hub-operator -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - -
      -

      For cortex-healthcare-hub-operator.v0.0.25:

      +

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Owned CRDs do not have resources specified
    • -
    • "ERROR" hub-cronjob does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" mongo-uri does not have a spec descriptor
    • -
    • "ERROR" hub does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for hub-cronjob
    • -
    • "WARNING" Add a spec descriptor for mongo-uri
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "WARNING" Add a spec descriptor for hub
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      + +
      +

      For redis-enterprise-operator.v6.0.12-5:

      + + +

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For cortex-healthcare-hub-operator.v0.0.25:

      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "WARNING" (cortex-healthcare-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    -
    - -

    NOT USED

    Grade D
    (300)
    redhat-marketplace-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - -
      -

      For redhat-marketplace-operator.v1.0.6:

      +

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" remoteresources3s.marketplace.redhat.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -
      -

      For redhat-marketplace-operator.v2.1.0:

      +

    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" marketplaceconfigs.marketplace.redhat.com does not have a status descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" meterbases.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" meterreports.marketplace.redhat.com does not have a status descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" razeedeployments.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" remoteresources3s.marketplace.redhat.com does not have a status descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" meterdefinitions.marketplace.redhat.com does not have a status descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" meterdefinitions.marketplace.redhat.com does not have a status descriptor
    • -
    • "ERROR" deploySecretName does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.12-5:

      -

    • "ERROR" installIBMCatalogSource does not have a spec descriptor
    • -
    • "ERROR" rhmAccountID does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.12-5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" clusterUUID does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" enabled does not have a spec descriptor
    • -
    • "ERROR" prometheus does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      + -

    • "ERROR" endTime does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" prometheusService does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" startTime does not have a spec descriptor
    • -
    • "ERROR" clusterUUID does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" enabled does not have a spec descriptor
    • -
    • "ERROR" auth does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" requests does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" meters does not have a spec descriptor
    • -
    • "ERROR" resourceFilters does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" group does not have a spec descriptor
    • -
    • "ERROR" kind does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" group does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" kind does not have a spec descriptor
    • -
    • "ERROR" meters does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "ERROR" resourceFilters does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for deploySecretName
    • -
    • "WARNING" Add a spec descriptor for installIBMCatalogSource
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" Add a spec descriptor for rhmAccountID
    • -
    • "WARNING" Add a spec descriptor for clusterUUID
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for enabled
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • -
    • "WARNING" Add a spec descriptor for endTime
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" Add a spec descriptor for prometheusService
    • -
    • "WARNING" Add a spec descriptor for startTime
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for clusterUUID
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for enabled
    • -
    • "WARNING" Add a spec descriptor for auth
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" Add a spec descriptor for requests
    • -
    • "WARNING" Add a spec descriptor for meters
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for resourceFilters
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for group
    • -
    • "WARNING" Add a spec descriptor for kind
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" Add a spec descriptor for group
    • -
    • "WARNING" Add a spec descriptor for kind
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for meters
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for resourceFilters
    • -
    • "WARNING" Warning: Value marketplace.redhat.com/v1alpha1, Kind=MeterDefinition: provided API should have an example annotation
    • +
      +

      For redis-enterprise-operator.v6.0.20-12a:

      +

    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For redhat-marketplace-operator.v1.0.6:

      +

      For redis-enterprise-operator.v6.0.20-12a:

      -

    • "WARNING" (redhat-marketplace-operator.v1.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.20-12a) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["marketplaceconfigs.marketplace.redhat.com" "meterbases.marketplace.redhat.com" "meterdefinitions.marketplace.redhat.com" "meterreports.marketplace.redhat.com" "razeedeployments.marketplace.redhat.com" "remoteresources3s.marketplace.redhat.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For redhat-marketplace-operator.v2.1.0:

      - - -

    • "WARNING" (redhat-marketplace-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +

      For redis-enterprise-operator.v5.4.14-7:

      -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["marketplaceconfigs.marketplace.redhat.com" "meterbases.marketplace.redhat.com" "meterdefinitions.marketplace.redhat.com" "meterreports.marketplace.redhat.com" "razeedeployments.marketplace.redhat.com" "remoteresources3s.marketplace.redhat.com"])
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (redis-enterprise-operator.v5.4.14-7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    alcide-kaudit-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
      +

      For redis-enterprise-operator.v6.0.6-24:

      - -
      -

      For alcide-kaudit-operator.v0.0.3:

      -

    • "ERROR" runOptions does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" tls does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" vault does not have a spec descriptor
    • -
    • "ERROR" namespace does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "ERROR" prometheus does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" k8s does not have a spec descriptor
    • -
    • "ERROR" kauditPolicyFile does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "ERROR" aks does not have a spec descriptor
    • -
    • "ERROR" alcide does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" aws does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" k8sAuditEnvironment does not have a spec descriptor
    • -
    • "ERROR" storage does not have a spec descriptor
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "ERROR" clusterName does not have a spec descriptor
    • -
    • "ERROR" gke does not have a spec descriptor
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" kaudits.kaudit.alcide.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
      +

      For redis-enterprise-operator.v6.0.6-24:

      -

    • "WARNING" Add CRD validation for spec field `namespace` in Kaudit/v1alpha1
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.6-24) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `aks` in Kaudit/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Add CRD validation for spec field `clusterName` in Kaudit/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image` in Kaudit/v1alpha1
    • +
      +

      For redis-enterprise-operator-preview.v6.0.20-12:

      -

    • "WARNING" Add CRD validation for spec field `k8sAuditEnvironment` in Kaudit/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `prometheus` in Kaudit/v1alpha1
    • +
    • "WARNING" (redis-enterprise-operator-preview.v6.0.20-12) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `tls` in Kaudit/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `alcide` in Kaudit/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `aws` in Kaudit/v1alpha1
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" Add CRD validation for spec field `vault` in Kaudit/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in Kaudit/v1alpha1
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `kauditPolicyFile` in Kaudit/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Add CRD validation for spec field `resources` in Kaudit/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `runOptions` in Kaudit/v1alpha1
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" Add CRD validation for spec field `storage` in Kaudit/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `gke` in Kaudit/v1alpha1
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `k8s` in Kaudit/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for runOptions
    • -
    • "WARNING" Add a spec descriptor for tls
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" Add a spec descriptor for vault
    • -
    • "WARNING" Add a spec descriptor for namespace
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for image
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" Add a spec descriptor for k8s
    • -
    • "WARNING" Add a spec descriptor for kauditPolicyFile
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for aks
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for alcide
    • -
    • "WARNING" Add a spec descriptor for aws
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" Add a spec descriptor for k8sAuditEnvironment
    • -
    • "WARNING" Add a spec descriptor for storage
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" Add a spec descriptor for gke
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
      +

      For redis-enterprise-operator.v6.0.8-20:

      +

    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For alcide-kaudit-operator.v0.0.3:

      +

      For redis-enterprise-operator.v6.0.8-20:

      -

    • "WARNING" (alcide-kaudit-operator.v0.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator.v6.0.8-20) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -19860,45 +20689,35 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    db2-zos-db-operatorsanstoragecsi-operator-bundle -

    PARTIAL COMPLY

    +

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -
    -

    NOT USED

    +

    USED

    @@ -19906,33 +20725,29 @@
    Grade

    USED

    -

    ERRORS AND WARNINGS

    +

    ONLY ERRORS

    - +Info -
    + +Info +

      -

      For db2-zos-db-operator.v0.0.2:

      +

      For sanstoragecsi-operator-bundle.v1.0.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" image does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" sanstoragecsis.csi.nec.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image` in Db2-zos-db/v1alpha1
    • @@ -19941,29 +20756,29 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For db2-zos-db-operator.v0.0.2:

      +

      For sanstoragecsi-operator-bundle.v1.0.0:

      +

    • "ERROR" (sanstoragecsi-operator-bundle.v1.0.0) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "WARNING" (db2-zos-db-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (sanstoragecsi-operator-bundle.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -19973,35 +20788,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (700)
    dell-csi-operator-certifiedibm-tas -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -20011,176 +20836,107 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For dell-csi-operator-certified.v1.2.0:

      - -

    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • +

      For ibm-tas.v0.0.1:

      -

    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" sid does not have a spec descriptor
    • -
    • "ERROR" tlsSecret does not have a spec descriptor
    • +
    • "ERROR" contextpath does not have a spec descriptor
    • -
    • "ERROR" csipowermaxrevproxies.storage.dell.com does not have a status descriptor
    • +
    • "ERROR" dbapassword does not have a spec descriptor
    • +
    • "ERROR" dbname does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "ERROR" dbusername does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" javamax does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "ERROR" javamin does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for tlsSecret
    • +
    • "ERROR" dbausername does not have a spec descriptor
    • +
    • "ERROR" dbdnsname does not have a spec descriptor
    • +
    • "ERROR" dbpassword does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" dbport does not have a spec descriptor
    • +
    • "ERROR" dbtype does not have a spec descriptor
    • -
      -

      For dell-csi-operator-certified.v1.2.0:

      +

    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
    • -
    • "WARNING" (dell-csi-operator-certified.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" this bundle is using APIs which were 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"]),
    • +
    • "ERROR" tririgas.tas.ibm.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for sid
    • -
    -
    - -

    NOT USED

    Grade C
    (400)
    f5-bigip-ctlr-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for contextpath
    • - -
      -

      For f5-bigip-ctlr-operator.v1.8.0:

      +

    • "WARNING" Add a spec descriptor for dbapassword
    • -
    • "ERROR" args does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbname
    • -
    • "ERROR" bigip_login_secret does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbusername
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for javamax
    • -
    • "ERROR" namespace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for javamin
    • -
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbausername
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbdnsname
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbpassword
    • +
    • "WARNING" Add a spec descriptor for dbport
    • -
    • "WARNING" Add CRD validation for F5BigIpCtlr/v1
    • +
    • "WARNING" Add a spec descriptor for dbtype
    • -
    • "WARNING" Add a spec descriptor for args
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add a spec descriptor for bigip_login_secret
    • +
    • "WARNING" Add CRD validation for spec field `size` in Tririga/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add CRD validation for spec field `dbpassword` in Tririga/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for namespace
    • +
    • "WARNING" Add CRD validation for spec field `dbtype` in Tririga/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for rbac
    • +
    • "WARNING" Add CRD validation for spec field `sid` in Tririga/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add CRD validation for spec field `dbdnsname` in Tririga/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add CRD validation for spec field `dbname` in Tririga/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `dbport` in Tririga/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `dbusername` in Tririga/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `javamax` in Tririga/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `contextpath` in Tririga/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `dbapassword` in Tririga/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `dbausername` in Tririga/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `javamin` in Tririga/v1alpha1
    • @@ -20191,25 +20947,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For f5-bigip-ctlr-operator.v1.8.0:

      +

      For ibm-tas.v0.0.1:

      -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["f5bigipctlrs.cis.f5.com"])
    • +
    • "WARNING" (ibm-tas.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • @@ -20223,345 +20981,349 @@
      Grade
    ibm-block-csi-operatorpresto-operator -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-block-csi-operator.v1.6.0:

      +

      For starburst-presto-helm-operator.v350.1.1-ubi:

      -

    • "ERROR" controller does not have a spec descriptor
    • +
    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • -
    • "ERROR" node does not have a spec descriptor
    • +
    • "ERROR" starburstprestoes.charts.starburstdata.com does not have a status descriptor
    • -
    • "ERROR" sidecars does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • + +
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • + +
    • "ERROR" heapSizePercentage does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • + +
    • "ERROR" initFile does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" extraArguments does not have a spec descriptor
    • + +
    • "ERROR" hdfs does not have a spec descriptor
    • + +
    • "ERROR" objectStorage does not have a spec descriptor
    • +
    • "ERROR" registryCredentials does not have a spec descriptor
    • + +
    • "ERROR" env does not have a spec descriptor
    • + +
    • "ERROR" envFrom does not have a spec descriptor
    • + +
    • "ERROR" expose does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" podAnnotations does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" database does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" cache does not have a spec descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" initImage does not have a spec descriptor
    • + +
    • "ERROR" prometheus does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" catalogs does not have a spec descriptor
    • + +
    • "ERROR" externalSecrets does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" initFile does not have a spec descriptor
    • + +
    • "ERROR" readinessProbe does not have a spec descriptor
    • + +
    • "ERROR" spilling does not have a spec descriptor
    • + +
    • "ERROR" extraArguments does not have a spec descriptor
    • + +
    • "ERROR" query does not have a spec descriptor
    • + +
    • "ERROR" registryCredentials does not have a spec descriptor
    • + +
    • "ERROR" sharedSecret does not have a spec descriptor
    • + +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • + +
    • "ERROR" usageMetrics does not have a spec descriptor
    • + +
    • "ERROR" userDatabase does not have a spec descriptor
    • + +
    • "ERROR" worker does not have a spec descriptor
    • + +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • + +
    • "ERROR" coordinator does not have a spec descriptor
    • + +
    • "ERROR" expose does not have a spec descriptor
    • + +
    • "ERROR" extraSecret does not have a spec descriptor
    • + +
    • "ERROR" internal does not have a spec descriptor
    • + +
    • "ERROR" livenessProbe does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `initImage` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `environment` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstPresto/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cache` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for controller
    • +
    • "WARNING" Add CRD validation for spec field `query` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for node
    • +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for sidecars
    • +
    • "WARNING" Add CRD validation for spec field `internal` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstPresto/v1alpha1
    • -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (700)
    openshiftxray-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    REQUIRED

    - - - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • xray-operator.v2.0.4
    • - -
    -
    - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `spilling` in StarburstPresto/v1alpha1
    • - -
      -

      For xray-operator.v2.0.4:

      +

    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstPresto/v1alpha1
    • -
    • "ERROR" openshiftxrays.charts.helm.k8s.io does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstPresto/v1alpha1
    • -
    • "ERROR" xray does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `xray` in OpenshiftXray/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `worker` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for xray
    • +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstPresto/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstPresto/v1alpha1
    • -
      -

      For xray-operator.v2.0.4:

      +

    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • -
    • "WARNING" (xray-operator.v2.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openshiftxrays.charts.helm.k8s.io"])
    • +
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • +
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    percona-server-mongodb-operator-certified -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • - -
      -

      For percona-server-mongodb-operator.v1.8.0:

      +

    • "WARNING" Add a spec descriptor for initFile
    • -
    • "ERROR" secrets does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "ERROR" pmm does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for extraArguments
    • -
    • "ERROR" replsets does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for hdfs
    • -
    • "ERROR" sharding does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for objectStorage
    • -
    • "ERROR" backup does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for registryCredentials
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for env
    • -
    • "ERROR" updateStrategy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for envFrom
    • -
    • "ERROR" upgradeOptions does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for expose
    • -
    • "ERROR" mongod does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "ERROR" crVersion does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for database
    • -
    • "ERROR" psmdbCluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "ERROR" storageName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for cache
    • -
    • "ERROR" backupName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "ERROR" clusterName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for initImage
    • -
    • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for prometheus
    • -
    • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add a spec descriptor for catalogs
    • -
    • "WARNING" Add a spec descriptor for secrets
    • +
    • "WARNING" Add a spec descriptor for externalSecrets
    • -
    • "WARNING" Add a spec descriptor for pmm
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for replsets
    • +
    • "WARNING" Add a spec descriptor for initFile
    • -
    • "WARNING" Add a spec descriptor for sharding
    • +
    • "WARNING" Add a spec descriptor for readinessProbe
    • -
    • "WARNING" Add a spec descriptor for backup
    • +
    • "WARNING" Add a spec descriptor for spilling
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for extraArguments
    • -
    • "WARNING" Add a spec descriptor for updateStrategy
    • +
    • "WARNING" Add a spec descriptor for query
    • -
    • "WARNING" Add a spec descriptor for upgradeOptions
    • +
    • "WARNING" Add a spec descriptor for registryCredentials
    • -
    • "WARNING" Add a spec descriptor for mongod
    • +
    • "WARNING" Add a spec descriptor for sharedSecret
    • -
    • "WARNING" Add a spec descriptor for crVersion
    • +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for usageMetrics
    • -
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • +
    • "WARNING" Add a spec descriptor for userDatabase
    • -
    • "WARNING" Add a spec descriptor for psmdbCluster
    • +
    • "WARNING" Add a spec descriptor for worker
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • -
    • "WARNING" Add a spec descriptor for backupName
    • +
    • "WARNING" Add a spec descriptor for coordinator
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "WARNING" Add a spec descriptor for expose
    • -
    • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-8-0
    • +
    • "WARNING" Add a spec descriptor for extraSecret
    • -
    • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
    • +
    • "WARNING" Add a spec descriptor for internal
    • -
    • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
    • +
    • "WARNING" Add a spec descriptor for livenessProbe
    • @@ -20572,27 +21334,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For percona-server-mongodb-operator.v1.8.0:

      +

      For starburst-presto-helm-operator.v350.1.1-ubi:

      -

    • "WARNING" (percona-server-mongodb-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (starburst-presto-helm-operator.v350.1.1-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -20602,188 +21364,108 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    pmem-csi-operator-oscortex-healthcare-hub-operator -

    COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For pmem-csi-operator.v1.0.0:

      - -

    • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
    • - -
    • "ERROR" deviceMode does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for deviceMode
    • +

      For cortex-healthcare-hub-operator.v0.0.25:

      -

    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
      -

      For pmem-csi-operator.v1.0.0:

      +

    • "ERROR" hub-cronjob does not have a spec descriptor
    • -
    • "ERROR" pmemcsideployments.pmem-csi.intel.com does not have a status descriptor
    • +
    • "ERROR" mongo-uri does not have a spec descriptor
    • -
    • "ERROR" deviceMode does not have a spec descriptor
    • +
    • "ERROR" hub does not have a spec descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for hub-cronjob
    • -
    • "WARNING" Add a spec descriptor for deviceMode
    • +
    • "WARNING" Add a spec descriptor for mongo-uri
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add a spec descriptor for hub
    -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (700)
    anzounstructured-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    PASS

    - -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For anzounstructured-operator.v2.0.101:

      +

      For cortex-healthcare-hub-operator.v0.0.25:

      -

    • "WARNING" (anzounstructured-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cortex-healthcare-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -20793,45 +21475,35 @@
      Grade

    NOT USED

    Grade A
    (900)
    Grade D
    (200)
    rocketchat-operator-certifiedminio-operator -

    PARTIAL COMPLY

    +

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    -

    NOT USED

    @@ -20841,75 +21513,33 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For rocketchat-operator.v0.1.0:

      - -

    • "ERROR" rocketchats.open.rocket.chat does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" mongodbDatabase does not have a spec descriptor
    • - -
    • "ERROR" mongodbReplicaName does not have a spec descriptor
    • - -
    • "ERROR" mongodbReplicas does not have a spec descriptor
    • - -
    • "ERROR" mongodbSecretName does not have a spec descriptor
    • - -
    • "ERROR" rocketchatReplicas does not have a spec descriptor
    • - -
    • "ERROR" volumeCapacity does not have a spec descriptor
    • - -
    • "ERROR" labels does not have a spec descriptor
    • - -
    • "ERROR" memoryLimit does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `rocketchatReplicas` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `volumeCapacity` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `labels` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `memoryLimit` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `mongodbDatabase` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `mongodbReplicaName` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `mongodbReplicas` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `mongodbSecretName` in RocketChat/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for mongodbDatabase
    • - -
    • "WARNING" Add a spec descriptor for mongodbReplicaName
    • +

      For minio-operator.v4.0.2:

      -

    • "WARNING" Add a spec descriptor for mongodbReplicas
    • +
    • "ERROR" tenants.minio.min.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for mongodbSecretName
    • +
    • "ERROR" pools does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for rocketchatReplicas
    • +
    • "ERROR" console does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for volumeCapacity
    • -
    • "WARNING" Add a spec descriptor for labels
    • +
    • "WARNING" Add a spec descriptor for pools
    • -
    • "WARNING" Add a spec descriptor for memoryLimit
    • +
    • "WARNING" Add a spec descriptor for console
    • @@ -20918,54 +21548,36 @@
      Grade
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For rocketchat-operator.v0.1.0:

      - - -

    • "WARNING" (rocketchat-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    -

    NOT USED

    Grade D
    (200)
    Grade B
    (700)
    falco-certifiednxrm-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -20974,11 +21586,11 @@
    Grade

    NOT USED

    @@ -20988,29 +21600,105 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For falco-operator.v1.2.0:

      - -

    • "ERROR" falcos.falco.org does not have a status descriptor
    • +

      For nxrm-operator-certified.v3.32.0-1:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" nexusrepos.sonatype.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for Falco/v1
    • +
    • "ERROR" deploymentStrategy does not have a spec descriptor
    • + +
    • "ERROR" ingress does not have a spec descriptor
    • + +
    • "ERROR" nexusProxyRoute does not have a spec descriptor
    • + +
    • "ERROR" persistence does not have a spec descriptor
    • + +
    • "ERROR" route does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" statefulset does not have a spec descriptor
    • + +
    • "ERROR" config does not have a spec descriptor
    • + +
    • "ERROR" deployment does not have a spec descriptor
    • + +
    • "ERROR" nexus does not have a spec descriptor
    • + +
    • "ERROR" replicaCount does not have a spec descriptor
    • + +
    • "ERROR" secret does not have a spec descriptor
    • + +
    • "ERROR" service does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `route` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `service` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tolerations` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `deployment` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nexus` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingress` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nexusProxyRoute` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `persistence` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `replicaCount` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `secret` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `statefulset` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `config` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `deploymentStrategy` in NexusRepo/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for deploymentStrategy
    • + +
    • "WARNING" Add a spec descriptor for ingress
    • + +
    • "WARNING" Add a spec descriptor for nexusProxyRoute
    • + +
    • "WARNING" Add a spec descriptor for persistence
    • + +
    • "WARNING" Add a spec descriptor for route
    • + +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for statefulset
    • + +
    • "WARNING" Add a spec descriptor for config
    • + +
    • "WARNING" Add a spec descriptor for deployment
    • + +
    • "WARNING" Add a spec descriptor for nexus
    • + +
    • "WARNING" Add a spec descriptor for replicaCount
    • + +
    • "WARNING" Add a spec descriptor for secret
    • + +
    • "WARNING" Add a spec descriptor for service
    • @@ -21021,27 +21709,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For falco-operator.v1.2.0:

      +

      For nxrm-operator-certified.v3.32.0-1:

      -

    • "WARNING" (falco-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (nxrm-operator-certified.v3.32.0-1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["nexusrepos.sonatype.com"])
    • @@ -21051,28 +21739,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    seldon-operator-certifiedrapidbiz-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -21085,25 +21773,25 @@
      Grade

    NOT USED

    USED

    NOT USED

    PASS

    @@ -21112,32 +21800,25 @@
    Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For seldon-operator.v1.6.0:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For seldon-operator.v1.2.2:

      +

      For rapidbiz-operator.v0.0.1:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -21147,45 +21828,35 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (300)
    timemachine-operatorsematext -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -21195,31 +21866,33 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For time-machine-operator4.v0.0.4:

      +

      For sematext-operator.v1.0.9:

      -

    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" region does not have a spec descriptor
    • -
    • "ERROR" timemachines.tm.solution-soft.com does not have a status descriptor
    • +
    • "ERROR" sematextagents.sematext.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add CRD validation for spec field `size` in TimeMachine/v1alpha1
    • +
    • "WARNING" Add CRD validation for SematextAgent/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for region
    • @@ -21230,27 +21903,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For time-machine-operator4.v0.0.4:

      +

      For sematext-operator.v1.0.9:

      -

    • "WARNING" (time-machine-operator4.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (sematext-operator.v1.0.9) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["timemachines.tm.solution-soft.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -21264,28 +21937,28 @@
      Grade
    xcrypt-operatorakka-cluster-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -21294,11 +21967,11 @@
    Grade

    NOT USED

    @@ -21306,35 +21979,29 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For zts-xcrypt-operator.v0.0.14:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" status does not have a spec descriptor
    • - -
    • "ERROR" xcrypts.xcrypt.zettaset.com does not have a status descriptor
    • +

      For akka-cluster-operator-certified.v1.0.0:

      -

    • "WARNING" Add CRD validation for spec field `status` in XCrypt/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `replicas` in AkkaCluster/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for status
    • +
    • "WARNING" Add CRD validation for spec field `template` in AkkaCluster/v1alpha1
    • @@ -21345,27 +22012,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For zts-xcrypt-operator.v0.0.14:

      - +

      For akka-cluster-operator-certified.v1.0.0:

      -

    • "WARNING" (zts-xcrypt-operator.v0.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xcrypts.xcrypt.zettaset.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -21379,32 +22044,28 @@
      Grade
    aqua-operator-certifiedcockroachdb-certified -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • latest
    • - -
    • alpha
    • - -
    • 5.3
    • +
    • beta
    @@ -21413,629 +22074,585 @@
    Grade

    NOT USED

    - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For aqua-operator.v1.0.4:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" adminPassword does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" enforcer does not have a spec descriptor
    • - -
    • "ERROR" licenseToken does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" gateway does not have a spec descriptor
    • - -
    • "ERROR" diskSize does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" gateway does not have a spec descriptor
    • - -
    • "ERROR" token does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" common does not have a spec descriptor
    • - -
    • "ERROR" externalDb does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" login does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" common does not have a spec descriptor
    • - -
    • "ERROR" externalDb does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" adminPassword does not have a spec descriptor
    • - -
    • "ERROR" licenseToken does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for database
    • - -
    • "WARNING" Add a spec descriptor for route
    • - -
    • "WARNING" Add a spec descriptor for adminPassword
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for enforcer
    • - -
    • "WARNING" Add a spec descriptor for licenseToken
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for gateway
    • - -
    • "WARNING" Add a spec descriptor for diskSize
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for gateway
    • - -
    • "WARNING" Add a spec descriptor for token
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for common
    • - -
    • "WARNING" Add a spec descriptor for externalDb
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for login
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for common
    • - -
    • "WARNING" Add a spec descriptor for externalDb
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for adminPassword
    • - -
    • "WARNING" Add a spec descriptor for licenseToken
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • + #disco-showcockroachdb-certified { + display: none; + } + + #disco-showcockroachdb-certified:target { + display: block; + } + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • + +
      +

      For cockroach-operator.v2.1.0:

      -

    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • +
    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • +
      +

      For cockroach-operator.v2.1.0:

      -

    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • +
    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • +
      +

      For cockroach-operator.v2.1.0:

      -

    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • +
    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • +
      +

      For cockroach-operator.v2.1.0:

      -

    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
    • +
    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • +
    +
    + +

    NOT USED

    Grade B
    (600)
    datadog-operator-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For aqua-operator.v5.0.0:

      - -

    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" licenseToken does not have a spec descriptor
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" gateway does not have a spec descriptor
    • - -
    • "ERROR" enforcer does not have a spec descriptor
    • - -
    • "ERROR" adminPassword does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +

      For datadog-operator.v0.3.0:

      -

    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • -
    • "ERROR" diskSize does not have a spec descriptor
    • +
    • "ERROR" credentials does not have a spec descriptor
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" agent does not have a spec descriptor
    • -
    • "ERROR" gateway does not have a spec descriptor
    • +
    • "ERROR" clusterAgent does not have a spec descriptor
    • -
    • "ERROR" token does not have a spec descriptor
    • +
    • "ERROR" clusterChecksRunner does not have a spec descriptor
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" query does not have a spec descriptor
    • -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "ERROR" externalMetricName does not have a spec descriptor
    • -
    • "ERROR" infra does not have a spec descriptor
    • -
    • "ERROR" common does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for credentials
    • -
    • "ERROR" externalDb does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for agent
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for clusterAgent
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for clusterChecksRunner
    • -
    • "ERROR" login does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for query
    • -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for externalMetricName
    • -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
      +

      For datadog-operator.v0.4.0:

      -

    • "ERROR" common does not have a spec descriptor
    • +
    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • -
    • "ERROR" externalDb does not have a spec descriptor
    • +
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" agent does not have a spec descriptor
    • -
    • "ERROR" adminPassword does not have a spec descriptor
    • +
    • "ERROR" credentials does not have a spec descriptor
    • -
    • "ERROR" licenseToken does not have a spec descriptor
    • +
    • "ERROR" query does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for agent
    • -
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for credentials
    • -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for query
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • +
      +

      For datadog-operator.v0.3.0:

      -

    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" (datadog-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • +
      +

      For datadog-operator.v0.4.0:

      -

    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • +
    • "WARNING" (datadog-operator.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    behavior-analytics-services-operator-certified +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
    • + +
      +

      For behavior-analytics-services-operator.v1.1.0:

      -

    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • +
    • "ERROR" airgappeddeployments.bas.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
    • +
    • "ERROR" analyticsproxies.bas.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
    • +
    • "ERROR" deleteclusters.bas.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
    • +
    • "ERROR" fulldeployments.bas.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • +
    • "ERROR" generatekeys.bas.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • +
    • "ERROR" storeforwardmetrics.bas.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "ERROR" postgres does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for route
    • +
    • "ERROR" kafka does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for licenseToken
    • +
    • "ERROR" env_type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for database
    • +
    • "ERROR" allowed_domains does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for gateway
    • +
    • "ERROR" db_archive does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for enforcer
    • +
    • "ERROR" airgapped does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for adminPassword
    • +
    • "ERROR" allowed_domains does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "ERROR" db_archive does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for diskSize
    • +
    • "ERROR" env_type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "ERROR" airgapped does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for gateway
    • +
    • "ERROR" postgres does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for token
    • +
    • "ERROR" kafka does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "ERROR" allowed_domains does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "ERROR" airgapped does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "ERROR" postgres does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "ERROR" kafka does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for login
    • +
    • "ERROR" prometheus_metrics does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "ERROR" env_type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "ERROR" db_archive does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "ERROR" db_archive does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for adminPassword
    • +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for licenseToken
    • +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • -
      -

      For aqua-operator.v5.3.0:

      +

    • "ERROR" postgres does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • -
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" prometheus_metrics does not have a spec descriptor
    • -
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" env_type does not have a spec descriptor
    • -
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • -
    • "ERROR" aquakubeenforcers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" enable_test_api does not have a spec descriptor
    • -
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • -
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AirgappedDeployment/v1
    • -
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in AirgappedDeployment/v1
    • -
    • "ERROR" route does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `kafka` in AirgappedDeployment/v1
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `env_type` in AirgappedDeployment/v1
    • -
    • "ERROR" common does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `allowed_domains` in AirgappedDeployment/v1
    • -
    • "ERROR" database does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `db_archive` in AirgappedDeployment/v1
    • -
    • "ERROR" gateway does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `airgapped` in AirgappedDeployment/v1
    • -
    • "ERROR" server does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AirgappedDeployment/v1
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `allowed_domains` in AnalyticsProxy/v1
    • -
    • "ERROR" common does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `db_archive` in AnalyticsProxy/v1
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in AnalyticsProxy/v1
    • -
    • "ERROR" diskSize does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `kafka` in AnalyticsProxy/v1
    • -
    • "ERROR" token does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `env_type` in AnalyticsProxy/v1
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `airgapped` in AnalyticsProxy/v1
    • -
    • "ERROR" gateway does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AnalyticsProxy/v1
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in AnalyticsProxy/v1
    • -
    • "ERROR" token does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AnalyticsProxy/v1
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in DeleteCluster/v1
    • -
    • "ERROR" common does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in FullDeployment/v1
    • -
    • "ERROR" externalDb does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in FullDeployment/v1
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in FullDeployment/v1
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in FullDeployment/v1
    • -
    • "ERROR" login does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `kafka` in FullDeployment/v1
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in FullDeployment/v1
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `allowed_domains` in FullDeployment/v1
    • -
    • "ERROR" common does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `db_archive` in FullDeployment/v1
    • -
    • "ERROR" externalDb does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `airgapped` in FullDeployment/v1
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `prometheus_metrics` in FullDeployment/v1
    • +
    • "WARNING" Add CRD validation for spec field `env_type` in FullDeployment/v1
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in GenerateKey/v1
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `prometheus_metrics` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `env_type` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `db_archive` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in Dashboard/v1
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `enable_test_api` in Dashboard/v1
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add CRD validation for AquaKubeEnforcer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for postgres
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for env_type
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for allowed_domains
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for db_archive
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for airgapped
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for allowed_domains
    • -
    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for db_archive
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for env_type
    • -
    • "WARNING" Add a spec descriptor for route
    • +
    • "WARNING" Add a spec descriptor for airgapped
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for postgres
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" Add a spec descriptor for database
    • +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add a spec descriptor for gateway
    • +
    • "WARNING" Add a spec descriptor for allowed_domains
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add a spec descriptor for airgapped
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add a spec descriptor for postgres
    • -
    • "WARNING" Add a spec descriptor for diskSize
    • +
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" Add a spec descriptor for token
    • +
    • "WARNING" Add a spec descriptor for prometheus_metrics
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for env_type
    • -
    • "WARNING" Add a spec descriptor for gateway
    • +
    • "WARNING" Add a spec descriptor for db_archive
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for token
    • +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "WARNING" Add a spec descriptor for db_archive
    • -
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add a spec descriptor for login
    • +
    • "WARNING" Add a spec descriptor for postgres
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add a spec descriptor for prometheus_metrics
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "WARNING" Add a spec descriptor for env_type
    • -
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add a spec descriptor for enable_test_api
    • @@ -22046,45 +22663,108 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For aqua-operator.v1.0.4:

      - - -

    • "WARNING" (aqua-operator.v1.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +

      For behavior-analytics-services-operator.v1.1.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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" (behavior-analytics-services-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
      -

      For aqua-operator.v5.0.0:

      +

    • "WARNING" this bundle is using APIs which were deprecated 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" (aqua-operator.v5.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    coralogix-operator-certified +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    PASS

    + + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For aqua-operator.v5.3.0:

      +

      For coralogix-operator.v1.0.0:

      -

    • "WARNING" (aqua-operator.v5.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (coralogix-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • @@ -22094,28 +22774,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (500)
    mf-cics-ts-operatornode-red-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -22128,45 +22808,89 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For mf-cics-ts-operator.v0.0.1:

      + +
      +

      For node-red-operator.v0.0.3:

      + +

    • "ERROR" noderedbackups.nodered.com does not have a status descriptor
    • + +
    • "ERROR" noderedrestores.nodered.com does not have a status descriptor
    • + +
    • "ERROR" size does not have a spec descriptor
    • + +
    • "ERROR" adminpassword does not have a spec descriptor
    • + +
    • "ERROR" persistentvolume does not have a spec descriptor
    • + +
    • "ERROR" secretkey does not have a spec descriptor
    • + +
    • "ERROR" backup does not have a spec descriptor
    • + +
    • "ERROR" ibm_s3 does not have a spec descriptor
    • + +
    • "ERROR" restore_file_name does not have a spec descriptor
    • + +
    • "ERROR" ibm_s3 does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `adminpassword` in NodeRed/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `persistentvolume` in NodeRed/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `secretkey` in NodeRed/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `size` in NodeRed/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `backup` in NodeRedBackup/v1alpha1
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedBackup/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedRestore/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `restore_file_name` in NodeRedRestore/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-ts/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for adminpassword
    • + +
    • "WARNING" Add a spec descriptor for persistentvolume
    • + +
    • "WARNING" Add a spec descriptor for secretkey
    • + +
    • "WARNING" Add a spec descriptor for backup
    • + +
    • "WARNING" Add a spec descriptor for ibm_s3
    • + +
    • "WARNING" Add a spec descriptor for restore_file_name
    • + +
    • "WARNING" Add a spec descriptor for ibm_s3
    • @@ -22177,27 +22901,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For mf-cics-ts-operator.v0.0.1:

      +

      For node-red-operator.v0.0.3:

      -

    • "WARNING" (mf-cics-ts-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (node-red-operator.v0.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["noderedbackups.nodered.com" "noderedrestores.nodered.com" "nodereds.nodered.com"])
    • @@ -22207,45 +22931,35 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    portshift-controller-operatortf-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -22253,68 +22967,40 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For portshift-operator.v0.1.6:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" portshiftinstallers.portshift.io does not have a status descriptor
    • - -
    • "ERROR" managementUrl does not have a spec descriptor
    • - -
    • "ERROR" portshiftClusterId does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for managementUrl
    • - -
    • "WARNING" Add a spec descriptor for portshiftClusterId
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For portshift-operator.v0.1.6:

      - +

      For tf-operator.v0.0.1:

      -

    • "WARNING" (portshift-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -22324,32 +23010,42 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (400)
    starburst-enterprise-helm-operatorcouchdb-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • v1.0
    • + +
    • beta
    • + +
    • v1.1
    • + +
    • v1.2
    • + +
    • v1.3
    • + +
    • v1.4
    @@ -22358,1145 +23054,735 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

      +

      For couchdb-operator.v1.0.14:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • - -
    • "ERROR" starburstenterprises.charts.starburstdata.com does not have a status descriptor
    • - -
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • - -
    • "ERROR" initFile does not have a spec descriptor
    • - -
    • "ERROR" registryCredentials does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" affinity does not have a spec descriptor
    • - -
    • "ERROR" env does not have a spec descriptor
    • - -
    • "ERROR" extraArguments does not have a spec descriptor
    • - -
    • "ERROR" objectStorage does not have a spec descriptor
    • - -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • - -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • - -
    • "ERROR" tolerations does not have a spec descriptor
    • - -
    • "ERROR" heapSizePercentage does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" envFrom does not have a spec descriptor
    • - -
    • "ERROR" expose does not have a spec descriptor
    • - -
    • "ERROR" hdfs does not have a spec descriptor
    • - -
    • "ERROR" podAnnotations does not have a spec descriptor
    • - -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • - -
    • "ERROR" initImage does not have a spec descriptor
    • - -
    • "ERROR" prometheus does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • - -
    • "ERROR" sharedSecret does not have a spec descriptor
    • - -
    • "ERROR" usageMetrics does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" initFile does not have a spec descriptor
    • - -
    • "ERROR" internal does not have a spec descriptor
    • - -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • - -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • - -
    • "ERROR" expose does not have a spec descriptor
    • - -
    • "ERROR" extraArguments does not have a spec descriptor
    • - -
    • "ERROR" livenessProbe does not have a spec descriptor
    • - -
    • "ERROR" registryCredentials does not have a spec descriptor
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" readinessProbe does not have a spec descriptor
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" spilling does not have a spec descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" cache does not have a spec descriptor
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" catalogs does not have a spec descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" coordinator does not have a spec descriptor
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • "ERROR" environment does not have a spec descriptor
    • -
    • "ERROR" externalSecrets does not have a spec descriptor
    • - -
    • "ERROR" extraSecret does not have a spec descriptor
    • - -
    • "ERROR" userDatabase does not have a spec descriptor
    • - -
    • "ERROR" worker does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `query` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `initImage` in StarburstEnterprise/v1alpha1
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `internal` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `worker` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `cache` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `environment` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `spilling` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for initFile
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add a spec descriptor for registryCredentials
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Add a spec descriptor for affinity
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for env
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for extraArguments
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for objectStorage
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for additionalVolumes
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for database
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for envFrom
    • -
    • "WARNING" Add a spec descriptor for expose
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add a spec descriptor for hdfs
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add a spec descriptor for initImage
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Add a spec descriptor for query
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for sharedSecret
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for usageMetrics
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for initFile
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for internal
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for additionalVolumes
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for expose
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for extraArguments
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for livenessProbe
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for registryCredentials
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • -
    • "WARNING" Add a spec descriptor for readinessProbe
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add a spec descriptor for spilling
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add a spec descriptor for cache
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for catalogs
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add a spec descriptor for coordinator
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Add a spec descriptor for externalSecrets
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for extraSecret
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for userDatabase
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for worker
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
      -

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

      +

    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" (starburst-enterprise-helm-operator.v354.0.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["starburstenterprises.charts.starburstdata.com" "starbursthives.charts.starburstdata.com"])
    • +
    • "ERROR" disk does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environment
    • + +
    • "WARNING" Add a spec descriptor for memory
    • + +
    • "WARNING" Add a spec descriptor for cpu
    • + +
    • "WARNING" Add a spec descriptor for disk
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    fep-ansible-operator -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      -
      -

      For fujitsu-enterprise-operator.v2.2.0:

      +

      For couchdb-operator.v1.0.14:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" fepclusters.fep.fujitsu.io does not have a status descriptor
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" fepactions.fep.fujitsu.io does not have a status descriptor
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" feppgpool2s.fep.fujitsu.io does not have a status descriptor
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" feprestores.fep.fujitsu.io does not have a status descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" fepChildCrVal does not have a spec descriptor
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" fep does not have a spec descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" fepAction does not have a spec descriptor
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" sysExtraLogging does not have a spec descriptor
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "ERROR" targetClusterName does not have a spec descriptor
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "ERROR" fepclustername does not have a spec descriptor
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "ERROR" customparams does not have a spec descriptor
    • -
    • "ERROR" toFEPcluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "ERROR" restoretype does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "ERROR" mcSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "ERROR" fromFEPcluster does not have a spec descriptor
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Add CRD validation for FEPCluster/v2
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for FEPAction/v1
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPPgpool2/v1
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `customparams` in FEPPgpool2/v1
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `fepclustername` in FEPPgpool2/v1
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `toFEPcluster` in FEPRestore/v1
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `restoretype` in FEPRestore/v1
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPRestore/v1
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `mcSpec` in FEPRestore/v1
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `fromFEPcluster` in FEPRestore/v1
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPVolume: provided API should have an example annotation
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPUser: provided API should have an example annotation
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPBackup: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPPgpool2Cert: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPConfig: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPCert: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for fepChildCrVal
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add a spec descriptor for fep
    • -
    • "WARNING" Add a spec descriptor for fepAction
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Add a spec descriptor for sysExtraLogging
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for targetClusterName
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for fepclustername
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for customparams
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for toFEPcluster
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for restoretype
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for mcSpec
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for fromFEPcluster
    • +
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for environment
    • -
      -

      For fujitsu-enterprise-operator.v2.2.0:

      +

    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" (fujitsu-enterprise-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + +
    • "ERROR" memory does not have a spec descriptor
    • + +
    • "ERROR" cpu does not have a spec descriptor
    • + +
    • "ERROR" disk does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for environment
    • + +
    • "WARNING" Add a spec descriptor for memory
    • + +
    • "WARNING" Add a spec descriptor for cpu
    • + +
    • "WARNING" Add a spec descriptor for disk
    • -
    -
    - -

    NOT USED

    Grade C
    (400)
    kubeplus -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      -
      -

      For kubeplus.v1.0.5:

      +

      For couchdb-operator.v1.0.14:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + +
    • "ERROR" memory does not have a spec descriptor
    • + +
    • "ERROR" cpu does not have a spec descriptor
    • + +
    • "ERROR" disk does not have a spec descriptor
    • + -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "ERROR" error getting custom resources
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" Warning: Value workflows.kubeplus/v1alpha1, Kind=ResourceEvent: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value workflows.kubeplus/v1alpha1, Kind=ResourcePolicy: provided API should have an example annotation
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Warning: Value workflows.kubeplus/v1alpha1, Kind=ResourceMonitor: provided API should have an example annotation
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
      -

      For kubeplus.v1.0.5:

      +

    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" (kubeplus.v1.0.5) csv.Spec.Icon image/svg does not have a valid mediatype
    • +
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" (kubeplus.v1.0.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for memory
    • +
    • "WARNING" Add a spec descriptor for cpu
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    -
    - -

    NOT USED

    Grade D
    (100)
    uma-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      -
      -

      For uma-operator.v21.6.0-29:

      +

      For couchdb-operator.v1.1.0:

      -

    • "ERROR" role does not have a spec descriptor
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" type does not have a spec descriptor
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" agentManager does not have a spec descriptor
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" cloudmonitoring does not have a spec descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" clusterName does not have a spec descriptor
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" monitor does not have a spec descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" universalmonitoringagents.ca.broadcom.com does not have a status descriptor
    • +
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for role
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for type
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for agentManager
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for cloudmonitoring
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for monitor
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add CRD validation for UniversalMonitoringAgent/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For couchdb-operator.v1.1.0:

      +

    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
      -

      For uma-operator.v21.6.0-29:

      +

    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" (uma-operator.v21.6.0-29) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    jtrac-app-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" cpu does not have a spec descriptor
    • + +
    • "ERROR" disk does not have a spec descriptor
    • - -
      -

      For jtrac-app-operator.v0.0.1:

      +

    • "ERROR" environment does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "ERROR" autoscaling does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
      +

      For couchdb-operator.v1.2.1:

      -

    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" podSecurityContext does not have a spec descriptor
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" jtracs.example.com does not have a status descriptor
    • +
    • "ERROR" cpu does not have a spec descriptor
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for autoscaling
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
      +

      For couchdb-operator.v1.2.1:

      -

    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for podSecurityContext
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `securityContext` in jtrac/v1alpha1
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in jtrac/v1alpha1
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in jtrac/v1alpha1
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `service` in jtrac/v1alpha1
    • +
    • "ERROR" environment does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in jtrac/v1alpha1
    • +
    • "ERROR" memory does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in jtrac/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `image` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nameOverride` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cpu
    • -
    • "WARNING" Add CRD validation for spec field `podSecurityContext` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for disk
    • -
    • "WARNING" Add CRD validation for spec field `resources` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environment
    • -
    • "WARNING" Add CRD validation for spec field `autoscaling` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for memory
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in jtrac/v1alpha1
    • +
      +

      For couchdb-operator.v1.3.1:

      -

    • "WARNING" Add CRD validation for spec field `tolerations` in jtrac/v1alpha1
    • +
    • "ERROR" cpu does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in jtrac/v1alpha1
    • +
    • "ERROR" disk does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in jtrac/v1alpha1
    • +
    • "ERROR" environment does not have a spec descriptor
    • +
    • "ERROR" memory does not have a spec descriptor
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
      -

      For jtrac-app-operator.v0.0.1:

      +

    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" (jtrac-app-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    cert-manager-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for cpu
    • - -
      -

      For cert-manager-operator.v0.15.3:

      +

    • "WARNING" Add a spec descriptor for disk
    • -
    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for environment
    • + +
    • "WARNING" Add a spec descriptor for memory
    • + + +
      +

      For couchdb-operator.v1.4.3:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
      -

      For cert-manager-operator.v0.15.3:

      +

    • "ERROR" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" memory does not have a spec descriptor
    • + +
    • "ERROR" cpu does not have a spec descriptor
    • + +
    • "ERROR" disk does not have a spec descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for memory
    • + +
    • "WARNING" Add a spec descriptor for cpu
    • + +
    • "WARNING" Add a spec descriptor for disk
    • + +
    • "WARNING" Add a spec descriptor for environment
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For couchdb-operator.v1.4.3:

      -
      -

      For cert-manager-operator.v0.15.3:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" couchdbclusters.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" (cert-manager-operator.v0.15.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" formationlocks.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" recipes.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" recipetemplates.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
      -

      For cert-manager-operator.v0.15.3:

      +

    • "ERROR" backups.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • +
    • "ERROR" buckets.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" (cert-manager-operator.v0.15.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" formations.couchdb.databases.cloud.ibm.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" memory does not have a spec descriptor
    • + +
    • "ERROR" cpu does not have a spec descriptor
    • + +
    • "ERROR" disk does not have a spec descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for memory
    • + +
    • "WARNING" Add a spec descriptor for cpu
    • + +
    • "WARNING" Add a spec descriptor for disk
    • + +
    • "WARNING" Add a spec descriptor for environment
    • @@ -23504,441 +23790,227 @@
      Grade

    NOT USED

    Grade D
    (200)
    wavefront-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    -
      + +Info +
      +
        - -
        -

        For wavefront-operator.v0.1.0:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
        +

        For couchdb-operator.v1.0.14:

        -

      • "ERROR" wavefrontproxies.wavefront.com does not have a status descriptor
      • -
      • "ERROR" wavefrontcollectors.wavefront.com does not have a status descriptor
      • +
      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" token does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" url does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
        +

        For couchdb-operator.v1.0.14:

        -

      • "ERROR" openshift does not have a spec descriptor
      • -
      • "ERROR" storageClaimName does not have a spec descriptor
      • +
      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" enableAutoUpgrade does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" env does not have a spec descriptor
      • -
      • "ERROR" image does not have a spec descriptor
      • +
        +

        For couchdb-operator.v1.0.14:

        -

      • "ERROR" tolerations does not have a spec descriptor
      • -
      • "ERROR" daemon does not have a spec descriptor
      • +
      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" openshift does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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" useOpenshiftDefaultConfig does not have a spec descriptor
      • -
      • "ERROR" enableAutoUpgrade does not have a spec descriptor
      • +
        +

        For couchdb-operator.v1.0.14:

        -

      • "WARNING" Add a spec descriptor for token
      • +
      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for url
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • -
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for openshift
      • +
        +

        For couchdb-operator.v1.0.14:

        -

      • "WARNING" Add a spec descriptor for storageClaimName
      • -
      • "WARNING" Add a spec descriptor for enableAutoUpgrade
      • +
      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for env
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • -
      • "WARNING" Add a spec descriptor for image
      • -
      • "WARNING" Add a spec descriptor for tolerations
      • +
        +

        For couchdb-operator.v1.0.14:

        -

      • "WARNING" Add a spec descriptor for daemon
      • -
      • "WARNING" Add a spec descriptor for openshift
      • +
      • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for useOpenshiftDefaultConfig
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • -
      • "WARNING" Add a spec descriptor for enableAutoUpgrade
      • +
        +

        For couchdb-operator.v1.0.14:

        -

      -
      - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
      -

      For wavefront-operator.v0.1.0:

      +
      +

      For couchdb-operator.v1.0.14:

      -

    • "WARNING" (wavefront-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    anzo-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For couchdb-operator.v1.0.14:

      -
      -

      For anzo-operator.v2.0.101:

      +

    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" (anzo-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    -
    - -

    NOT USED

    Grade A
    (900)
    couchbase-enterprise-certified -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
      -

      For couchbase-operator.v2.2.0-1:

      +

    • "WARNING" this bundle is using APIs which were deprecated 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" couchbasebuckets.couchbase.com does not have a status descriptor
    • -
    • "ERROR" couchbaseephemeralbuckets.couchbase.com does not have a status descriptor
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "ERROR" couchbasememcachedbuckets.couchbase.com does not have a status descriptor
    • -
    • "ERROR" couchbaseusers.couchbase.com does not have a status descriptor
    • +
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" couchbasegroups.couchbase.com does not have a status descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" couchbaserolebindings.couchbase.com does not have a status descriptor
    • -
    • "ERROR" couchbasereplications.couchbase.com does not have a status descriptor
    • +
      +

      For couchdb-operator.v1.0.14:

      -

    • "ERROR" couchbasebackups.couchbase.com does not have a status descriptor
    • -
    • "ERROR" couchbasebackuprestores.couchbase.com does not have a status descriptor
    • +
    • "WARNING" (couchdb-operator.v1.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" couchbaseautoscalers.couchbase.com does not have a status descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" enablePreviewScaling does not have a spec descriptor
    • -
    • "ERROR" upgradeStrategy does not have a spec descriptor
    • +
      +

      For couchdb-operator.v1.1.0:

      -

    • "ERROR" recoveryPolicy does not have a spec descriptor
    • -
    • "ERROR" xdcr does not have a spec descriptor
    • +
    • "WARNING" (couchdb-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" logRetentionCount does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" cluster does not have a spec descriptor
    • -
    • "ERROR" hibernate does not have a spec descriptor
    • +
      +

      For couchdb-operator.v1.1.0:

      -

    • "ERROR" backup does not have a spec descriptor
    • -
    • "ERROR" hibernationStrategy does not have a spec descriptor
    • +
    • "WARNING" (couchdb-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" monitoring does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" logRetentionTime does not have a spec descriptor
    • -
    • "ERROR" logRetention does not have a spec descriptor
    • +
      +

      For couchdb-operator.v1.2.1:

      -

    • "ERROR" start does not have a spec descriptor
    • -
    • "ERROR" end does not have a spec descriptor
    • +
    • "WARNING" (couchdb-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" servers does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `logRetentionCount` in CouchbaseCluster/v2
    • +
      +

      For couchdb-operator.v1.2.1:

      -

    • "WARNING" Add CRD validation for spec field `logRetentionTime` in CouchbaseCluster/v2
    • -
    • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackup/v2
    • +
    • "WARNING" (couchdb-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `backOffLimit` in CouchbaseBackupRestore/v2
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for enablePreviewScaling
    • -
    • "WARNING" Add a spec descriptor for upgradeStrategy
    • +
      +

      For couchdb-operator.v1.3.1:

      -

    • "WARNING" Add a spec descriptor for recoveryPolicy
    • -
    • "WARNING" Add a spec descriptor for xdcr
    • +
    • "WARNING" (couchdb-operator.v1.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for logRetentionCount
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "WARNING" Add a spec descriptor for hibernate
    • +
      +

      For couchdb-operator.v1.4.3:

      -

    • "WARNING" Add a spec descriptor for backup
    • -
    • "WARNING" Add a spec descriptor for hibernationStrategy
    • +
    • "WARNING" (couchdb-operator.v1.4.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for monitoring
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for logRetentionTime
    • -
    • "WARNING" Add a spec descriptor for logRetention
    • +
      +

      For couchdb-operator.v1.4.3:

      -

    • "WARNING" Add a spec descriptor for start
    • -
    • "WARNING" Add a spec descriptor for end
    • +
    • "WARNING" (couchdb-operator.v1.4.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for servers
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    -
    -

    PASS

    - -

    NOT USED

    Grade B
    (800)
    Grade D
    (100)
    cyberarmor-operator-certifiedinstana-agent -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -23947,11 +24019,11 @@
    Grade

    NOT USED

    @@ -23961,89 +24033,41 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cyberarmor-operator.0.0.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" cyberarmors.apm.cyberarmor.com does not have a status descriptor
    • - -
    • "ERROR" cyberarmornamespaces.apm.cyberarmor.com does not have a status descriptor
    • - -
    • "ERROR" caK8sReportUrl does not have a spec descriptor
    • - -
    • "ERROR" caCustomerGuid does not have a spec descriptor
    • - -
    • "ERROR" caPostman does not have a spec descriptor
    • - -
    • "ERROR" caClusterGuid does not have a spec descriptor
    • - -
    • "ERROR" caloginInfo does not have a spec descriptor
    • - -
    • "ERROR" caDashboardBackend does not have a spec descriptor
    • - -
    • "ERROR" caPortalBackend does not have a spec descriptor
    • - -
    • "ERROR" caClusterName does not have a spec descriptor
    • - -
    • "ERROR" caMasterNotificationServerHost does not have a spec descriptor
    • - -
    • "ERROR" cyberArmorNameSpace does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for caK8sReportUrl
    • - -
    • "WARNING" Add a spec descriptor for caCustomerGuid
    • - -
    • "WARNING" Add a spec descriptor for caPostman
    • - -
    • "WARNING" Add a spec descriptor for caClusterGuid
    • - -
    • "WARNING" Add a spec descriptor for caloginInfo
    • - -
    • "WARNING" Add a spec descriptor for caDashboardBackend
    • - -
    • "WARNING" Add a spec descriptor for caPortalBackend
    • - -
    • "WARNING" Add a spec descriptor for caClusterName
    • - -
    • "WARNING" Add a spec descriptor for caMasterNotificationServerHost
    • - -
    • "WARNING" Add a spec descriptor for cyberArmorNameSpace
    • +

      For instana-agent-operator.v1.0.4:

      -

    • "WARNING" Add CRD validation for spec field `caClusterName` in Cyberarmor/v1alpha1
    • +
    • "ERROR" agent.env does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `caK8sReportUrl` in Cyberarmor/v1alpha1
    • +
    • "ERROR" cluster.name does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `caPortalBackend` in Cyberarmor/v1alpha1
    • +
    • "ERROR" config.files does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `caPostman` in Cyberarmor/v1alpha1
    • +
    • "ERROR" agents.instana.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `caMasterNotificationServerHost` in Cyberarmor/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `caloginInfo` in Cyberarmor/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `caDashboardBackend` in Cyberarmor/v1alpha1
    • +
    • "WARNING" Add CRD validation for InstanaAgent/v1beta1
    • -
    • "WARNING" Add CRD validation for spec field `caCustomerGuid` in Cyberarmor/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for agent.env
    • -
    • "WARNING" Add CRD validation for spec field `caClusterGuid` in Cyberarmor/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cluster.name
    • -
    • "WARNING" Add CRD validation for spec field `cyberArmorNameSpace` in Cyberarmornamespace/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for config.files
    • @@ -24054,27 +24078,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cyberarmor-operator.0.0.1:

      - +

      For instana-agent-operator.v1.0.4:

      -

    • "WARNING" (cyberarmor-operator.0.0.1) csv.metadata.Name cyberarmor-operator.0.0.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -24084,22 +24106,22 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    model-builder-for-vision-certifiedtraefikee-redhat-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -24108,59 +24130,45 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-modelbuilder-for-vision.v1.0.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" in_memory_storage does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" backup_storage does not have a spec descriptor
    • - -
    • "ERROR" metadata_storage does not have a spec descriptor
    • - -
    • "ERROR" photo_storage does not have a spec descriptor
    • - +

      For traefikee-redhat-certified.v2.0.2:

      -

    • "WARNING" Add a spec descriptor for in_memory_storage
    • +
    • "ERROR" traefikees.containo.us does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for license
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for backup_storage
    • -
    • "WARNING" Add a spec descriptor for metadata_storage
    • +
    • "WARNING" Add CRD validation for Traefikee/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for photo_storage
    • +
    • "WARNING" Add a spec descriptor for cluster
    • @@ -24171,27 +24179,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-modelbuilder-for-vision.v1.0.0:

      +

      For traefikee-redhat-certified.v2.0.2:

      -

    • "WARNING" (ibm-modelbuilder-for-vision.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (traefikee-redhat-certified.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -24201,28 +24209,28 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    behavior-analytics-services-operator-certifiedanchore-engine -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -24235,289 +24243,281 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For behavior-analytics-services-operator.v1.1.0:

      - -

    • "ERROR" airgappeddeployments.bas.ibm.com does not have a status descriptor
    • - -
    • "ERROR" analyticsproxies.bas.ibm.com does not have a status descriptor
    • - -
    • "ERROR" deleteclusters.bas.ibm.com does not have a status descriptor
    • - -
    • "ERROR" fulldeployments.bas.ibm.com does not have a status descriptor
    • - -
    • "ERROR" generatekeys.bas.ibm.com does not have a status descriptor
    • - -
    • "ERROR" storeforwardmetrics.bas.ibm.com does not have a status descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" kafka does not have a spec descriptor
    • - -
    • "ERROR" env_type does not have a spec descriptor
    • - -
    • "ERROR" allowed_domains does not have a spec descriptor
    • - -
    • "ERROR" db_archive does not have a spec descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" allowed_domains does not have a spec descriptor
    • - -
    • "ERROR" db_archive does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" env_type does not have a spec descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" kafka does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" allowed_domains does not have a spec descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" kafka does not have a spec descriptor
    • - -
    • "ERROR" prometheus_metrics does not have a spec descriptor
    • - -
    • "ERROR" env_type does not have a spec descriptor
    • - -
    • "ERROR" db_archive does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" db_archive does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" prometheus_metrics does not have a spec descriptor
    • - -
    • "ERROR" env_type does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" enable_test_api does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `postgres` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `kafka` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `env_type` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `allowed_domains` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `db_archive` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `airgapped` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AirgappedDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `allowed_domains` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `db_archive` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `postgres` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `kafka` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `env_type` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `airgapped` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AnalyticsProxy/v1
    • - -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in DeleteCluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `postgres` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `kafka` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `allowed_domains` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `db_archive` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `airgapped` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `prometheus_metrics` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `env_type` in FullDeployment/v1
    • - -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in GenerateKey/v1
    • - -
    • "WARNING" Add CRD validation for spec field `postgres` in StoreForwardMetric/v1
    • +

      For anchore-engine.v1.0.0:

      -

    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in StoreForwardMetric/v1
    • +
    • "ERROR" anchoreengines.charts.anchore.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `prometheus_metrics` in StoreForwardMetric/v1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `env_type` in StoreForwardMetric/v1
    • +
    • "ERROR" anchoreGlobal does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `db_archive` in StoreForwardMetric/v1
    • +
    • "ERROR" postgresql does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in StoreForwardMetric/v1
    • -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in StoreForwardMetric/v1
    • +
    • "WARNING" Add CRD validation for spec field `anchoreGlobal` in AnchoreEngine/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in StoreForwardMetric/v1
    • +
    • "WARNING" Add CRD validation for spec field `postgresql` in AnchoreEngine/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in Dashboard/v1
    • +
    • "WARNING" Add a spec descriptor for anchoreGlobal
    • -
    • "WARNING" Add CRD validation for spec field `enable_test_api` in Dashboard/v1
    • +
    • "WARNING" Add a spec descriptor for postgresql
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" Add a spec descriptor for env_type
    • +
      +

      For anchore-engine.v1.0.0:

      -

    • "WARNING" Add a spec descriptor for allowed_domains
    • -
    • "WARNING" Add a spec descriptor for db_archive
    • +
    • "WARNING" (anchore-engine.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anchoreengines.charts.anchore.io"])
    • -
    • "WARNING" Add a spec descriptor for allowed_domains
    • -
    • "WARNING" Add a spec descriptor for db_archive
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    kube-arangodb +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • + +
      +

      For kube-arangodb.v1.0.1:

      -

    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" arangodeployments.database.arangodb.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for env_type
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for postgres
    • -
    • "WARNING" Add a spec descriptor for kafka
    • +
    • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackupPolicy: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "WARNING" Warning: Value backup.arangodb.com/v1, Kind=ArangoBackup: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for allowed_domains
    • +
    • "WARNING" Warning: Value replication.database.arangodb.com/v1, Kind=ArangoDeploymentReplication: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "WARNING" Add CRD validation for ArangoDeployment/v1
    • -
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • -
    • "WARNING" Add a spec descriptor for postgres
    • -
    • "WARNING" Add a spec descriptor for kafka
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for prometheus_metrics
    • -
    • "WARNING" Add a spec descriptor for env_type
    • +
      +

      For kube-arangodb.v1.0.1:

      -

    • "WARNING" Add a spec descriptor for db_archive
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for db_archive
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    mf-cics-tg-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for postgres
    • + +
      +

      For mf-cics-tg-operator.v0.0.1:

      -

    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for prometheus_metrics
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for env_type
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for enable_test_api
    • +
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-tg/v1alpha1
    • @@ -24528,27 +24528,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For behavior-analytics-services-operator.v1.1.0:

      +

      For mf-cics-tg-operator.v0.0.1:

      -

    • "WARNING" (behavior-analytics-services-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (mf-cics-tg-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" this bundle is using APIs which were deprecated 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"])
    • diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html new file mode 100644 index 00000000..54e9889f --- /dev/null +++ b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html @@ -0,0 +1,5944 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
      + +

      Max OCP version for 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
      +
        +
      • Image name: registry.redhat.io/redhat/certified-operator-index:v4.6
      • +
      • Image ID: sha256:7330cc2746d5e4e1472c52603f854ba737f6faff38b26125c8fd096b1680cf80
      • +
      • Image Created at: 2021-09-05T00:24:03.559052578Z
      • +
      • From JSON report generated at: 2021-09-05
      • +
      +
      + +
      +
      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?
      +
        +
      • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
      • +
      • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
      • +
      • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
      • +
      +
      3. What does it mean for a package to be in red, amber or green?
      +
        +
      • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
      • +
      • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
      • +
      +
      + +
      +
      Missing Max OCP Version
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      mongodb-enterprise +
        + +
      • CRD
      • + +
      • UNKNOWN
      • + +
      +
      +
        + +
      • 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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,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.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.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.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=not set,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=not set,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.3 - (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.4 - (label=v4.5,v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • CRD
      • + +
      +
      +
        + +
      +
      +
        + +
      • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
      + +
      +
      Have Max OCP version when required or does not need it at all
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      bigid-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • bigid-operator.v1.0.3 - (label=v4.3,v4.4,v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      storageos2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • storageosoperator.v2.3.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      db2-zos-db-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      runtime-component-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      traefikee-redhat-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mf-cics-ts-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sriov-fec +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      hazelcast-jet-enterprise-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      aws-event-sources-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tf-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nvmesh-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tigera-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • release-v1.17
      • + +
      • release-v1.13
      • + +
      • release-v1.20
      • + +
      • release-v1.15
      • + +
      • 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.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
      • + +
      +
      +
        + +
      +
      ibm-tas +
        + +
      • ClusterRole
      • + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      oneagent-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      anzounstructured-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • anzounstructured-operator.v2.0.101 - (label=v4.5,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)
      • + +
      +
      cilium +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      hedvig-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      portworx-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      t8c-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      blackduck-connector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hazelcast-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      anchore-engine +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      growth-stack-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      zabbix-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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: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)
      • + +
      +
      densify-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      kubeplus +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kpow-io-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mf-cics-tg-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ako-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
      • + +
      +
      falco-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      seldon-deploy-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      infinibox-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      yugabyte-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      n3000 +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      can-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      confluent-for-kubernetes +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      orca +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      couchdb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1.1
      • + +
      • beta
      • + +
      • stable
      • + +
      • v1.4
      • + +
      • v1.3
      • + +
      • v1.0
      • + +
      • v1.2
      • + +
      +
      +
        + +
      • 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=[v1.1 beta],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=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      zoperator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appranix-cps +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      openshiftxray-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      crunchy-postgres-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      redis-enterprise-operator-cert +
        + +
      • CRD
      • + +
      +
      +
        + +
      • preview
      • + +
      • production
      • + +
      • 6.0.12
      • + +
      • 6.0.20
      • + +
      • 6.0.6
      • + +
      • 6.0.8
      • + +
      • 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.12 6.0.20 5.4.14 6.0.6 6.0.8],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.12 6.0.20],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[production 6.0.20],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],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.12 6.0.20 6.0.6 6.0.8],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.12 6.0.20 6.0.6 6.0.8],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.12 6.0.20 6.0.6 6.0.8],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.12 6.0.20 6.0.8],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.12 6.0.20 6.0.8],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      redhat-marketplace-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • stable
      • + +
      +
      +
        + +
      • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v2.2.3 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sysdig-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ivory-server-app +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      percona-server-mongodb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      gpu-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • v1.7
      • + +
      • v1.8
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      cass-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-symphony-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      couchbase-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      perceptilabs-operator-package +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      vfunction-server-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      snyk-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cyberarmor-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nastel-xray-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      open-liberty-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      transform-adv-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      linstor-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      bacula-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      k10-kasten-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      insightedge-enterprise-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dynatrace-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • dynatrace-operator.v0.2.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      fp-predict-plus-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      instana-agent +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      cloud-native-postgresql +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • cloud-native-postgresql.v1.7.1 - (label=v4.5-v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      rapidbiz-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      seldon-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      citrix-cpx-istio-sidecar-injector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      open-enterprise-spinnaker +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      joget-dx-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],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)
      • + +
      +
      datadog-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • datadog-operator.v0.5.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      uma-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      vprotect-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      coralogix-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      fep-ansible-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      behavior-analytics-services-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appdynamics-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      armory-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1alpha2
      • + +
      +
      +
        + +
      • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      node-red-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      atomicorp-helm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      splunk-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-certifai-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      timemachine-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • timemachine-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • timemachine-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      stonebranch-universalagent-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      eddi-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      starburst-enterprise-helm-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      iomesh-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      here-service-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      infrastructure-asset-orchestrator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nutanixcsioperator +
        + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      +
      +
        + +
      • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      model-builder-for-vision-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      neuvector-certified-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dataset-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • dataset-operator.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hspc-operator.v1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-cpx-with-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftpipeline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kube-arangodb +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cert-manager-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.v0.15.3 - (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)
      • + +
      +
      +
        + +
      +
      robin-storage-express +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      anaconda-team-edition +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
      • + +
      +
      ionir-operator +
        + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ionir-operator.v1.0.5 - (label=v4.6-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      federatorai-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      k8s-triliovault +
        + +
      • CRD
      • + +
      +
      +
        + +
      • namespaced
      • + +
      • cluster
      • + +
      • 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.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-mq-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibm-mq-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      percona-xtradb-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      xspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xspc-operator.1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],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)
      • + +
      +
      akka-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-block-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • maintenance-1.5
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      synopsys-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cic-operator-with-crds +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cnvrg-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      h2o-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nastel-navigator-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubemq-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.5.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      portshift-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      citrix-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      xcrypt-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      wavefront-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      joget-openshift-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-scale-csi +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      robin-storage-trial +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • robin-storage-trial.v5.3.4-156 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      rocketchat-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-healthcare-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      alcide-kaudit-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      presto-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      kong-offline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cpx-cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appsody-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],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)
      • + +
      +
      kubeturbo-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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: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)
      • + +
      +
      gitlab-runner-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      data-explorer-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      aqua-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • 6.0
      • + +
      • latest
      • + +
      • 5.3
      • + +
      • 6.2
      • + +
      +
      +
        + +
      • 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.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nginx-ingress-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      cockroachdb-certified +
        + +
      +
      +
        + +
      • stable
      • + +
      • beta
      • + +
      +
      +
        + +
      +
      +
        + +
      • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      f5-bigip-ctlr-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      memql-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      jtrac-app-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      elasticsearch-eck-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      nxiq-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nxrm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      as400rpc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • as400rpc-operator.v0.0.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hpe-ezmeral-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      erynis-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • erynis-operator.v0.2.35 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
      • + +
      +
      citrix-adc-istio-ingress-gateway-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aci-containers-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-fabric-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      anzo-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      openshiftartifactoryha-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nsx-container-plugin-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dell-csi-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
      • + +
      +
      +
        + +
      +
      +
      +
      + + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html new file mode 100644 index 00000000..53418e15 --- /dev/null +++ b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.7_2021-09-06.html @@ -0,0 +1,5904 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
      + +

      Max OCP version for 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
      +
        +
      • Image name: registry.redhat.io/redhat/certified-operator-index:v4.7
      • +
      • Image ID: sha256:47cc93ae1c46644e6434a5dca1e1f9401e09040932681851a8d0e90659f50859
      • +
      • Image Created at: 2021-09-05T00:26:51.725822443Z
      • +
      • From JSON report generated at: 2021-09-05
      • +
      +
      + +
      +
      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?
      +
        +
      • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
      • +
      • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
      • +
      • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
      • +
      +
      3. What does it mean for a package to be in red, amber or green?
      +
        +
      • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
      • +
      • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
      • +
      +
      + +
      +
      Missing Max OCP Version
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      mongodb-enterprise +
        + +
      • CRD
      • + +
      • UNKNOWN
      • + +
      +
      +
        + +
      • 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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • mongodb-enterprise.v1.2.1 - (label=v4.5,v4.6,max=not set,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=not set,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=not set,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.4 - (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)
      • + +
      +
      +
        + +
      +
      +
        + +
      • CRD
      • + +
      +
      +
        + +
      +
      +
        + +
      • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
      + +
      +
      Have Max OCP version when required or does not need it at all
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      redhat-marketplace-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • beta
      • + +
      +
      +
        + +
      • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v2.2.3 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kong-offline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      rapidbiz-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      k10-kasten-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      n3000 +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      ibm-tas +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      runtime-component-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-cpx-with-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nutanixcsioperator +
        + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      +
      +
        + +
      • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      cass-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      wavefront-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sysdig-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      splunk-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      confluent-for-kubernetes +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mf-cics-ts-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      crunchy-postgres-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      mf-cics-tg-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      yugabyte-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],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)
      • + +
      +
      portworx-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cilium +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      elasticsearch-eck-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      uma-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appranix-cps +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      nsx-container-plugin-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      fep-ansible-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hazelcast-jet-enterprise-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      anzounstructured-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      xspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xspc-operator.1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      growth-stack-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      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)
      • + +
      +
      couchdb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • v1.1
      • + +
      • v1.3
      • + +
      • stable
      • + +
      • v1.4
      • + +
      • v1.0
      • + +
      • v1.2
      • + +
      +
      +
        + +
      • 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=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[stable v1.4],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-block-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • maintenance-1.5
      • + +
      +
      +
        + +
      • 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:NO,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:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      appdynamics-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
      • + +
      +
      anaconda-team-edition +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      as400rpc-operator +
        + +
      • ClusterRole
      • + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      entando-k8s-operator +
        + +
      +
      +
        + +
      • beta
      • + +
      • alpha
      • + +
      • 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)
      • + +
      +
      snyk-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      node-red-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cloud-native-postgresql +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • cloud-native-postgresql.v1.7.1 - (label=v4.5-v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      behavior-analytics-services-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dell-csi-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
      • + +
      +
      +
        + +
      +
      timemachine-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      storageos2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • storageosoperator.v2.3.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kpow-io-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-scale-csi +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      vfunction-server-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      portshift-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      transform-adv-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-symphony-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hpe-ezmeral-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      falco-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hedvig-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      presto-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      cpx-cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aci-containers-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      zabbix-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cockroachdb-certified +
        + +
      +
      +
        + +
      • beta
      • + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      nastel-xray-operator +
        + +
      • ClusterRole
      • + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      can-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cisco-hxcsi-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cisco-hxcsi-operator.v1.2.1 - (label==v4.7,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)
      • + +
      +
      seldon-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      cortex-healthcare-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      akka-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftxray-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appsody-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      percona-server-mongodb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dataset-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • dataset-operator.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-fabric-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      blackduck-connector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      instana-agent +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      redis-enterprise-operator-cert +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 6.0.20
      • + +
      • production
      • + +
      • 6.0.6
      • + +
      • 6.0.8
      • + +
      • 6.0.12
      • + +
      • preview
      • + +
      • 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=[5.4.14 6.0.20 6.0.6 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.12-5 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.6-24 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.6-6 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.6 6.0.8 production 6.0.12],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.8-1 - (label=v4.5,v4.6,max=4.8,channels=[6.0.20 6.0.8 production 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=[6.0.20 6.0.8 production 6.0.12],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      anchore-engine +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      data-explorer-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      k8s-triliovault +
        + +
      • CRD
      • + +
      +
      +
        + +
      • cluster
      • + +
      • namespaced
      • + +
      • stable
      • + +
      +
      +
        + +
      • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aws-event-sources-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nastel-navigator-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      bacula-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sematext +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      insightedge-enterprise-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tf-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftartifactoryha-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      f5-bigip-ctlr-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      infrastructure-asset-orchestrator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openunison-ocp-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cic-operator-with-crds +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      alcide-kaudit-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      memql-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      ibm-mq-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibm-mq-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nxiq-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      open-liberty-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      db2-zos-db-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ivory-server-app +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ionir-operator +
        + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ionir-operator.v1.0.5 - (label=v4.6-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-cpx-istio-sidecar-injector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sriov-fec +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • sriov-fec.v1.2.0 - (label==v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • sriov-fec.v1.2.1 - (label==v4.7,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)
      • + +
      +
      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)
      • + +
      +
      joget-openshift-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      vprotect-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubemq-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      zoperator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tigera-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • release-v1.20
      • + +
      • release-v1.17
      • + +
      • release-v1.13
      • + +
      • stable
      • + +
      • release-v1.15
      • + +
      +
      +
        + +
      • 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.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
      • + +
      +
      +
        + +
      +
      t8c-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      armory-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1alpha2
      • + +
      +
      +
        + +
      • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],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)
      • + +
      +
      traefikee-redhat-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      couchbase-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      gitlab-runner-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      iomesh-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      model-builder-for-vision-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cnvrg-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      stonebranch-universalagent-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      minio-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • minio-operator.v4.0.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      bigid-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • bigid-operator.v1.0.3 - (label=v4.3,v4.4,v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      infinibox-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      starburst-enterprise-helm-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,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)
      • + +
      +
      cyberarmor-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      federatorai-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      jtrac-app-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nvmesh-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftpipeline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dynatrace-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • dynatrace-operator.v0.2.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      atomicorp-helm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      here-service-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      synopsys-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      fp-predict-plus-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      neuvector-certified-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      datadog-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • datadog-operator.v0.5.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      perceptilabs-operator-package +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      h2o-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
      • + +
      +
      oneagent-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      robin-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • robin-operator.v5.3.2-59 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hspc-operator.v1.6.0 - (label=v4.5-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hazelcast-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubeplus +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      gpu-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      coralogix-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      densify-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      orca +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      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)
      • + +
      +
      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)
      • + +
      +
      citrix-adc-istio-ingress-gateway-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      rocketchat-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ako-operator +
        + +
      • ClusterRole
      • + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kube-arangodb +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cert-manager-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      joget-dx-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nxrm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aqua-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 5.3
      • + +
      • 6.0
      • + +
      • alpha
      • + +
      • latest
      • + +
      • 6.2
      • + +
      +
      +
        + +
      • 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.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nginx-ingress-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      aikit-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      percona-xtradb-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-certifai-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      kubeturbo-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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-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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      xcrypt-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      eddi-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      +
      +
      + + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html new file mode 100644 index 00000000..14c2c266 --- /dev/null +++ b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-06.html @@ -0,0 +1,5476 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
      + +

      Max OCP version for 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
      +
        +
      • Image name: registry.redhat.io/redhat/certified-operator-index:v4.8
      • +
      • Image ID: sha256:b5f83e59db3b261835f588c0091a920f8e76ead8926b9541186f0cd3cb5c8247
      • +
      • Image Created at: 2021-09-03T17:46:57.598886604Z
      • +
      • From JSON report generated at: 2021-09-04
      • +
      +
      + +
      +
      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?
      +
        +
      • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
      • +
      • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
      • +
      • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
      • +
      +
      3. What does it mean for a package to be in red, amber or green?
      +
        +
      • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
      • +
      • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
      • +
      +
      + +
      +
      Missing Max OCP Version
      + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      mongodb-enterprise +
        + +
      • UNKNOWN
      • + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,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.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.4 - (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.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
      + +
      +
      Have Max OCP version when required or does not need it at all
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      cortex-certifai-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • stable
      • + +
      +
      +
        + +
      • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      eddi-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      portworx-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-symphony-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      traefikee-redhat-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      couchbase-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      openshiftpipeline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aqua-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • latest
      • + +
      • alpha
      • + +
      • 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:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      couchdb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1.4
      • + +
      • stable
      • + +
      • v1.0
      • + +
      • beta
      • + +
      • v1.1
      • + +
      • v1.2
      • + +
      • v1.3
      • + +
      +
      +
        + +
      • 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 stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      percona-server-mongodb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubeturbo-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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-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: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)
      • + +
      +
      seldon-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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: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)
      • + +
      +
      +
        + +
      +
      cyberarmor-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appdynamics-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      neuvector-certified-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nastel-xray-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      growth-stack-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      vfunction-server-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      appranix-cps +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • deprecated
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      rapidbiz-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      db2-zos-db-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftartifactoryha-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      open-liberty-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
      • + +
      +
      infinibox-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sysdig-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cockroachdb-certified +
        + +
      +
      +
        + +
      • beta
      • + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      hedvig-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tigera-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • release-v1.13
      • + +
      • release-v1.20
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • tigera-operator.v1.20.0 - (label=v4.5-v4.8,max=4.8,channels=[release-v1.20],head:YES,defaultChannel:YES, 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)
      • + +
      +
      +
        + +
      +
      zoperator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      bacula-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      datadog-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      blackduck-connector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      k10-kasten-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
      • + +
      +
      federatorai-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      perceptilabs-operator-package +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      linstor-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      fep-ansible-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      atomicorp-helm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      orca +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      memql-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      cortex-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      f5-bigip-ctlr-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubeplus +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sematext +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ionir-operator +
        + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ionir-operator.v1.0.2 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ionir-operator.v1.0.3 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cloud-native-postgresql +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • cloud-native-postgresql.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      jtrac-app-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      iomesh-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      infrastructure-asset-orchestrator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      as400rpc-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      uma-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      akka-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      model-builder-for-vision-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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-block-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-block-csi-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.4.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,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)
      • + +
      +
      aci-containers-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hpe-ezmeral-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      instana-agent +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-cpx-istio-sidecar-injector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      k8s-triliovault +
        + +
      • CRD
      • + +
      +
      +
        + +
      • cluster
      • + +
      • namespaced
      • + +
      • stable
      • + +
      +
      +
        + +
      • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      falco-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aws-event-sources-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kpow-io-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      t8c-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nutanixcsioperator +
        + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      +
      +
        + +
      • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      mf-cics-tg-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kube-arangodb +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nastel-navigator-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      percona-xtradb-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      gitlab-runner-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      coralogix-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appsody-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      densify-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      yugabyte-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      timemachine-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tf-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      xspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      wavefront-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      xcrypt-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      stonebranch-universalagent-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      armory-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1alpha2
      • + +
      +
      +
        + +
      • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aikit-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      citrix-cpx-with-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nginx-ingress-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      hazelcast-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openunison-ocp-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kong-offline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nsx-container-plugin-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      cortex-fabric-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      citrix-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      starburst-enterprise-helm-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      alcide-kaudit-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      joget-dx-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nxrm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubemq-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      presto-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      cnvrg-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      here-service-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-scale-csi +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      cortex-healthcare-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      sriov-fec +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • sriov-fec.v1.3.0 - (label==v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      splunk-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cert-manager-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ako-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cpx-cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      storageos2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • storageosoperator.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      vprotect-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-adc-istio-ingress-gateway-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      oneagent-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      rocketchat-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      data-explorer-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nxiq-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      n3000 +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      anaconda-team-edition +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-tas +
        + +
      • ClusterRole
      • + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cilium +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      crunchy-postgres-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],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)
      • + +
      +
      ivory-server-app +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftxray-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      node-red-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      fp-predict-plus-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      synopsys-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      elasticsearch-eck-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      joget-openshift-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dell-csi-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
      • + +
      +
      +
        + +
      +
      runtime-component-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      redis-enterprise-operator-cert +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 6.0.8
      • + +
      • 6.0.20
      • + +
      • 6.0.12
      • + +
      • production
      • + +
      • 6.0.6
      • + +
      • preview
      • + +
      • 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=[6.0.8 6.0.20 5.4.14 6.0.12 production 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=[6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production],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)
      • + +
      +
      portshift-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      nvmesh-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      anchore-engine +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      transform-adv-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v2.3
      • + +
      • stable
      • + +
      +
      +
        + +
      • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[v2.3 stable],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)
      • + +
      +
      +
        + +
      +
      insightedge-enterprise-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mf-cics-ts-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
      • + +
      +
      snyk-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      gpu-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      behavior-analytics-services-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      redhat-marketplace-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • beta
      • + +
      +
      +
        + +
      • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v2.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      can-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      zabbix-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cic-operator-with-crds +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      h2o-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hazelcast-jet-enterprise-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      +
      +
      + + + diff --git a/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html new file mode 100644 index 00000000..1a5d07cd --- /dev/null +++ b/testdata/reports/redhat_certified_operator_index/dashboards/maxocp_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-06.html @@ -0,0 +1,5226 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
      + +

      Max OCP version for 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
      +
        +
      • Image name: registry.redhat.io/redhat/certified-operator-index:v4.9
      • +
      • Image ID: sha256:0e02d2e593cd85883eb869ca25e904b02cb0a53c57493379f8a02c0c39dc3b5b
      • +
      • Image Created at: 2021-09-03T17:49:47.505668907Z
      • +
      • From JSON report generated at: 2021-09-05
      • +
      +
      + +
      +
      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?
      +
        +
      • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
      • +
      • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
      • +
      • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
      • +
      +
      3. What does it mean for a package to be in red, amber or green?
      +
        +
      • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
      • +
      • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
      • +
      +
      + +
      +
      Missing Max OCP Version
      + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      mongodb-enterprise +
        + +
      • CRD
      • + +
      • UNKNOWN
      • + +
      +
      +
        + +
      • 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:YES,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.4 - (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)
      • + +
      +
      +
        + +
      +
      +
      + +
      +
      Have Max OCP version when required or does not need it at all
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
      couchbase-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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: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)
      • + +
      +
      memql-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      appsody-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • appsody-operator.v0.6.1 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cpx-cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      federatorai-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      growth-stack-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      model-builder-for-vision-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      anzograph-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      neuvector-certified-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nginx-ingress-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      storageos2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • storageosoperator.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      falco-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • falco-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cockroachdb-certified +
        + +
      +
      +
        + +
      • beta
      • + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      aikit-operator +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      xspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • xspc-operator.1.5.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aws-event-sources-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      couchdb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1.4
      • + +
      • stable
      • + +
      • v1.0
      • + +
      • beta
      • + +
      • v1.1
      • + +
      • v1.2
      • + +
      • v1.3
      • + +
      +
      +
        + +
      • 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 stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • couchdb-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[v1.4 stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      db2-zos-db-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      k10-kasten-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      coralogix-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • coralogix-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      armory-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1alpha2
      • + +
      +
      +
        + +
      • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-adc-istio-ingress-gateway-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-adc-istio-ingress-gateway-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kong-offline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ivory-server-app +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      dell-csi-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • dell-csi-operator-certified.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
      • + +
      +
      +
        + +
      +
      kpow-io-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftxray-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • xray-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v1.1.8 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • xray-operator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cilium +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • cilium.v1.10.3-x49b6fc1 - (label=v4.5,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      citrix-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mf-cics-ts-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openunison-ocp-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      gpu-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v1.8
      • + +
      • stable
      • + +
      • 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      rapidbiz-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      behavior-analytics-services-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • 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: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)
      • + +
      +
      nxiq-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxiq-operator-certified.v1.121.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.121.0-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.90.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.94.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.96.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.97.0-4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.98.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxiq-operator-certified.v1.99.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      perceptilabs-operator-package +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      k8s-triliovault +
        + +
      • CRD
      • + +
      +
      +
        + +
      • cluster
      • + +
      • stable
      • + +
      • namespaced
      • + +
      +
      +
        + +
      • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • k8s-triliovault-stable.v2.1.0 - (label=v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-symphony-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-spectrum-symphony-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      datadog-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      splunk-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • splunk.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      anaconda-team-edition +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cic-operator-with-crds +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-cpx-istio-sidecar-injector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-istio-sidecar-injector-operator.v0.9.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-healthcare-hub-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      cnvrg-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubeplus +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      runtime-component-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      wavefront-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • wavefront-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      oneagent-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      percona-server-mongodb-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      h2o-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • h2o-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
      • + +
      +
      here-service-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      percona-xtradb-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      synopsys-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • synopsys-operator.2019.8.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      uma-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • uma-operator.v3.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubemq-operator-marketplace +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      portshift-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      ionir-operator +
        + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ionir-operator.v1.0.2 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ionir-operator.v1.0.3 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      data-explorer-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appranix-cps +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      ibm-tas +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ibm-tas.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      traefikee-redhat-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ako-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-spectrum-scale-csi +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      jtrac-app-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      t8c-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      can-operator +
        + +
      • ClusterRole
      • + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      orca +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      insightedge-enterprise-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      redis-enterprise-operator-cert +
        + +
      • CRD
      • + +
      +
      +
        + +
      • preview
      • + +
      • 6.0.8
      • + +
      • 6.0.20
      • + +
      • 6.0.12
      • + +
      • production
      • + +
      • 5.4.14
      • + +
      • 6.0.6
      • + +
      +
      +
        + +
      • 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=[6.0.8 6.0.20 5.4.14 6.0.12 production 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=[6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.20-12a - (label=v4.5,max=4.8,channels=[6.0.20 production],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.6-11 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production 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=[6.0.8 6.0.20 6.0.12 production],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • redis-enterprise-operator.v6.0.8-20 - (label=v4.5,v4.6,max=4.8,channels=[6.0.8 6.0.20 6.0.12 production],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cloud-native-postgresql +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • cloud-native-postgresql.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • cloud-native-postgresql.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      redhat-marketplace-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • stable
      • + +
      +
      +
        + +
      • redhat-marketplace-operator.v0.2.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.2 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.5 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v1.0.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
      • + +
      • redhat-marketplace-operator.v2.1.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kubeturbo-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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-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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      citrix-cpx-with-ingress-controller-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • citrix-cpx-with-ingress-controller-operator.v1.13.20 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      ibm-block-csi-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • ibm-block-csi-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.4.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • ibm-block-csi-operator.v1.5.0 - (label=v4.6,4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • ibm-block-csi-operator.v1.6.0 - (label=v4.7,v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      bacula-operator2 +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • bacula-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      eddi-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      densify-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      hazelcast-jet-enterprise-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      presto-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      nvmesh-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • nvmesh-operator.0.7.2 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      crunchy-postgres-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • v5
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:NO, deprecated:NO)
      • + +
      +
      +
        + +
      • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      starburst-enterprise-helm-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      appdynamics-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • appdynamics-operator.v0.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      cloudbees-ci +
        + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      +
      +
        + +
      • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      akka-cluster-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      snyk-operator-certified +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • snyk-operator-certified.v1.40.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      blackduck-connector-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • blackduck-connector-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      portworx-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • portworx-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,v4.8,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • portworx-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      timemachine-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      tf-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • tf-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aqua-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • latest
      • + +
      • alpha
      • + +
      • 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:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nutanixcsioperator +
        + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      +
      +
        + +
      • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      transform-adv-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • v2.3
      • + +
      • stable
      • + +
      +
      +
        + +
      • ta-operator.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[v2.3 stable],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)
      • + +
      +
      +
        + +
      +
      openshiftpipeline-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • pipeline-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      vprotect-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      alcide-kaudit-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • alcide-kaudit-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      fp-predict-plus-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • fp-predict-plus-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-certifai-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      • stable
      • + +
      +
      +
        + +
      • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      rocketchat-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hedvig-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hedvig-operator.v1.0.1 - (label=v4.3,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      as400rpc-operator +
        + +
      • CRD
      • + +
      • ClusterRole
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • as400rpc-operator.v0.0.5 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nxrm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • nxrm-operator-certified.v3.22.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.23.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.24.0-7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.25.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.26.1-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.27.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.31.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • nxrm-operator-certified.v3.32.0-1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      aci-containers-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      seldon-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      • alpha
      • + +
      +
      +
        + +
      • 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: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)
      • + +
      +
      +
        + +
      +
      infinibox-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • infinibox-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      zoperator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zoperator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      joget-openshift-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      gitlab-runner-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      open-liberty-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • open-liberty-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hazelcast-enterprise-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cyberarmor-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      zabbix-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      joget-dx-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      anchore-engine +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • anchore-engine.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      sysdig-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      stonebranch-universalagent-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      openshiftartifactoryha-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.0.3 - (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.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.12 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.13 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.7 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • artifactory-ha-operator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      elasticsearch-eck-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.5.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • elasticsearch-eck-operator-certified.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      • elasticsearch-eck-operator-certified.v1.7.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      entando-k8s-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      • beta
      • + +
      • 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)
      • + +
      +
      cic-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • cic-operator.v1.7.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      mf-cics-tg-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cert-manager-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • stable
      • + +
      +
      +
        + +
      • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      fep-ansible-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      kube-arangodb +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • kube-arangodb.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      instana-agent +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      atomicorp-helm-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      iomesh-operator +
        + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      +
      +
        + +
      • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      sematext +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • sematext-operator.v1.0.9 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      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)
      • + +
      +
      infrastructure-asset-orchestrator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • infrastructure-asset-orchestrator.v1.0.0 - (label=v4.5,v4.6,max=4.8,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)
      • + +
      +
      xcrypt-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      node-red-operator-certified +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • node-red-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      • + +
      • node-red-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      cortex-fabric-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • 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)
      • + +
      +
      +
        + +
      +
      yugabyte-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      • beta
      • + +
      +
      +
        + +
      • yugabyte-operator.v0.9.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      f5-bigip-ctlr-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • beta
      • + +
      +
      +
        + +
      • f5-bigip-ctlr-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      hspc-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • stable
      • + +
      +
      +
        + +
      • hspc-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      nsx-container-plugin-operator +
        + +
      • CRD
      • + +
      +
      +
        + +
      • alpha
      • + +
      +
      +
        + +
      • nsx-container-plugin-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • + +
      +
      +
        + +
      +
      +
      +
      + + + diff --git a/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html b/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html index 32832ff2..29003ce3 100644 --- a/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html +++ b/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html @@ -102,32 +102,13 @@
      2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    -
    - -
    -
    Not complying with the recommendations
    - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -142,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -192,12 +153,14 @@
    Partially complying with the recommendations
    - + @@ -226,7 +193,7 @@
    Partially complying with the recommendations
    - + @@ -256,7 +227,7 @@
    Partially complying with the recommendations
    - + @@ -294,7 +257,7 @@
    Partially complying with the recommendations
    - + @@ -328,7 +289,7 @@
    Partially complying with the recommendations
    - + @@ -358,7 +329,7 @@
    Partially complying with the recommendations
    - + @@ -412,7 +359,7 @@
    Partially complying with the recommendations
    - + @@ -442,7 +393,7 @@
    Partially complying with the recommendations
    - + @@ -476,7 +441,7 @@
    Partially complying with the recommendations
    - + @@ -514,7 +491,7 @@
    Partially complying with the recommendations
    - + @@ -544,7 +525,7 @@
    Partially complying with the recommendations
    - + @@ -586,7 +559,7 @@
    Partially complying with the recommendations
    - + @@ -628,7 +591,7 @@
    Partially complying with the recommendations
    - + @@ -678,7 +621,7 @@
    Partially complying with the recommendations
    - + @@ -710,7 +675,7 @@
    Partially complying with the recommendations
    - + @@ -746,7 +721,7 @@
    Partially complying with the recommendations
    - + @@ -776,7 +751,7 @@
    Partially complying with the recommendations
    - + @@ -810,7 +789,7 @@
    Partially complying with the recommendations
    - + @@ -854,7 +827,7 @@
    Partially complying with the recommendations
    - + @@ -886,7 +865,7 @@
    Partially complying with the recommendations
    - + @@ -916,7 +923,7 @@
    Partially complying with the recommendations
    - + @@ -954,7 +953,7 @@
    Partially complying with the recommendations
    - + @@ -984,7 +1003,7 @@
    Partially complying with the recommendations
    - + @@ -1032,7 +1083,7 @@
    Partially complying with the recommendations
    - + @@ -1070,7 +1125,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -1120,7 +1191,7 @@
    Partially complying with the recommendations
    - + @@ -1152,7 +1221,7 @@
    Partially complying with the recommendations
    - + @@ -1182,7 +1251,7 @@
    Partially complying with the recommendations
    - + @@ -1230,7 +1293,7 @@
    Partially complying with the recommendations
    - + @@ -1264,7 +1327,7 @@
    Partially complying with the recommendations
    - + @@ -1294,7 +1357,7 @@
    Partially complying with the recommendations
    - + @@ -1352,7 +1413,7 @@
    Partially complying with the recommendations
    - + @@ -1388,7 +1449,7 @@
    Partially complying with the recommendations
    - + @@ -1428,7 +1481,7 @@
    Partially complying with the recommendations
    - + @@ -1458,7 +1529,7 @@
    Partially complying with the recommendations
    - + @@ -1496,7 +1559,7 @@
    Partially complying with the recommendations
    - + @@ -1526,7 +1609,7 @@
    Partially complying with the recommendations
    - + @@ -1606,7 +1667,7 @@
    Partially complying with the recommendations
    - + @@ -1636,7 +1697,7 @@
    Partially complying with the recommendations
    - + @@ -1670,7 +1737,7 @@
    Partially complying with the recommendations
    - + @@ -1700,7 +1767,7 @@
    Partially complying with the recommendations
    - + @@ -1732,7 +1809,7 @@
    Partially complying with the recommendations
    - + @@ -1776,7 +1843,7 @@
    Partially complying with the recommendations
    - + @@ -1818,7 +1875,7 @@
    Partially complying with the recommendations
    - + @@ -1858,7 +1905,7 @@
    Partially complying with the recommendations
    - + - + @@ -1950,7 +1969,7 @@
    Partially complying with the recommendations
    - + @@ -1980,7 +2013,7 @@
    Partially complying with the recommendations
    - + @@ -2010,7 +2057,7 @@
    Partially complying with the recommendations
    - + @@ -2060,7 +2095,7 @@
    Partially complying with the recommendations
    - + @@ -2090,7 +2133,7 @@
    Partially complying with the recommendations
    - + @@ -2120,7 +2163,7 @@
    Partially complying with the recommendations
    - + @@ -2158,10 +2193,12 @@
    Partially complying with the recommendations
    - + @@ -2214,7 +2231,7 @@
    Partially complying with the recommendations
    - + - + @@ -2244,12 +2281,10 @@
    Partially complying with the recommendations
    - + @@ -2282,7 +2319,7 @@
    Partially complying with the recommendations
    - + @@ -2314,7 +2357,7 @@
    Partially complying with the recommendations
    - + @@ -2348,7 +2403,7 @@
    Partially complying with the recommendations
    - + @@ -2394,7 +2433,7 @@
    Partially complying with the recommendations
    - + @@ -2424,7 +2481,7 @@
    Partially complying with the recommendations
    - + @@ -2454,7 +2511,7 @@
    Partially complying with the recommendations
    - + @@ -2486,7 +2541,7 @@
    Partially complying with the recommendations
    - + @@ -2520,7 +2579,7 @@
    Partially complying with the recommendations
    - + @@ -2554,39 +2619,41 @@
    Partially complying with the recommendations
    - + @@ -2598,7 +2665,7 @@
    Partially complying with the recommendations
    - + @@ -2628,7 +2695,7 @@
    Partially complying with the recommendations
    - + @@ -2658,7 +2731,7 @@
    Partially complying with the recommendations
    - + @@ -2708,41 +2761,29 @@
    Partially complying with the recommendations
    - + @@ -2754,14 +2795,12 @@
    Partially complying with the recommendations
    - + @@ -2794,7 +2825,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -2872,7 +2869,7 @@
    Partially complying with the recommendations
    - + @@ -2910,7 +2901,7 @@
    Partially complying with the recommendations
    - + @@ -2956,7 +2949,7 @@
    Partially complying with the recommendations
    - + @@ -2996,7 +2983,7 @@
    Partially complying with the recommendations
    - + @@ -3026,7 +3013,7 @@
    Partially complying with the recommendations
    - + @@ -3064,7 +3043,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -3154,7 +3093,7 @@
    Partially complying with the recommendations
    - + @@ -3184,7 +3123,7 @@
    Partially complying with the recommendations
    - + @@ -3225,7 +3162,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    neuvector-community-operatorenc-key-sync
      @@ -153,34 +134,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ditto-operatornexus-operator-m88i
    • CRD
    • +
    • ClusterRole
    • +
    @@ -210,11 +173,15 @@
    Partially complying with the recommendations
      -
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mcad-operatoroadp-operator
      @@ -244,7 +211,11 @@
      Partially complying with the recommendations
      -
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    spinnaker-operatorapicurito
      @@ -274,15 +245,7 @@
      Partially complying with the recommendations
      -
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operatorevent-streams-topic
      @@ -305,18 +268,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eunomiacrane-operator
      @@ -339,14 +300,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • release-v1.4
    • + +
    • release-v1.5
      -
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    grafana-operatorhazelcast-jet-operator
      @@ -369,8 +340,6 @@
      Partially complying with the recommendations
      -
    • original
    • -
    • alpha
    @@ -378,29 +347,7 @@
    Partially complying with the recommendations
      -
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apicuritoatlasmap-operator
      @@ -430,7 +377,11 @@
      Partially complying with the recommendations
      -
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    oadp-operatoropendatahub-operator
      @@ -453,18 +404,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • rolling
    • + +
    • beta
    • + +
    • stable
      -
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[rolling beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-block-csi-operator-communitycommunity-kubevirt-hyperconverged
      @@ -487,22 +452,34 @@
      Partially complying with the recommendations
      -
    • maintenance-1.5
    • -
    • stable
    • +
    • 0.0.2
    • + +
    • 0.0.3
    • + +
    • 1.0.0
    • + +
    • 1.1.0
    • + +
    • 0.0.1
    • +
      -
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.1],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.5.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[1.0.0 0.0.3],head:YES,defaultChannel:NO, 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)
    • +
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.0.0 1.1.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[stable 1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-operatortf-operator
      @@ -527,12 +504,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    openebshawtio-operator
      @@ -562,19 +543,11 @@
      Partially complying with the recommendations
      -
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openebsoperator.v2.10.0 - (label=,max="4.5",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openebsoperator.v2.11.0 - (label=,max="4.5",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubeturboskydive-operator
      @@ -597,8 +570,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -606,17 +577,9 @@
    Partially complying with the recommendations
      -
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    federatoraigitlab-runner-operator
      @@ -646,27 +609,7 @@
      Partially complying with the recommendations
      -
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    skydive-operatorgrafana-operator
      @@ -689,6 +632,8 @@
      Partially complying with the recommendations
      +
    • original
    • +
    • alpha
    @@ -696,9 +641,29 @@
    Partially complying with the recommendations
      -
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    radanalytics-spark3scale-community-operator
      @@ -721,20 +686,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • threescale-2.10
    • + +
    • threescale-2.6
    • + +
    • threescale-2.7
    • + +
    • threescale-2.8
    • + +
    • threescale-2.9
      -
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.6 threescale-2.7 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.7 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    node-problem-detectorpostgresql-operator-dev4devs-com
      @@ -764,7 +739,7 @@
      Partially complying with the recommendations
      -
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hyperfoil-bundleopsmx-spinnaker-operator
      @@ -794,11 +769,15 @@
      Partially complying with the recommendations
      -
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apicast-community-operatortraefikee-operator
      @@ -821,8 +800,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -830,19 +807,15 @@
    Partially complying with the recommendations
      -
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hedvig-operatorspinnaker-operator
      @@ -865,16 +838,22 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    composable-operatormaistraoperator
      @@ -897,14 +876,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • 1.0
      -
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[stable 1.0],head:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operatornsm-operator-registry
      @@ -927,22 +934,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    spark-gcpfederatorai
      @@ -965,14 +964,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    argocd-operatorinfinispan
      @@ -995,32 +1014,64 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • 2.0.x
    • + +
    • 2.1.x
    • + +
    • 1.1.x
    • + +
    • dev-preview
      -
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    aws-efs-operatorkubeturbo
      @@ -1045,20 +1096,24 @@
      Partially complying with the recommendations
    • stable
    • +
    • alpha
    • +
      -
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    aquaibmcloud-iam-operator
      @@ -1081,34 +1136,50 @@
      Partially complying with the recommendations
      -
    • 5.3.0
    • -
    • alpha
    • -
    • 6.0.0
    • - -
    • 6.2.0
    • -
      -
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    tidb-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vault-helmhorreum-operator
      @@ -1138,9 +1209,7 @@
      Partially complying with the recommendations
      -
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gitlab-runner-operatorjupyterlab-operator
      @@ -1170,7 +1239,7 @@
      Partially complying with the recommendations
      -
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    microckst8c
      @@ -1202,23 +1271,17 @@
      Partially complying with the recommendations
      -
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    starter-kit-operatorwso2am-operator
      @@ -1241,18 +1304,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    iot-simulatorsplunk
      @@ -1282,7 +1345,7 @@
      Partially complying with the recommendations
      -
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibmcloud-operatorsnyk-operator
      @@ -1312,35 +1375,33 @@
      Partially complying with the recommendations
      -
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.55.0 - (label=,max="4.8",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)
    • +
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hawkbit-operatorradanalytics-spark
      @@ -1370,13 +1431,13 @@
      Partially complying with the recommendations
      -
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    teiidhedvig-operator
      @@ -1399,24 +1460,16 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    enc-key-syncdatadog-operator
      @@ -1446,7 +1499,25 @@
      Partially complying with the recommendations
      -
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-operatormattermost-operator
      @@ -1469,22 +1540,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    esindex-operatorseldon-operator
      @@ -1507,14 +1570,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    infinispanibmcloud-operator
      @@ -1539,62 +1622,40 @@
      Partially complying with the recommendations
    • stable
    • -
    • 2.0.x
    • - -
    • 2.1.x
    • - -
    • 1.1.x
    • - -
    • dev-preview
    • -
      -
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v1.0.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v1.0.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubestonemyvirtualdirectory
      @@ -1617,14 +1678,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • kubestone.v0.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    tf-operatorargocd-operator-helm
      @@ -1649,16 +1710,22 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    pystolham-deploy
      @@ -1688,7 +1755,7 @@
      Partially complying with the recommendations
      -
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sealed-secrets-operator-helmopenebs
      @@ -1718,9 +1785,19 @@
      Partially complying with the recommendations
      -
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    enmassestarter-kit-operator
      @@ -1750,21 +1827,11 @@
      Partially complying with the recommendations
      -
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    t8cplanetscale
      @@ -1787,26 +1854,16 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • alpha
    • +
    • beta
      -
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    crane-operatoreunomia
      @@ -1829,24 +1886,14 @@
      Partially complying with the recommendations
      -
    • release-v1.4
    • - -
    • release-v1.5
    • +
    • alpha
      -
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-operatorsealed-secrets-operator-helm
      @@ -1876,33 +1923,21 @@
      Partially complying with the recommendations
      -
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    opendatahub-operatorprometheus-exporter-operator
      @@ -1913,32 +1948,16 @@
      Partially complying with the recommendations
      -
    • rolling
    • - -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[rolling beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mattermost-operatorenmasse
      @@ -1968,7 +1987,21 @@
      Partially complying with the recommendations
      -
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    horreum-operatorapi-operator
      @@ -1991,14 +2024,28 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • 2.x-stable
      -
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operatorpodium-operator-bundle
      @@ -2021,34 +2068,22 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ham-deployaws-efs-operator
      @@ -2071,14 +2106,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nsm-operator-registrymcad-operator
      @@ -2108,7 +2151,7 @@
      Partially complying with the recommendations
      -
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    opsmx-spinnaker-operatorkubefed
      @@ -2138,15 +2181,7 @@
      Partially complying with the recommendations
      -
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operatorintegrity-shield-operator
      +
    • ClusterRole
    • +
    • CRD
    @@ -2169,40 +2206,20 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jupyterlab-operatoraqua
      @@ -2225,14 +2242,34 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • 5.3.0
    • -
    -
    -
      +
    • alpha
    • + +
    • 6.0.0
    • + +
    • 6.2.0
    • + +
    +
    +
      -
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    integrity-shield-operatorpercona-server-mongodb-operator
      -
    • ClusterRole
    • -
    • CRD
    @@ -2257,20 +2292,22 @@
    Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    prometheus-exporter-operatoribm-block-csi-operator-community
      @@ -2293,16 +2330,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • maintenance-1.5
    • + +
    • stable
      -
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=,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)
    atlasmap-operatorportworx-essentials
      @@ -2325,18 +2368,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    3scale-community-operatorcomposable-operator
      @@ -2359,30 +2414,14 @@
      Partially complying with the recommendations
      -
    • threescale-2.10
    • - -
    • threescale-2.6
    • - -
    • threescale-2.7
    • - -
    • threescale-2.8
    • - -
    • threescale-2.9
    • +
    • alpha
      -
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.6 threescale-2.7 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.7 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    splunkargocd-operator
      @@ -2412,7 +2451,25 @@
      Partially complying with the recommendations
      -
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    openshift-ibm-quantum-operatorkubestone
      @@ -2442,7 +2499,7 @@
      Partially complying with the recommendations
      -
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubestone.v0.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    event-streams-topicesindex-operator
      @@ -2472,9 +2529,7 @@
      Partially complying with the recommendations
      -
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    wso2am-operatorakka-cluster-operator
      @@ -2497,18 +2552,22 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hawtio-operatorteiid
      @@ -2531,18 +2590,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    api-operatorember-csi-community-operator
    • CRD
    • +
    • UNKNOWN
    • +
      -
    • stable
    • - -
    • 2.x-stable
    • +
    • beta
      -
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.1 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    postgresql-operator-dev4devs-comlightbend-console-operator
      @@ -2616,7 +2683,7 @@
      Partially complying with the recommendations
      -
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibmcloud-iam-operatorhawkbit-operator
      @@ -2646,7 +2713,13 @@
      Partially complying with the recommendations
      -
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    community-kubevirt-hyperconvergediot-simulator
      @@ -2669,34 +2742,14 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • 0.0.2
    • - -
    • 0.0.3
    • - -
    • 1.0.0
    • - -
    • 1.1.0
    • - -
    • 0.0.1
    • +
    • alpha
      -
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.1],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[1.0.0 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.0.0 1.1.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[stable 1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ember-csi-community-operatorhyperfoil-bundle
    • CRD
    • -
    • UNKNOWN
    • -
      -
    • beta
    • +
    • alpha
      -
    • ember-csi-community-operator.v0.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ember-csi-community-operator.v0.9.1 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    nexus-operator-m88ipystol
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2774,15 +2813,7 @@
    Partially complying with the recommendations
      -
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    lightbend-console-operatorapicast-community-operator
      @@ -2807,60 +2838,26 @@
      Partially complying with the recommendations
    • alpha
    • -
    -
    -
      - -
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    -
    datadog-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • +
    • stable
      -
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    podium-operator-bundlevault-helm
      @@ -2890,15 +2887,9 @@
      Partially complying with the recommendations
      -
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portworx-essentialsmicrocks
      @@ -2923,28 +2914,30 @@
      Partially complying with the recommendations
    • stable
    • +
    • alpha
    • +
      -
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    argocd-operator-helmditto-operator
      @@ -2974,17 +2967,11 @@
      Partially complying with the recommendations
      -
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    myvirtualdirectoryopenshift-ibm-quantum-operator
      @@ -3007,14 +2994,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operatorspark-gcp
      @@ -3044,15 +3031,7 @@
      Partially complying with the recommendations
      -
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    maistraoperatorneuvector-community-operator
      @@ -3075,74 +3054,34 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • 1.0
    • +
    • beta
      -
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[stable 1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    planetscale -
      - -
    • CRD
    • - -
    -
    -
      - -
    • beta
    • - -
    -
    -
      +
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    kubefednode-problem-detector
      @@ -3172,7 +3111,7 @@
      Partially complying with the recommendations
      -
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    tidb-operatorpercona-xtradb-cluster-operator
      @@ -3202,13 +3141,11 @@
      Partially complying with the recommendations
      -
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -3240,7 +3177,7 @@
    Fully complying with the recommendations
    - + @@ -3261,26 +3198,16 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - - - - - - - - - + + - - + + - @@ -3794,12 +3673,10 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + - + - + - + - + @@ -4423,42 +4128,58 @@
    Fully complying with the recommendations
    - + - + - + - + @@ -4551,22 +4294,24 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + + + + + + + + + - + - + - + @@ -5011,14 +4850,24 @@
    Fully complying with the recommendations
    - + - + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + + + + + + + + + - - - - - - - - - - - - - - - - - + - + - + - + - - - - - - - - - + - + - + - + - + - + @@ -5855,28 +6022,30 @@
    Fully complying with the recommendations
    - + - - - - - - - - - + - + - + - + @@ -6079,15 +6252,7 @@
    Fully complying with the recommendations
    @@ -6172,236 +6337,54 @@
    Fully complying with the recommendations
    - - - - - - - - - + - - - - - - - - - - - - - - - - - + diff --git a/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html b/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html index 541ebc1b..ae0cbd6f 100644 --- a/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html +++ b/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html @@ -102,66 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    mta-operatorpcc-operator
      @@ -3249,7 +3186,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • pcc-operator.v0.0.1 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pcc-operator.v0.1.0 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    istio-workspace-operatorsosreport-operator
      @@ -3301,88 +3228,84 @@
      Fully complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    syndesiscluster-manager
      +
    • CRD
    • +
      -
    • 1.12.x
    • +
    • stable
      +
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    community-windows-machine-config-operatorazure-service-operator
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
      +
    • azure-service-operator.v0.37.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • community-windows-machine-config-operator.v0.0.1 - (label==v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • community-windows-machine-config-operator.v0.1.0 - (label==v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • azure-service-operator.v1.0.24492 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • community-windows-machine-config-operator.v1.0.0 - (label==v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    namespace-configuration-operatoregressip-ipam-operator
      @@ -3400,55 +3323,45 @@
      Fully complying with the recommendations
      -
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sap-commerce-operatorspecial-resource-operator
      @@ -3469,18 +3382,16 @@
      Fully complying with the recommendations
      -
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    keepalived-operatoryaks
      @@ -3498,52 +3409,32 @@
      Fully complying with the recommendations
      -
    • keepalived-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keepalived-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keepalived-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • keepalived-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v1.3.4 - (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)
    • -
    • keepalived-operator.v1.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    special-resource-operatorkiali
      +
    • CRD
    • +
    @@ -3551,148 +3442,132 @@
    Fully complying with the recommendations
  • alpha
  • +
  • stable
  • +
      -
    -
    -
      +
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    resource-locker-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    postgresqlvolume-expander-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • stable
    • - -
    • v5
    • +
    • alpha
      -
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jaegerkogito-operator
      @@ -3703,53 +3578,57 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • 1.x
    • + +
    • alpha
      -
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    volume-expander-operatorsigstore-helm-operator
      -
    • ClusterRole
    • -
    @@ -3812,114 +3689,122 @@
    Fully complying with the recommendations
      -
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apimatic-kubernetes-operatorpostgresql
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
    • + +
    • v5
      +
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    redis-operatormta-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • preview
    • +
    • alpha
      -
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-operator.v0.2.0 - (label=,max="4.8",channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • redis-operator.v0.3.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-operator.v0.4.0 - (label=,max=not set,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-operator.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-operator.v0.6.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    buildv2-operatorproactive-node-scaling-operator
      -
    • CRD
    • -
    @@ -3932,23 +3817,45 @@
    Fully complying with the recommendations
      -
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    strimzi-kafka-operatorprometheus
      @@ -3959,79 +3866,41 @@
      Fully complying with the recommendations
      -
    • strimzi-0.23.x
    • - -
    • strimzi-0.24.x
    • - -
    • strimzi-0.19.x
    • - -
    • strimzi-0.20.x
    • - -
    • strimzi-0.21.x
    • - -
    • strimzi-0.25.x
    • - -
    • stable
    • - -
    • strimzi-0.22.x
    • +
    • beta
      -
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-scale-csi-operatoruniversal-crossplane
      -
    • CRD
    • -
    @@ -4044,34 +3913,32 @@
    Fully complying with the recommendations
      -
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    yaksreportportal-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -4084,27 +3951,25 @@
    Fully complying with the recommendations
      -
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • reportportal-operator.v0.0.7 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eclipse-cheapicurio-registry
      @@ -4115,190 +3980,34 @@
      Fully complying with the recommendations
      -
    • stable-all-namespaces
    • +
    • alpha
    • -
    • stable
    • +
    • 2.x
      -
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • 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.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    sigstore-helm-operatornode-healthcheck-operator
      @@ -4319,19 +4028,23 @@
      Fully complying with the recommendations
      -
    • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    kedatackle-operator
      -
    • CRD
    • -
    @@ -4339,36 +4052,34 @@
    Fully complying with the recommendations
  • alpha
  • +
  • stable
  • +
      -
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keda.v1.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tackle-operator.v0.0.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tackle-operator.v0.0.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tackle-operator.v0.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tackle-operator.v0.0.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tackle-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-atlas-kubernetesalvearie-imaging-ingestion
      @@ -4377,8 +4088,6 @@
      Fully complying with the recommendations
      -
    • beta
    • -
    • alpha
    @@ -4391,18 +4100,14 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    fluxcert-utils-operator
      @@ -4411,7 +4116,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • flux.v0.13.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.15.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.16.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.16.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.17.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    koku-metrics-operatorvictoriametrics-operator
      +
    • CRD
    • +
      -
    • alpha
    • -
    • beta
    @@ -4466,69 +4187,89 @@
    Fully complying with the recommendations
      -
    -
    -
      +
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.15.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.16.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.17.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.17.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.8.0 - (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:YES,defaultChannel:YES, deprecated:NO)
    universal-crossplanehazelcast-operator
      +
    • CRD
    • +
      -
    • stable
    • +
    • alpha
      +
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    tackle-operatoretcd
      @@ -4537,9 +4278,11 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • clusterwide-alpha
    • -
    • stable
    • +
    • singlenamespace-alpha
    • + +
    • alpha
      -
    • tackle-operator.v0.0.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • tackle-operator.v0.0.2 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tackle-operator.v0.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tackle-operator.v0.0.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • tackle-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    ripsawpoison-pill-operator
      @@ -4587,14 +4332,32 @@
      Fully complying with the recommendations
      -
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    dell-csi-operatorcamel-k
      @@ -4607,35 +4370,77 @@
      Fully complying with the recommendations
    • stable
    • +
    • stable-1.3
    • + +
    • stable-1.4
    • + +
    • stable-1.5
    • +
      -
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    devopsinaboxglobal-load-balancer-operator
      +
    • CRD
    • +
    @@ -4648,63 +4453,73 @@
    Fully complying with the recommendations
      +
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdbpulp-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • stable-3.x
    • - -
    • stable-5.x
    • +
    • alpha
      -
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cockroachdb.v3.0.7 - (label=,max="4.8",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)
    • +
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kialiawss3-operator-registry
      @@ -4717,124 +4532,136 @@
      Fully complying with the recommendations
    • alpha
    • -
    • stable
    • +
    • original
      -
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    pcc-operatorhive-operator
      +
    • CRD
    • +
      -
    • stable
    • +
    • alpha
    • -
    +
  • ocm-2.4
  • + +
  • ocm-2.2
  • + +
  • ocm-2.3
  • + +
  • ocm-2.1
  • + +
      +
    • hive-operator.v1.0.10 - (label=,max="4.8",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="4.8",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="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.6 - (label=,max="4.8",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="4.8",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="4.8",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="4.8",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="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • pcc-operator.v0.0.1 - (label=v4.5-v4.7,max="4.7",channels=[stable],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)
    • -
    • pcc-operator.v0.1.0 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:YES,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:YES,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:YES,defaultChannel:NO, deprecated:NO)
    etcdkeda
      +
    • CRD
    • +
      -
    • clusterwide-alpha
    • - -
    • singlenamespace-alpha
    • -
    • alpha
    @@ -4842,121 +4669,121 @@
    Fully complying with the recommendations
      +
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keda.v1.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    victoriametrics-operatorcommunity-windows-machine-config-operator
      -
    • CRD
    • -
      -
    • beta
    • +
    • alpha
      -
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",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="4.8",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)
    • +
    • community-windows-machine-config-operator.v0.0.1 - (label==v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • victoriametrics-operator.v0.17.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • community-windows-machine-config-operator.v0.1.0 - (label==v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • victoriametrics-operator.v0.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • community-windows-machine-config-operator.v1.0.0 - (label==v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • victoriametrics-operator.v0.8.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    odoo-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • victoriametrics-operator.v0.18.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • victoriametrics-operator.v0.18.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-managerdevopsinabox
      -
    • CRD
    • -
      -
    • stable
    • +
    • alpha
      -
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    awss3-operator-registrymust-gather-operator
      @@ -4969,28 +4796,40 @@
      Fully complying with the recommendations
    • alpha
    • -
    • original
    • -
      -
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    alvearie-imaging-ingestioncert-manager
      @@ -4999,7 +4838,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    keycloak-operatorlib-bucket-provisioner
      @@ -5036,47 +4885,21 @@
      Fully complying with the recommendations
      -
    • 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.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)
    • +
    • lib-bucket-provisioner.v1.0.0 - (label=,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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hive-operatorstrimzi-kafka-operator
      @@ -5087,172 +4910,354 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • strimzi-0.23.x
    • -
    • ocm-2.4
    • +
    • strimzi-0.24.x
    • -
    • ocm-2.2
    • +
    • strimzi-0.19.x
    • -
    • ocm-2.3
    • +
    • strimzi-0.20.x
    • -
    • ocm-2.1
    • +
    • strimzi-0.21.x
    • + +
    • strimzi-0.25.x
    • + +
    • stable
    • + +
    • strimzi-0.22.x
      -
    • hive-operator.v1.0.10 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.11 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.12 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.6 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.7 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.8 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.9 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3 ocm-2.1],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.0 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    assisted-service-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    • ocm-2.3
    • + +
    +
      -
    • 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)
    • +
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[ocm-2.3 alpha],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)
    • +
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[ocm-2.3 alpha],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)
    • +
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[ocm-2.3 alpha],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)
    • +
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.15 - (label=,max=not set,channels=[alpha ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],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)
    • +
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],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)
    • +
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,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)
    • +
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • hive-operator.v1.1.9 - (label=,max=not set,channels=[alpha ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    ripsaw +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    camel-kmachine-deletion-operator
      -
    • CRD
    • +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mongodb-atlas-kubernetes +
      -
    • stable
    • +
    • beta
    • -
    • stable-1.3
    • +
    • alpha
    • -
    • stable-1.4
    • +
    +
    +
      + +
    +
    +
      + +
    • 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)
    • + +
    +
    istio-workspace-operator +
      + +
    +
    +
      -
    • stable-1.5
    • +
    • alpha
      -
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    flux +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.13.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.15.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    cluster-impairment-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
      -
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    +
    syndesis +
      + +
    +
    +
      + +
    • 1.12.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    prometheusnamespace-configuration-operator
      @@ -5263,41 +5268,67 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    pulp-operatorbuildv2-operator
      +
    • CRD
    • +
    @@ -5310,19 +5341,23 @@
    Fully complying with the recommendations
      +
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cert-utils-operatorrhoas-operator
      @@ -5331,146 +5366,228 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    eclipse-che +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-all-namespaces
    • + +
    • stable
      -
    -
    -
      +
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    lib-bucket-provisioner -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    proactive-node-scaling-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.30.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.30.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.30.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.31.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.31.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.31.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.32.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.32.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.32.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.33.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.34.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.34.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    snapschedulerklusterlet
      @@ -5483,61 +5600,73 @@
      Fully complying with the recommendations
    • stable
    • -
    • candidate
    • -
      -
    • snapscheduler.v1.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    odoo-operatordell-csi-operator
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
      +
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cert-managerkubernetes-imagepuller-operator
      +
    • CRD
    • +
    @@ -5550,32 +5679,40 @@
    Fully complying with the recommendations
      +
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • 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)
    • +
    • kubernetes-imagepuller-operator.v0.0.5 - (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)
    • +
    • kubernetes-imagepuller-operator.v0.0.6 - (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)
    • +
    • kubernetes-imagepuller-operator.v0.0.7 - (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)
    • +
    • kubernetes-imagepuller-operator.v0.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager.v1.5.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-imagepuller-operator.v0.0.9 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sosreport-operatorresource-locker-operator
      +
    • CRD
    • +
    @@ -5588,47 +5725,51 @@
    Fully complying with the recommendations
      -
    -
    -
      +
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    varnish-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    global-load-balancer-operatoropenshift-qiskit-operator
      @@ -5646,80 +5787,68 @@
      Fully complying with the recommendations
      -
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    machine-deletion-operatorredis-operator
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
    • + +
    • preview
      +
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.2.0 - (label=,max="4.8",channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redis-operator.v0.3.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.4.0 - (label=,max=not set,channels=[stable preview],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:YES,defaultChannel:YES, deprecated:NO)
    reportportal-operatorkeepalived-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -5732,25 +5861,49 @@
    Fully complying with the recommendations
      -
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    klusterletjaeger
      @@ -5768,71 +5921,85 @@
      Fully complying with the recommendations
      -
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubernetes-imagepuller-operatorsap-commerce-operator
      -
    • CRD
    • -
      -
    • stable
    • +
    • alpha
      -
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",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)
    • +
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubernetes-imagepuller-operator.v0.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubernetes-imagepuller-operator.v0.0.9 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    assisted-service-operatorkoku-metrics-operator
      @@ -5843,7 +6010,7 @@
      Fully complying with the recommendations
    • alpha
    • -
    • ocm-2.3
    • +
    • beta
      -
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    must-gather-operatorkeycloak-operator
      @@ -5894,74 +6063,54 @@
      Fully complying with the recommendations
      -
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • must-gather-operator.v0.1.1 - (label=,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)
    • -
    • must-gather-operator.v1.0.0 - (label=,max=not set,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)
    • -
    • must-gather-operator.v1.0.1 - (label=,max=not set,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)
    • -
    • must-gather-operator.v1.0.2 - (label=,max=not set,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)
    • -
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,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)
    • -
    • must-gather-operator.v1.0.4 - (label=,max=not set,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)
    • -
    • must-gather-operator.v1.0.5 - (label=,max=not set,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)
    • -
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,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)
    • -
    -
    node-healthcheck-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • keycloak-operator.v9.0.2 - (label=v4.5-v4.8,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • node-healthcheck-operator.v0.0.1 - (label=,max=not set,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)
    • -
    • node-healthcheck-operator.v0.0.2 - (label=,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)
    • -
    • node-healthcheck-operator.v0.1.0 - (label=,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)
    • -
    • node-healthcheck-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apicurio-registrygroup-sync-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -5969,32 +6118,46 @@
    Fully complying with the recommendations
  • alpha
  • -
  • 2.x
  • -
      -
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    azure-service-operatorsnapscheduler
      @@ -6007,58 +6170,68 @@
      Fully complying with the recommendations
    • stable
    • +
    • candidate
    • +
      -
    • azure-service-operator.v0.37.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snapscheduler.v1.1.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-impairment-operatoribm-spectrum-scale-csi-operator
      +
    • CRD
    • +
      -
    • beta
    • +
    • stable
      +
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    rhoas-operatorapimatic-kubernetes-operator
      @@ -6067,7 +6240,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    egressip-ipam-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    group-sync-operatorcockroachdb
    • CRD
    • -
    • ClusterRole
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    kogito-operator -
      - -
    • CRD
    • - -
    -
    -
      +
    • stable
    • -
    • 1.x
    • +
    • stable-3.x
    • -
    • alpha
    • +
    • stable-5.x
      -
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v3.0.7 - (label=,max="4.8",channels=[stable-3.x],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v5.0.3 - (label=,max=not set,channels=[stable-5.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v5.0.4 - (label=,max=not set,channels=[stable-5.x],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-qiskit-operatorvarnish-operator
      -
    • CRD
    • -
    @@ -6414,14 +6397,12 @@
    Fully complying with the recommendations
      -
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    - - - - - - - - - - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    special-resource-operator -
      - -
    • UNKNOWN
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -176,12 +123,14 @@
    Partially complying with the recommendations
    - + @@ -226,33 +169,27 @@
    Partially complying with the recommendations
    - + @@ -264,7 +201,7 @@
    Partially complying with the recommendations
    - + @@ -302,7 +233,7 @@
    Partially complying with the recommendations
    - + @@ -334,7 +275,7 @@
    Partially complying with the recommendations
    - + @@ -372,7 +319,7 @@
    Partially complying with the recommendations
    - + @@ -422,7 +349,7 @@
    Partially complying with the recommendations
    - + @@ -462,7 +395,7 @@
    Partially complying with the recommendations
    - + @@ -496,7 +443,7 @@
    Partially complying with the recommendations
    - + @@ -530,7 +481,7 @@
    Partially complying with the recommendations
    - + @@ -574,7 +519,7 @@
    Partially complying with the recommendations
    - + @@ -610,7 +549,7 @@
    Partially complying with the recommendations
    - + @@ -648,7 +583,7 @@
    Partially complying with the recommendations
    - + @@ -678,7 +615,7 @@
    Partially complying with the recommendations
    - + @@ -712,7 +645,7 @@
    Partially complying with the recommendations
    - + @@ -770,7 +681,7 @@
    Partially complying with the recommendations
    - + @@ -814,7 +711,7 @@
    Partially complying with the recommendations
    - + @@ -856,7 +741,7 @@
    Partially complying with the recommendations
    - + @@ -886,7 +791,7 @@
    Partially complying with the recommendations
    - + @@ -934,7 +831,7 @@
    Partially complying with the recommendations
    - + @@ -984,7 +861,7 @@
    Partially complying with the recommendations
    - + @@ -1024,7 +891,7 @@
    Partially complying with the recommendations
    - + @@ -1100,7 +975,7 @@
    Partially complying with the recommendations
    - + @@ -1130,7 +1005,7 @@
    Partially complying with the recommendations
    - + @@ -1178,29 +1049,33 @@
    Partially complying with the recommendations
    - + @@ -1212,41 +1087,53 @@
    Partially complying with the recommendations
    - + @@ -1258,7 +1145,7 @@
    Partially complying with the recommendations
    - + @@ -1288,7 +1175,7 @@
    Partially complying with the recommendations
    - + @@ -1330,7 +1205,7 @@
    Partially complying with the recommendations
    - + @@ -1364,7 +1237,7 @@
    Partially complying with the recommendations
    - + @@ -1396,7 +1269,7 @@
    Partially complying with the recommendations
    - + @@ -1426,7 +1309,7 @@
    Partially complying with the recommendations
    - + - + @@ -1500,7 +1377,7 @@
    Partially complying with the recommendations
    - + @@ -1530,7 +1415,7 @@
    Partially complying with the recommendations
    - + @@ -1560,7 +1449,7 @@
    Partially complying with the recommendations
    - + @@ -1590,7 +1479,7 @@
    Partially complying with the recommendations
    - + @@ -1628,7 +1523,7 @@
    Partially complying with the recommendations
    - + @@ -1708,7 +1559,7 @@
    Partially complying with the recommendations
    - + @@ -1750,7 +1609,7 @@
    Partially complying with the recommendations
    - + @@ -1780,7 +1643,7 @@
    Partially complying with the recommendations
    - + @@ -1810,7 +1673,7 @@
    Partially complying with the recommendations
    - + @@ -1844,7 +1705,7 @@
    Partially complying with the recommendations
    - + @@ -1892,7 +1747,7 @@
    Partially complying with the recommendations
    - + @@ -1924,7 +1797,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -1978,12 +1873,14 @@
    Partially complying with the recommendations
    - + @@ -2016,7 +1913,7 @@
    Partially complying with the recommendations
    - + @@ -2062,7 +1951,7 @@
    Partially complying with the recommendations
    - + @@ -2096,7 +1981,7 @@
    Partially complying with the recommendations
    - + @@ -2126,7 +2021,7 @@
    Partially complying with the recommendations
    - + @@ -2156,7 +2069,7 @@
    Partially complying with the recommendations
    - + @@ -2186,7 +2099,7 @@
    Partially complying with the recommendations
    - + @@ -2218,7 +2129,7 @@
    Partially complying with the recommendations
    - + @@ -2270,7 +2171,7 @@
    Partially complying with the recommendations
    - + @@ -2300,7 +2219,7 @@
    Partially complying with the recommendations
    - + @@ -2330,7 +2257,7 @@
    Partially complying with the recommendations
    - + @@ -2360,7 +2291,7 @@
    Partially complying with the recommendations
    - + @@ -2404,7 +2349,7 @@
    Partially complying with the recommendations
    - + @@ -2444,7 +2399,7 @@
    Partially complying with the recommendations
    - + @@ -2478,7 +2429,7 @@
    Partially complying with the recommendations
    - + @@ -2534,7 +2459,7 @@
    Partially complying with the recommendations
    - + @@ -2584,14 +2515,12 @@
    Partially complying with the recommendations
    - + @@ -2624,7 +2549,7 @@
    Partially complying with the recommendations
    - + @@ -2654,7 +2583,7 @@
    Partially complying with the recommendations
    - + @@ -2684,7 +2615,7 @@
    Partially complying with the recommendations
    - + @@ -2722,7 +2651,7 @@
    Partially complying with the recommendations
    - + @@ -2754,7 +2685,7 @@
    Partially complying with the recommendations
    - + @@ -2786,7 +2737,7 @@
    Partially complying with the recommendations
    - + @@ -2834,7 +2785,7 @@
    Partially complying with the recommendations
    - + @@ -2864,7 +2823,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - - - - - - - - - @@ -2988,7 +2903,7 @@
    Partially complying with the recommendations
    - + @@ -3018,7 +2933,7 @@
    Partially complying with the recommendations
    - + @@ -3056,7 +2963,7 @@
    Partially complying with the recommendations
    - + @@ -3090,7 +3001,7 @@
    Partially complying with the recommendations
    - + @@ -3122,7 +3031,7 @@
    Partially complying with the recommendations
    - + @@ -3152,7 +3061,7 @@
    Partially complying with the recommendations
    - + @@ -3182,7 +3091,7 @@
    Partially complying with the recommendations
    - + @@ -3223,7 +3126,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    neuvector-community-operatorember-csi-community-operator
    • CRD
    • +
    • UNKNOWN
    • +
    @@ -194,27 +143,21 @@
    Partially complying with the recommendations
      -
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    integrity-shield-operatorhedvig-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-operatorvault-helm
      @@ -275,22 +212,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hedvig-operatoropenebs
      @@ -313,16 +244,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operatorapicast-community-operator
      @@ -345,6 +286,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -352,15 +295,19 @@
    Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    aquamyvirtualdirectory
      @@ -383,34 +330,14 @@
      Partially complying with the recommendations
      -
    • 6.2.0
    • - -
    • 5.3.0
    • - -
    • alpha
    • - -
    • 6.0.0
    • +
    • beta
      -
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    argocd-operator-helm3scale-community-operator
      @@ -433,24 +360,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • threescale-2.10
    • + +
    • threescale-2.9
    • + +
    • threescale-2.6
    • + +
    • threescale-2.7
    • + +
    • threescale-2.8
      -
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.6 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    ditto-operatormicrocks
      @@ -473,6 +406,8 @@
      Partially complying with the recommendations
      +
    • stable
    • +
    • alpha
    @@ -480,11 +415,23 @@
    Partially complying with the recommendations
      -
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    wso2am-operatoropsmx-spinnaker-operator
      @@ -507,18 +454,22 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apicast-community-operatoraws-efs-operator
      @@ -541,8 +492,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -550,19 +499,15 @@
    Partially complying with the recommendations
      -
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hawkbit-operatorapicurito
      @@ -592,13 +537,7 @@
      Partially complying with the recommendations
      -
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aws-efs-operatoratlasmap-operator
      @@ -621,22 +560,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    postgresql-operator-dev4devs-complanetscale
      @@ -659,14 +594,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    hawtio-operatormattermost-operator
      @@ -696,11 +633,7 @@
      Partially complying with the recommendations
      -
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    maistraoperatorradanalytics-spark
      @@ -723,42 +656,20 @@
      Partially complying with the recommendations
      -
    • 1.0
    • - -
    • stable
    • +
    • alpha
      -
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    api-operatorpostgresql-operator-dev4devs-com
      @@ -781,28 +692,14 @@
      Partially complying with the recommendations
      -
    • 2.x-stable
    • - -
    • stable
    • +
    • alpha
      -
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openebsgitlab-runner-operator
      @@ -825,26 +722,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    horreum-operatorfederatorai
      @@ -867,14 +752,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    opendatahub-operatorcrane-operator
      @@ -897,32 +802,24 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • release-v1.4
    • -
    • rolling
    • +
    • release-v1.5
      -
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[beta stable rolling],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operatorhazelcast-jet-operator
      @@ -945,34 +842,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    teiidcomposable-operator
      @@ -995,24 +872,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portworx-essentialsgrafana-operator
      @@ -1035,30 +902,38 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • original
      -
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    openshift-ibm-quantum-operatornode-problem-detector
      @@ -1118,7 +993,7 @@
      Partially complying with the recommendations
      -
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    argocd-operatorapi-operator
      @@ -1141,32 +1016,28 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 2.x-stable
    • + +
    • stable
      -
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operatorintegrity-shield-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ember-csi-community-operatormaistraoperator
    • CRD
    • -
    • UNKNOWN
    • -
      -
    • beta
    • +
    • 1.0
    • + +
    • stable
      -
    • ember-csi-community-operator.v0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-operatoreunomia
      @@ -1276,7 +1163,7 @@
      Partially complying with the recommendations
      -
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubeturbokubefed
      @@ -1301,24 +1188,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    oadp-operatorskydive-operator
      @@ -1348,11 +1223,9 @@
      Partially complying with the recommendations
      -
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    skydive-operatorsealed-secrets-operator-helm
      @@ -1382,9 +1255,9 @@
      Partially complying with the recommendations
      -
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibmcloud-iam-operatorteiid
      @@ -1407,14 +1280,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-operatoroadp-operator
      @@ -1444,33 +1327,23 @@
      Partially complying with the recommendations
      -
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    eunomiapercona-xtradb-cluster-operator
      @@ -1481,14 +1354,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ham-deploypodium-operator-bundle
      @@ -1518,7 +1395,15 @@
      Partially complying with the recommendations
      -
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    spark-gcpditto-operator
      @@ -1548,7 +1433,11 @@
      Partially complying with the recommendations
      -
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    node-problem-detectoribmcloud-iam-operator
      @@ -1578,7 +1467,7 @@
      Partially complying with the recommendations
      -
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    podium-operator-bundleenmasse
      @@ -1608,15 +1497,21 @@
      Partially complying with the recommendations
      -
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    infinispantidb-operator
      @@ -1639,64 +1534,20 @@
      Partially complying with the recommendations
      -
    • 2.1.x
    • - -
    • dev-preview
    • -
    • stable
    • -
    • 1.1.x
    • - -
    • 2.0.x
    • -
      -
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    t8caqua
      @@ -1719,26 +1570,34 @@
      Partially complying with the recommendations
      +
    • 6.2.0
    • + +
    • 5.3.0
    • +
    • alpha
    • -
    • stable
    • +
    • 6.0.0
      -
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    gitlab-runner-operatorhyperfoil-bundle
      @@ -1761,14 +1620,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    pystolsplunk
      @@ -1798,7 +1661,7 @@
      Partially complying with the recommendations
      -
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    atlasmap-operatorprometheus-exporter-operator
      @@ -1828,11 +1691,9 @@
      Partially complying with the recommendations
      -
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operatort8c
      @@ -1857,30 +1718,24 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sealed-secrets-operator-helmneuvector-community-operator
      @@ -1903,16 +1758,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    grafana-operatornsm-operator-registry
      @@ -1937,36 +1810,58 @@
      Partially complying with the recommendations
    • alpha
    • -
    • original
    • -
      -
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    portworx-essentials +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operatornexus-operator-m88i
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1996,15 +1893,15 @@
    Partially complying with the recommendations
      -
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    3scale-community-operatorspinnaker-operator
      @@ -2027,30 +1924,22 @@
      Partially complying with the recommendations
      -
    • threescale-2.10
    • - -
    • threescale-2.9
    • - -
    • threescale-2.6
    • - -
    • threescale-2.7
    • - -
    • threescale-2.8
    • +
    • alpha
      -
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.6 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    starter-kit-operatorham-deploy
      @@ -2080,11 +1969,7 @@
      Partially complying with the recommendations
      -
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apicuritoargocd-operator-helm
      @@ -2114,7 +1999,17 @@
      Partially complying with the recommendations
      -
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nsm-operator-registrydatadog-operator
      @@ -2144,7 +2039,25 @@
      Partially complying with the recommendations
      -
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    lightbend-console-operatoropenshift-ibm-quantum-operator
      @@ -2174,7 +2087,7 @@
      Partially complying with the recommendations
      -
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    prometheus-exporter-operatorhorreum-operator
      @@ -2204,9 +2117,7 @@
      Partially complying with the recommendations
      -
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    community-kubevirt-hyperconvergedkubeturbo
      @@ -2229,36 +2140,26 @@
      Partially complying with the recommendations
      -
    • 0.0.1
    • - -
    • 0.0.2
    • +
    • alpha
    • stable
    • -
    • 1.1.0
    • - -
    • 1.0.0
    • - -
    • 0.0.3
    • -
      -
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.1 0.0.2],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[0.0.3 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.1.0 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[1.1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    mcad-operatoropendatahub-operator
      @@ -2281,14 +2182,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • stable
    • + +
    • rolling
      -
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[beta stable rolling],head:YES,defaultChannel:YES, deprecated:NO)
    composable-operatorpercona-server-mongodb-operator
      @@ -2311,14 +2230,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubefedwso2am-operator
      @@ -2341,14 +2268,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    enmasseibmcloud-operator
      @@ -2371,28 +2302,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    crane-operatorseldon-operator
      @@ -2415,24 +2360,34 @@
      Partially complying with the recommendations
      -
    • release-v1.4
    • - -
    • release-v1.5
    • +
    • stable
      -
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    tf-operatorlightbend-console-operator
      @@ -2455,8 +2410,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -2464,9 +2417,7 @@
    Partially complying with the recommendations
      -
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operatorspark-gcp
      @@ -2489,40 +2440,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    federatoraisnyk-operator
      @@ -2552,27 +2477,33 @@
      Partially complying with the recommendations
      -
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nexus-operator-m88ihawtio-operator
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2604,15 +2533,11 @@
    Partially complying with the recommendations
      -
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    iot-simulatortf-operator
      @@ -2635,6 +2560,8 @@
      Partially complying with the recommendations
      +
    • stable
    • +
    • alpha
    @@ -2642,7 +2569,9 @@
    Partially complying with the recommendations
      -
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    mattermost-operatorevent-streams-topic
      @@ -2672,7 +2601,9 @@
      Partially complying with the recommendations
      -
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    opsmx-spinnaker-operatorhawkbit-operator
      @@ -2702,15 +2633,13 @@
      Partially complying with the recommendations
      -
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    vault-helmstarter-kit-operator
      @@ -2740,9 +2669,11 @@
      Partially complying with the recommendations
      -
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    event-streams-topiccommunity-kubevirt-hyperconverged
      @@ -2765,16 +2696,36 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 0.0.1
    • + +
    • 0.0.2
    • + +
    • stable
    • + +
    • 1.1.0
    • + +
    • 1.0.0
    • + +
    • 0.0.3
      -
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.1 0.0.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[0.0.3 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.1.0 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[1.1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    microcksargocd-operator
      @@ -2797,8 +2748,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -2806,23 +2755,25 @@
    Partially complying with the recommendations
      -
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    myvirtualdirectorytraefikee-operator
      @@ -2845,14 +2796,22 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    splunkinfinispan
      @@ -2875,108 +2834,64 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 2.1.x
    • -
    -
    -
      - -
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    -
    ibmcloud-operator -
      - -
    • CRD
    • - -
    -
    -
      +
    • dev-preview
    • stable
    • +
    • 1.1.x
    • + +
    • 2.0.x
    • +
      -
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    -
    radanalytics-spark -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    esindex-operatorenc-key-sync
      @@ -3006,7 +2921,7 @@
      Partially complying with the recommendations
      -
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    spinnaker-operatoresindex-operator
      @@ -3036,15 +2951,7 @@
      Partially complying with the recommendations
      -
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hyperfoil-bundleakka-cluster-operator
      @@ -3074,11 +2981,15 @@
      Partially complying with the recommendations
      -
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    planetscalemcad-operator
      @@ -3101,16 +3012,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jupyterlab-operatoriot-simulator
      @@ -3133,14 +3042,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    enc-key-syncpystol
      @@ -3170,7 +3079,7 @@
      Partially complying with the recommendations
      -
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    tidb-operatorjupyterlab-operator
      @@ -3200,13 +3109,7 @@
      Partially complying with the recommendations
      -
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -3266,7 +3169,7 @@
    Fully complying with the recommendations
    - + - + - + - + - + - - - - - - - - - + - + - + - + - - - - - - - - - - - - - - - - - + - + - + @@ -3753,22 +3852,26 @@
    Fully complying with the recommendations
    - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - - - - - - - - - + @@ -4225,18 +4522,28 @@
    Fully complying with the recommendations
    - + - + - + - - + - + - + @@ -4475,14 +4746,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + + - - + @@ -4949,37 +5014,17 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + @@ -5307,20 +5360,40 @@
    Fully complying with the recommendations
    - + - + @@ -5429,83 +5458,55 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + + + + + + + + + - + - + - + @@ -5975,48 +5896,14 @@
    Fully complying with the recommendations
    - + @@ -6037,24 +5924,14 @@
    Fully complying with the recommendations
    - + - + - + + - - + - + - + - + - + - + - + @@ -6435,89 +6426,77 @@
    Fully complying with the recommendations
    - + - + diff --git a/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html b/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html index 4b08ab6a..c621714f 100644 --- a/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html +++ b/testdata/reports/redhat_community_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html @@ -102,32 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    azure-service-operatoregressip-ipam-operator
      @@ -3277,30 +3180,52 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • azure-service-operator.v0.37.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • azure-service-operator.v1.0.24492 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    tackle-operatornode-healthcheck-operator
      @@ -3311,8 +3236,6 @@
      Fully complying with the recommendations
    • alpha
    • -
    • stable
    • -
    @@ -3323,69 +3246,63 @@
    Fully complying with the recommendations
      -
    • 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)
    • +
    • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tackle-operator.v0.0.3 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • node-healthcheck-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tackle-operator.v0.0.4 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • node-healthcheck-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tackle-operator.v1.0.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-healthcheck-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdbopentelemetry-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • - -
    • stable-5.x
    • - -
    • stable-3.x
    • +
    • alpha
      -
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cockroachdb.v3.0.7 - (label=,max="4.8",channels=[stable-3.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • opentelemetry-operator.v0.17.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • cockroachdb.v5.0.3 - (label=,max=not set,channels=[stable-5.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opentelemetry-operator.v0.21.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cockroachdb.v5.0.4 - (label=,max=not set,channels=[stable-5.x],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    varnish-operatorbuildv2-operator
      +
    • CRD
    • +
    @@ -3398,24 +3315,26 @@
    Fully complying with the recommendations
      +
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    lib-bucket-provisionerkoku-metrics-operator
      -
    • CRD
    • -
    @@ -3423,54 +3342,42 @@
    Fully complying with the recommendations
  • alpha
  • +
  • beta
  • +
      -
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    devopsinabox -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    postgresqlresource-locker-operator
      @@ -3481,84 +3388,136 @@
      Fully complying with the recommendations
      -
    • stable
    • - -
    • v5
    • +
    • alpha
      -
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apimatic-kubernetes-operatormulticluster-operators-subscription
      +
    • CRD
    • +
      +
    • release-2.0
    • + +
    • release-2.1
    • + +
    • release-2.2
    • + +
    • release-2.3
    • +
    • alpha
    • +
    • release-2.4
    • +
      +
    • multicluster-operators-subscription.v0.1.0 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.1 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.2 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.3 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.4 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.5 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.6 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.7 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.8 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.1 - (label=,max="4.8",channels=[release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.2 - (label=,max="4.8",channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.3 - (label=,max="4.8",channels=[release-2.1 release-2.2 release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.4 - (label=,max="4.8",channels=[release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.5 - (label=,max="4.8",channels=[release-2.2 release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.6 - (label=,max="4.8",channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • multicluster-operators-subscription.v0.2.7 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.9 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.0 - (label=,max=not set,channels=[release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.1 - (label=,max=not set,channels=[release-2.4],head:YES,defaultChannel:NO, deprecated:NO)
    node-healthcheck-operatoristio-workspace-operator
      @@ -3579,20 +3538,28 @@
      Fully complying with the recommendations
      -
    • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.0.10 - (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)
    • +
    • istio-workspace-operator.v0.0.6 - (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)
    • +
    • istio-workspace-operator.v0.0.7 - (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:YES,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:YES,defaultChannel:YES, deprecated:NO)
    prometheusstrimzi-kafka-operator
      @@ -3603,104 +3570,74 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • strimzi-0.22.x
    • + +
    • strimzi-0.23.x
    • + +
    • strimzi-0.24.x
    • + +
    • strimzi-0.25.x
    • + +
    • stable
    • + +
    • strimzi-0.19.x
    • + +
    • strimzi-0.20.x
    • + +
    • strimzi-0.21.x
      -
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    yaks -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    syndesis -
      - -
    -
    -
      - -
    • 1.12.x
    • - -
    -
      -
    -
    -
      +
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-qiskit-operatoreclipse-che
      @@ -3711,28 +3648,190 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • stable-all-namespaces
      -
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • 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.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    rhoas-operatormta-operator
      @@ -3741,7 +3840,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    assisted-service-operatoruniversal-crossplane
      @@ -3777,42 +3880,128 @@
      Fully complying with the recommendations
      -
    • ocm-2.3
    • +
    • stable
    • -
    • alpha
    • +
    +
    +
      + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    snapscheduler +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • candidate
      +
    • snapscheduler.v1.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    cluster-impairment-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      -
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    lib-bucket-provisioner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      + +
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kedakeepalived-operator
      @@ -3830,31 +4019,49 @@
      Fully complying with the recommendations
      -
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v1.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v1.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)
    • +
    • keepalived-operator.v1.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)
    • +
    • keepalived-operator.v1.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)
    • +
    • keepalived-operator.v1.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • keepalived-operator.v1.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-block-csi-operator-communitykubernetes-imagepuller-operator
      @@ -3867,34 +4074,104 @@
      Fully complying with the recommendations
    • stable
    • -
    • maintenance-1.5
    • +
    +
    +
      + +
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    klusterlet +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
      -
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.5.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,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:NO, deprecated:NO)
    • +
    +
    +
      + +
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    devopsinabox +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
      -
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      + +
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    egressip-ipam-operatorhive-operator
      @@ -3907,50 +4184,92 @@
      Fully complying with the recommendations
    • alpha
    • +
    • ocm-2.4
    • + +
    • ocm-2.3
    • + +
    • ocm-2.1
    • + +
    • ocm-2.2
    • +
      -
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.0.10 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.0.11 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.0.12 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.6 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.7 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.8 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.9 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.0 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],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)
    • -
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],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)
    • -
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],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)
    • -
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],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)
    • -
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],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)
    • -
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.15 - (label=,max=not set,channels=[alpha ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],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)
    • -
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:NO, deprecated:NO)
    odoo-operatorsosreport-operator
      @@ -3969,18 +4288,16 @@
      Fully complying with the recommendations
    -
      - -
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
        -
      • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      • +
      • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    victoriametrics-operatoryaks
      @@ -3991,52 +4308,34 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",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="4.8",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)
    • +
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • victoriametrics-operator.v0.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • victoriametrics-operator.v0.8.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • victoriametrics-operator.v0.18.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • victoriametrics-operator.v0.18.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    etcdpoison-pill-operator
      @@ -4045,10 +4344,6 @@
      Fully complying with the recommendations
      -
    • singlenamespace-alpha
    • - -
    • clusterwide-alpha
    • -
    • alpha
    @@ -4061,24 +4356,32 @@
    Fully complying with the recommendations
      -
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • poison-pill.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • poison-pill.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • poison-pill.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • poison-pill.v0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • poison-pill.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, 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)
    cluster-managerkeycloak-operator
      @@ -4089,32 +4392,54 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],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)
    • -
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],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.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)
      -
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    keepalived-operatorpostgresql
      @@ -4125,84 +4450,56 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • v5
      -
    • keepalived-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • keepalived-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    -
    -
      +
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keepalived-operator.v1.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    -
    alvearie-imaging-ingestion -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-atlas-kubernetesassisted-service-operator
      @@ -4211,9 +4508,9 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • ocm-2.3
    • -
    • beta
    • +
    • alpha
      -
    • mongodb-atlas-kubernetes.v0.4.0 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mongodb-atlas-kubernetes.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    multicluster-operators-subscriptionhazelcast-operator
      @@ -4247,115 +4554,73 @@
      Fully complying with the recommendations
      -
    • release-2.0
    • - -
    • release-2.1
    • - -
    • release-2.2
    • - -
    • release-2.3
    • -
    • alpha
    • -
    • release-2.4
    • -
      -
    • multicluster-operators-subscription.v0.1.0 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.1 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.2 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.3 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.4 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.5 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.6 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.7 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.8 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.1 - (label=,max="4.8",channels=[release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.2 - (label=,max="4.8",channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.3 - (label=,max="4.8",channels=[release-2.1 release-2.2 release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.4 - (label=,max="4.8",channels=[release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.5 - (label=,max="4.8",channels=[release-2.2 release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.6 - (label=,max="4.8",channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • multicluster-operators-subscription.v0.2.7 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.9 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.3.0 - (label=,max=not set,channels=[release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.3.1 - (label=,max=not set,channels=[release-2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    klusterletodoo-operator
      -
    • CRD
    • -
      -
    • stable
    • +
    • alpha
      -
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apicurio-registryalvearie-imaging-ingestion
      -
    • CRD
    • -
    @@ -4363,72 +4628,74 @@
    Fully complying with the recommendations
  • alpha
  • -
  • 2.x
  • -
    -
      - -
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    +
      -
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    konveyor-forklift-operatordell-csi-operator
      +
    • CRD
    • +
      -
    • release-v2.0
    • +
    • stable
      +
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • konveyor-forklift-operator.v2.0.0 - (label==v4.7,max=not set,channels=[release-v2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    opentelemetry-operatoretcd
      -
    • CRD
    • - -
    • ClusterRole
    • -
      +
    • singlenamespace-alpha
    • + +
    • clusterwide-alpha
    • +
    • alpha
    @@ -4436,25 +4703,29 @@
    Fully complying with the recommendations
      -
    • opentelemetry-operator.v0.17.1 - (label=,max="4.8",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)
    • +
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • opentelemetry-operator.v0.27.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opentelemetry-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    openshift-nfd-operatorapimatic-kubernetes-operator
      @@ -4463,7 +4734,7 @@
      Fully complying with the recommendations
      -
    • 4.8.0
    • +
    • alpha
      -
    • node-feature-discovery-operator.v4.8.0 - (label=v4.7,max=not set,channels=[4.8.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    must-gather-operatorawss3-operator-registry
      @@ -4495,239 +4766,61 @@
      Fully complying with the recommendations
    • alpha
    • +
    • original
    • +
      -
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eclipse-chevarnish-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • stable-all-namespaces
    • +
    • alpha
      -
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • 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.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    koku-metrics-operatornamespace-configuration-operator
      +
    • CRD
    • +
    @@ -4735,42 +4828,60 @@
    Fully complying with the recommendations
  • alpha
  • -
  • beta
  • -
      +
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubernetes-imagepuller-operatorcluster-manager
      @@ -4788,69 +4899,53 @@
      Fully complying with the recommendations
      -
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-manager.v0.3.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    buildv2-operatorkonveyor-forklift-operator
      -
    • CRD
    • -
      -
    • alpha
    • +
    • release-v2.0
      -
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • konveyor-forklift-operator.v2.0.0 - (label==v4.7,max=not set,channels=[release-v2.0],head:YES,defaultChannel:YES, deprecated:NO)
    strimzi-kafka-operatormust-gather-operator
      @@ -4861,74 +4956,44 @@
      Fully complying with the recommendations
      -
    • strimzi-0.22.x
    • - -
    • strimzi-0.23.x
    • - -
    • strimzi-0.24.x
    • - -
    • strimzi-0.25.x
    • - -
    • stable
    • - -
    • strimzi-0.19.x
    • - -
    • strimzi-0.20.x
    • - -
    • strimzi-0.21.x
    • +
    • alpha
      -
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    fluxtagger
      @@ -4937,7 +5002,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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.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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tagger.v2.1.17 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    reportportal-operatorcamel-k
      -
    • ClusterRole
    • -
    • CRD
    @@ -4987,44 +5032,84 @@
    Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • stable-1.3
    • + +
    • stable-1.4
    • + +
    • stable-1.5
      -
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    kogito-operatorvolume-expander-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • 1.x
    • -
    • alpha
    @@ -5032,101 +5117,83 @@
    Fully complying with the recommendations
      -
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    poison-pill-operatorcockroachdb
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
    • + +
    • stable-5.x
    • + +
    • stable-3.x
      -
    -
    -
      - -
    • 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)
    • +
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • poison-pill.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • poison-pill.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • poison-pill.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v3.0.7 - (label=,max="4.8",channels=[stable-3.x],head:YES,defaultChannel:NO, 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)
    • +
    • cockroachdb.v5.0.3 - (label=,max=not set,channels=[stable-5.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • poison-pill.v0.1.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroachdb.v5.0.4 - (label=,max=not set,channels=[stable-5.x],head:YES,defaultChannel:YES, deprecated:NO)
    sap-commerce-operatorpulp-operator
      @@ -5147,23 +5214,21 @@
      Fully complying with the recommendations
      -
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hive-operatorgroup-sync-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -5171,95 +5236,51 @@
    Fully complying with the recommendations
  • alpha
  • -
  • ocm-2.4
  • - -
  • ocm-2.3
  • - -
  • ocm-2.1
  • - -
  • ocm-2.2
  • -
      -
    • hive-operator.v1.0.10 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.11 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.12 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.6 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.7 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.8 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.9 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.0 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],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:YES,defaultChannel:NO, deprecated:NO)
    • +
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    pcc-operatorjaeger
      +
    • CRD
    • +
    @@ -5272,21 +5293,53 @@
    Fully complying with the recommendations
      +
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • pcc-operator.v0.0.1 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • pcc-operator.v0.1.0 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    universal-crossplaneproactive-node-scaling-operator
      @@ -5295,7 +5348,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • universal-crossplane.1.2.1-up.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],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)
    • +
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],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)
    • +
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • universal-crossplane.1.2.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kialikeda
      @@ -5333,82 +5406,36 @@
      Fully complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v1.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-impairment-operatortackle-operator
      @@ -5417,7 +5444,9 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
    • + +
    • stable
      -
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tackle-operator.v0.0.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    jaegerripsaw
      -
    • CRD
    • -
      -
    • stable
    • +
    • alpha
      -
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    proactive-node-scaling-operatorspecial-resource-operator
      +
    • UNKNOWN
    • +
    @@ -5518,48 +5519,28 @@
    Fully complying with the recommendations
      +
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    istio-workspace-operatorreportportal-operator
      +
    • ClusterRole
    • + +
    • CRD
    • +
    @@ -5572,33 +5553,25 @@
    Fully complying with the recommendations
      +
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-scale-csi-operatorapicurio-registry
      @@ -5609,36 +5582,34 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • 2.x
      -
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    namespace-configuration-operatorvictoriametrics-operator
      @@ -5649,173 +5620,135 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.15.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.16.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],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.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.8.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.18.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.18.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    taggerredis-operator
      +
    • CRD
    • +
      -
    • alpha
    • +
    • preview
    • + +
    • stable
      +
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.2.0 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • tagger.v2.1.17 - (label=v4.7,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    camel-krhoas-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • stable-1.3
    • - -
    • stable-1.4
    • - -
    • stable-1.5
    • +
    • beta
      -
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    global-load-balancer-operatorsap-commerce-operator
      -
    • CRD
    • -
    @@ -5828,104 +5761,94 @@
    Fully complying with the recommendations
      -
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    syndesis +
      + +
    +
    +
      + +
    • 1.12.x
    • + +
    +
    +
      -
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    group-sync-operatoribm-spectrum-scale-csi-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    snapschedulerpcc-operator
      -
    • CRD
    • -
    @@ -5933,28 +5856,26 @@
    Fully complying with the recommendations
  • stable
  • -
  • candidate
  • -
      -
    • snapscheduler.v1.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pcc-operator.v0.0.1 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • pcc-operator.v0.1.0 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cert-utils-operatoropenshift-nfd-operator
      @@ -5963,7 +5884,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • 4.8.0
      -
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-feature-discovery-operator.v4.8.0 - (label=v4.7,max=not set,channels=[4.8.0],head:YES,defaultChannel:YES, deprecated:NO)
    cert-managermachine-deletion-operator
      @@ -6025,7 +5912,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    dell-csi-operatorglobal-load-balancer-operator
      @@ -6065,34 +5942,52 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    awss3-operator-registryibm-block-csi-operator-community
      @@ -6103,30 +5998,36 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
    • -
    • original
    • +
    • maintenance-1.5
      -
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,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:NO, deprecated:NO)
      -
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    resource-locker-operatorkiali
      @@ -6139,56 +6040,82 @@
      Fully complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      -
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    mta-operatorcert-utils-operator
      @@ -6209,38 +6136,56 @@
      Fully complying with the recommendations
      -
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    redis-operatorflux
      -
    • CRD
    • -
      -
    • preview
    • -
    • stable
    @@ -6248,92 +6193,80 @@
    Fully complying with the recommendations
      -
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-operator.v0.2.0 - (label=,max="4.8",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)
    • +
    • flux.v0.13.4 - (label=,max=not set,channels=[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)
    • +
    • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redis-operator.v0.5.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)
    • -
    • redis-operator.v0.6.0 - (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)
    • -
    • redis-operator.v0.8.0 - (label=,max=not set,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    keycloak-operatorcert-manager
      -
    • CRD
    • -
      -
    • alpha
    • +
    • stable
      -
    • 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.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)
    • -
      -
    • keycloak-operator.v14.0.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager.v1.4.0 - (label=,max=not set,channels=[stable],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)
    • +
    • cert-manager.v1.4.1 - (label=,max=not set,channels=[stable],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)
    • +
    • cert-manager.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    sosreport-operatoropenshift-qiskit-operator
      +
    • CRD
    • +
    @@ -6346,55 +6279,75 @@
    Fully complying with the recommendations
      +
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    machine-deletion-operatorprometheus
      +
    • CRD
    • +
      -
    • alpha
    • +
    • beta
      +
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    pulp-operatorkogito-operator
      +
    • CRD
    • +
      +
    • 1.x
    • +
    • alpha
    @@ -6402,19 +6355,55 @@
    Fully complying with the recommendations
      +
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    community-windows-machine-config-operatormongodb-atlas-kubernetes
      @@ -6423,7 +6412,9 @@
      Fully complying with the recommendations
      -
    • preview
    • +
    • alpha
    • + +
    • beta
      -
    • community-windows-machine-config-operator.v2.0.0 - (label==v4.7,max=not set,channels=[preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.4.0 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • community-windows-machine-config-operator.v2.0.1 - (label==v4.7,max=not set,channels=[preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • community-windows-machine-config-operator.v2.0.2 - (label==v4.7,max=not set,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    ripsawazure-service-operator
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
      +
    • azure-service-operator.v0.37.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    volume-expander-operatorcommunity-windows-machine-config-operator
      -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • preview
      -
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • community-windows-machine-config-operator.v2.0.0 - (label==v4.7,max=not set,channels=[preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • community-windows-machine-config-operator.v2.0.1 - (label==v4.7,max=not set,channels=[preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • community-windows-machine-config-operator.v2.0.2 - (label==v4.7,max=not set,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -142,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -174,7 +153,7 @@
    Partially complying with the recommendations
    - + @@ -218,7 +191,7 @@
    Partially complying with the recommendations
    - + @@ -252,7 +221,7 @@
    Partially complying with the recommendations
    - + @@ -282,7 +253,7 @@
    Partially complying with the recommendations
    - + @@ -322,7 +287,7 @@
    Partially complying with the recommendations
    - + @@ -368,7 +323,7 @@
    Partially complying with the recommendations
    - + @@ -402,7 +353,7 @@
    Partially complying with the recommendations
    - + @@ -432,7 +385,7 @@
    Partially complying with the recommendations
    - + @@ -472,7 +433,7 @@
    Partially complying with the recommendations
    - + @@ -522,7 +469,7 @@
    Partially complying with the recommendations
    - + @@ -572,7 +501,7 @@
    Partially complying with the recommendations
    - + @@ -608,7 +531,7 @@
    Partially complying with the recommendations
    - + @@ -644,14 +585,12 @@
    Partially complying with the recommendations
    - + @@ -682,7 +619,7 @@
    Partially complying with the recommendations
    - + @@ -712,7 +649,7 @@
    Partially complying with the recommendations
    - + @@ -742,7 +679,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -814,51 +727,53 @@
    Partially complying with the recommendations
    - + - + @@ -888,7 +803,7 @@
    Partially complying with the recommendations
    - + @@ -918,7 +833,7 @@
    Partially complying with the recommendations
    - + @@ -948,7 +879,7 @@
    Partially complying with the recommendations
    - + @@ -1028,7 +919,7 @@
    Partially complying with the recommendations
    - + @@ -1062,19 +949,19 @@
    Partially complying with the recommendations
    - + @@ -1110,7 +987,7 @@
    Partially complying with the recommendations
    - + @@ -1168,7 +1017,7 @@
    Partially complying with the recommendations
    - + @@ -1200,7 +1055,7 @@
    Partially complying with the recommendations
    - + @@ -1242,7 +1085,7 @@
    Partially complying with the recommendations
    - + @@ -1276,7 +1117,7 @@
    Partially complying with the recommendations
    - + - + - + @@ -1362,7 +1181,7 @@
    Partially complying with the recommendations
    - + @@ -1396,7 +1215,7 @@
    Partially complying with the recommendations
    - + @@ -1430,7 +1245,7 @@
    Partially complying with the recommendations
    - + @@ -1462,7 +1301,7 @@
    Partially complying with the recommendations
    - + @@ -1506,41 +1331,45 @@
    Partially complying with the recommendations
    - + @@ -1552,7 +1381,7 @@
    Partially complying with the recommendations
    - + @@ -1582,7 +1415,7 @@
    Partially complying with the recommendations
    - + @@ -1612,7 +1445,7 @@
    Partially complying with the recommendations
    - + @@ -1652,7 +1475,7 @@
    Partially complying with the recommendations
    - + @@ -1682,7 +1505,7 @@
    Partially complying with the recommendations
    - + @@ -1720,7 +1551,7 @@
    Partially complying with the recommendations
    - + @@ -1770,7 +1583,7 @@
    Partially complying with the recommendations
    - + @@ -1808,7 +1623,7 @@
    Partially complying with the recommendations
    - + @@ -1862,7 +1665,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -1924,7 +1707,7 @@
    Partially complying with the recommendations
    - + @@ -1974,7 +1741,7 @@
    Partially complying with the recommendations
    - + @@ -2022,7 +1791,7 @@
    Partially complying with the recommendations
    - + @@ -2052,7 +1829,7 @@
    Partially complying with the recommendations
    - + @@ -2110,7 +1869,7 @@
    Partially complying with the recommendations
    - + @@ -2140,7 +1899,7 @@
    Partially complying with the recommendations
    - + @@ -2170,7 +1937,7 @@
    Partially complying with the recommendations
    - + @@ -2208,7 +1967,7 @@
    Partially complying with the recommendations
    - + @@ -2256,7 +1999,7 @@
    Partially complying with the recommendations
    - + @@ -2286,7 +2029,7 @@
    Partially complying with the recommendations
    - + @@ -2316,7 +2059,7 @@
    Partially complying with the recommendations
    - + @@ -2354,35 +2117,39 @@
    Partially complying with the recommendations
    - + @@ -2394,7 +2161,7 @@
    Partially complying with the recommendations
    - + @@ -2430,7 +2219,7 @@
    Partially complying with the recommendations
    - + @@ -2460,7 +2253,7 @@
    Partially complying with the recommendations
    - + @@ -2490,7 +2287,7 @@
    Partially complying with the recommendations
    - + @@ -2520,7 +2317,7 @@
    Partially complying with the recommendations
    - + @@ -2566,7 +2361,7 @@
    Partially complying with the recommendations
    - + @@ -2600,7 +2411,7 @@
    Partially complying with the recommendations
    - + @@ -2630,12 +2441,14 @@
    Partially complying with the recommendations
    - + @@ -2668,7 +2481,7 @@
    Partially complying with the recommendations
    - + @@ -2702,7 +2517,7 @@
    Partially complying with the recommendations
    - + @@ -2732,7 +2597,7 @@
    Partially complying with the recommendations
    - + @@ -2762,7 +2639,7 @@
    Partially complying with the recommendations
    - + @@ -2818,7 +2687,7 @@
    Partially complying with the recommendations
    - + @@ -2866,7 +2725,7 @@
    Partially complying with the recommendations
    - + @@ -2898,7 +2757,7 @@
    Partially complying with the recommendations
    - + @@ -2930,7 +2787,7 @@
    Partially complying with the recommendations
    - + @@ -2968,7 +2831,7 @@
    Partially complying with the recommendations
    - + @@ -2998,7 +2879,7 @@
    Partially complying with the recommendations
    - + @@ -3030,7 +2913,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -3068,7 +2981,7 @@
    Partially complying with the recommendations
    - + @@ -3102,7 +3019,7 @@
    Partially complying with the recommendations
    - + @@ -3137,7 +3074,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    planetscaleham-deploy
      @@ -153,16 +134,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    api-operatorspinnaker-operator
      @@ -185,28 +164,22 @@
      Partially complying with the recommendations
      -
    • 2.x-stable
    • - -
    • stable
    • +
    • alpha
      -
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hyperfoil-bundleesindex-operator
      @@ -236,11 +209,7 @@
      Partially complying with the recommendations
      -
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    lightbend-console-operatorvault-helm
      @@ -270,7 +239,9 @@
      Partially complying with the recommendations
      -
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    teiidstarter-kit-operator
      @@ -293,24 +264,18 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    3scale-community-operatorradanalytics-spark
      @@ -333,30 +298,20 @@
      Partially complying with the recommendations
      -
    • threescale-2.6
    • - -
    • threescale-2.7
    • - -
    • threescale-2.8
    • - -
    • threescale-2.9
    • - -
    • threescale-2.10
    • +
    • alpha
      -
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.6 threescale-2.7 threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.7 threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    atlasmap-operatoropenshift-ibm-quantum-operator
      @@ -386,11 +341,7 @@
      Partially complying with the recommendations
      -
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    spark-gcpevent-streams-topic
      @@ -420,7 +371,9 @@
      Partially complying with the recommendations
      -
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    argocd-operator-helmopendatahub-operator
      @@ -443,24 +396,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • rolling
    • + +
    • beta
    • + +
    • stable
      -
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[rolling beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operatortidb-operator
      @@ -490,27 +451,13 @@
      Partially complying with the recommendations
      -
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    aquaprometheus-exporter-operator
      @@ -533,34 +480,16 @@
      Partially complying with the recommendations
      -
    • 6.0.0
    • -
    • alpha
    • -
    • 5.3.0
    • - -
    • 6.2.0
    • -
      -
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    radanalytics-sparkjupyterlab-operator
      @@ -583,20 +512,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    tidb-operatorgrafana-operator
      @@ -619,20 +542,38 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • original
      -
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    integrity-shield-operatorhyperfoil-bundle
    • CRD
    • -
    • ClusterRole
    • -
    @@ -664,13 +603,11 @@
    Partially complying with the recommendations
      -
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-operatorenc-key-sync
      @@ -700,7 +637,7 @@
      Partially complying with the recommendations
      -
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mattermost-operatorhorreum-operator
      @@ -730,7 +667,7 @@
      Partially complying with the recommendations
      -
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apicuritoargocd-operator
      @@ -760,49 +697,25 @@
      Partially complying with the recommendations
      -
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    kubeturbo -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    • stable
    • - -
    -
    -
      +
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    hazelcast-operatorember-csi-community-operator
    • CRD
    • +
    • UNKNOWN
    • +
      -
    • alpha
    • +
    • beta
      -
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    horreum-operatoreunomia
      @@ -876,7 +791,7 @@
      Partially complying with the recommendations
      -
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nsm-operator-registrykubefed
      @@ -906,7 +821,7 @@
      Partially complying with the recommendations
      -
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-ibm-quantum-operatorportworx-essentials
      @@ -929,14 +844,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    infinispanteiid
      @@ -959,64 +890,24 @@
      Partially complying with the recommendations
      -
    • dev-preview
    • - -
    • 2.0.x
    • - -
    • 2.1.x
    • - -
    • 1.1.x
    • - -
    • stable
    • +
    • beta
      -
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    tf-operatorpostgresql-operator-dev4devs-com
      @@ -1041,16 +932,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    microcksintegrity-shield-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • -
    • alpha
    @@ -1082,23 +969,13 @@
    Partially complying with the recommendations
      -
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    maistraoperatorpystol
      @@ -1121,42 +998,14 @@
      Partially complying with the recommendations
      -
    • 1.0
    • - -
    • stable
    • +
    • alpha
      -
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sealed-secrets-operator-helmpercona-server-mongodb-operator
      @@ -1179,16 +1028,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openebsapicurito
      @@ -1218,19 +1073,7 @@
      Partially complying with the recommendations
      -
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openebsoperator.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operatorskydive-operator
      @@ -1253,18 +1096,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    t8cnsm-operator-registry
      @@ -1289,36 +1130,24 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      +
    +
    +
    apicast-community-operatoratlasmap-operator
      @@ -1331,26 +1160,16 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    starter-kit-operatorwso2am-operator
      @@ -1373,18 +1192,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ditto-operatorspark-gcp
      @@ -1414,11 +1233,7 @@
      Partially complying with the recommendations
      -
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    prometheus-exporter-operatorsnyk-operator
      @@ -1441,16 +1256,40 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    enmassemattermost-operator
      @@ -1480,21 +1319,7 @@
      Partially complying with the recommendations
      -
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ember-csi-community-operatoraqua
    • CRD
    • -
    • UNKNOWN
    • -
      -
    • beta
    • +
    • 6.0.0
    • + +
    • alpha
    • + +
    • 5.3.0
    • + +
    • 6.2.0
      -
    • ember-csi-community-operator.v0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    postgresql-operator-dev4devs-comtf-operator
      @@ -1565,12 +1394,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    jupyterlab-operatorkubestone
      @@ -1593,14 +1426,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubestone.v0.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    crane-operatoriot-simulator
      @@ -1623,24 +1456,14 @@
      Partially complying with the recommendations
      -
    • release-v1.4
    • - -
    • release-v1.5
    • +
    • alpha
      -
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eunomiaibmcloud-iam-operator
      @@ -1670,7 +1493,7 @@
      Partially complying with the recommendations
      -
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator3scale-community-operator
      @@ -1693,22 +1516,30 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • threescale-2.6
    • + +
    • threescale-2.7
    • + +
    • threescale-2.8
    • + +
    • threescale-2.9
    • + +
    • threescale-2.10
      -
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.6 threescale-2.7 threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.7 threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    neuvector-community-operatorplanetscale
      @@ -1738,27 +1569,9 @@
      Partially complying with the recommendations
      -
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    aws-efs-operatorcrane-operator
      @@ -1781,22 +1594,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • release-v1.4
    • + +
    • release-v1.5
      -
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    grafana-operatoropenebs
      @@ -1821,36 +1636,24 @@
      Partially complying with the recommendations
    • alpha
    • -
    • original
    • -
      -
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v1.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v2.10.0 - (label=,max="4.5",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openebsoperator.v2.11.0 - (label=,max="4.5",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hedvig-operatorkubeturbo
      @@ -1873,6 +1676,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -1880,39 +1685,17 @@
    Partially complying with the recommendations
      -
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    kubestone -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubestone.v0.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    federatoraipercona-xtradb-cluster-operator
      @@ -1942,27 +1725,11 @@
      Partially complying with the recommendations
      -
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    opendatahub-operatorneuvector-community-operator
      @@ -1985,32 +1752,34 @@
      Partially complying with the recommendations
      -
    • rolling
    • -
    • beta
    • -
    • stable
    • -
      -
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[rolling beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    enc-key-syncpodium-operator-bundle
      @@ -2040,7 +1809,15 @@
      Partially complying with the recommendations
      -
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibmcloud-operatorargocd-operator-helm
      @@ -2063,42 +1840,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibmcloud-operator.v1.0.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    composable-operatormyvirtualdirectory
      @@ -2121,14 +1880,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    esindex-operatoropsmx-spinnaker-operator
      @@ -2158,7 +1917,15 @@
      Partially complying with the recommendations
      -
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    podium-operator-bundlelightbend-console-operator
      @@ -2188,15 +1955,7 @@
      Partially complying with the recommendations
      -
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operatorsealed-secrets-operator-helm
      @@ -2226,25 +1985,9 @@
      Partially complying with the recommendations
      -
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibmcloud-iam-operatorcomposable-operator
      @@ -2274,7 +2017,7 @@
      Partially complying with the recommendations
      -
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mcad-operatorgitlab-runner-operator
      @@ -2297,14 +2040,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-operatoribmcloud-operator
      @@ -2334,15 +2077,35 @@
      Partially complying with the recommendations
      -
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    nexus-operator-m88iapi-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • 2.x-stable
    • + +
    • stable
      -
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    hawkbit-operatormaistraoperator
      @@ -2405,20 +2172,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 1.0
    • + +
    • stable
      -
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    iot-simulatorhawtio-operator
      @@ -2448,7 +2237,11 @@
      Partially complying with the recommendations
      -
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gitlab-runner-operatorditto-operator
      @@ -2471,14 +2264,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    myvirtualdirectorymcad-operator
      @@ -2501,14 +2298,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portworx-essentialsenmasse
      @@ -2531,30 +2328,28 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    oadp-operatorseldon-operator
      @@ -2577,18 +2372,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    splunkhazelcast-jet-operator
      @@ -2618,7 +2429,7 @@
      Partially complying with the recommendations
      -
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    opsmx-spinnaker-operatornexus-operator-m88i
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2648,15 +2461,15 @@
    Partially complying with the recommendations
      -
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    wso2am-operatorhawkbit-operator
      @@ -2679,18 +2492,20 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    pystolinfinispan
      @@ -2713,14 +2528,64 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • dev-preview
    • + +
    • 2.0.x
    • + +
    • 2.1.x
    • + +
    • 1.1.x
    • + +
    • stable
      -
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    ham-deployt8c
      @@ -2745,12 +2610,24 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operatormicrocks
      @@ -2775,38 +2652,30 @@
      Partially complying with the recommendations
    • stable
    • +
    • alpha
    • +
      -
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    argocd-operatortraefikee-operator
      @@ -2829,32 +2698,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    skydive-operatorhedvig-operator
      @@ -2877,16 +2736,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    event-streams-topicsplunk
      @@ -2916,9 +2775,7 @@
      Partially complying with the recommendations
      -
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operatorapicast-community-operator
      @@ -2941,6 +2798,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -2948,15 +2807,19 @@
    Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    node-problem-detectordatadog-operator
      @@ -2986,7 +2849,25 @@
      Partially complying with the recommendations
      -
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    vault-helmoadp-operator
      @@ -3016,9 +2897,11 @@
      Partially complying with the recommendations
      -
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    spinnaker-operatornode-problem-detector
      @@ -3048,15 +2931,45 @@
      Partially complying with the recommendations
      -
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    akka-cluster-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hawtio-operatoraws-efs-operator
      @@ -3079,18 +2992,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubefedfederatorai
      @@ -3113,14 +3030,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -3152,7 +3089,7 @@
    Fully complying with the recommendations
    - + - + - + + + + + + + + + - + - + - + + + + + + + + + - + - + - + - + @@ -3491,20 +3564,30 @@
    Fully complying with the recommendations
    - + - + - + - + - + + - - + - + - + - + - + - + - - - - - - - - - + - + - + - - - - - - - - @@ -4304,35 +4319,51 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + @@ -4559,16 +4632,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + @@ -4839,22 +4876,14 @@
    Fully complying with the recommendations
    - + - + - + - + + + + + + + + + + + + + + + + + - + - + @@ -5287,80 +5200,132 @@
    Fully complying with the recommendations
    - + + + + + + + + + - + @@ -5381,14 +5346,18 @@
    Fully complying with the recommendations
    - + - + - + - + + + + + + + + + - + - + - + - + - + - + + + + + + + + + - + @@ -5875,30 +5842,28 @@
    Fully complying with the recommendations
    - + - + @@ -5945,25 +5904,19 @@
    Fully complying with the recommendations
    - + - + - + - + - + - - - - - - - - - + @@ -6231,50 +6310,24 @@
    Fully complying with the recommendations
    - - - - - - - - - + - - - - - - - - - - - - - - - - - + - + @@ -6445,41 +6424,43 @@
    Fully complying with the recommendations
    - + diff --git a/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html b/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html new file mode 100644 index 00000000..2e8d734c --- /dev/null +++ b/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.6_2021-09-06.html @@ -0,0 +1,6418 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/community-operator-index:v4.6
    • +
    • Image ID: sha256:d4e69fc6123fab170e84bd7f2548e2c3a560d54c4b14292ae72297562c191931
    • +
    • Image Created at: 2021-09-03T08:58:41.157667531Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    +
    sosreport-operatorpulp-operator
      @@ -3173,14 +3110,14 @@
      Fully complying with the recommendations
      -
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    odoo-operatornode-healthcheck-operator
      @@ -3201,21 +3138,23 @@
      Fully complying with the recommendations
      -
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    prometheuscluster-impairment-operator
      -
    • CRD
    • -
    @@ -3228,31 +3167,51 @@
    Fully complying with the recommendations
      -
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    special-resource-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-spectrum-scale-csi-operatorkeycloak-operator
      @@ -3263,39 +3222,59 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],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)
    • -
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],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)
    • -
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],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)
    • -
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],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.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)
      -
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    machine-deletion-operatorawss3-operator-registry
      +
    • CRD
    • +
    @@ -3303,34 +3282,38 @@
    Fully complying with the recommendations
  • alpha
  • +
  • original
  • +
      +
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    egressip-ipam-operatormongodb-atlas-kubernetes
      -
    • CRD
    • -
      +
    • beta
    • +
    • alpha
    @@ -3338,139 +3321,227 @@
    Fully complying with the recommendations
      -
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.4.0 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.5.0 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    odoo-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cert-managerglobal-load-balancer-operator
      +
    • CRD
    • +
      -
    • stable
    • +
    • alpha
      +
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • cert-manager.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager.v1.4.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager.v1.4.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager.v1.5.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sigstore-helm-operatorjaeger
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
      +
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    community-windows-machine-config-operatorgroup-sync-operator
      +
    • CRD
    • + +
    • ClusterRole
    • +
      -
    • preview
    • +
    • alpha
      +
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • community-windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    universal-crossplanekoku-metrics-operator
      @@ -3479,7 +3550,9 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • beta
      -
    • universal-crossplane.1.2.1-up.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],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)
    • +
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],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)
    • +
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • universal-crossplane.1.2.3-up.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    taggeralvearie-imaging-ingestion
      @@ -3525,70 +3608,42 @@
      Fully complying with the recommendations
      -
    • tagger.v2.1.17 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    victoriametrics-operatorsigstore-helm-operator
      -
    • CRD
    • -
      -
    • beta
    • +
    • alpha
      -
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",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="4.8",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.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • victoriametrics-operator.v0.8.0 - (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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sigstore-helm-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ripsawvarnish-operator
      @@ -3609,26 +3664,24 @@
      Fully complying with the recommendations
      -
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    reportportal-operatortackle-operator
      -
    • CRD
    • - -
    • ClusterRole
    • -
      +
    • stable
    • +
    • alpha
    @@ -3636,30 +3689,30 @@
    Fully complying with the recommendations
      -
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tackle-operator.v0.0.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v0.0.2 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v0.0.3 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v0.0.4 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v1.0.0 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kialiassisted-service-operator
      -
    • CRD
    • -
    @@ -3667,82 +3720,40 @@
    Fully complying with the recommendations
  • alpha
  • -
  • stable
  • +
  • ocm-2.3
    • -
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    cert-utils-operatoretcd
      @@ -3751,6 +3762,10 @@
      Fully complying with the recommendations
      +
    • singlenamespace-alpha
    • + +
    • clusterwide-alpha
    • +
    • alpha
    @@ -3763,56 +3778,44 @@
    Fully complying with the recommendations
      -
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    istio-workspace-operatormulticluster-operators-subscription
      +
    • CRD
    • +
      +
    • release-2.4
    • + +
    • release-2.3
    • + +
    • release-2.1
    • + +
    • release-2.2
    • + +
    • release-2.0
    • +
    • alpha
    @@ -3820,107 +3823,143 @@
    Fully complying with the recommendations
      +
    • multicluster-operators-subscription.v0.1.0 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.1 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.2 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.3 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.4 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.5 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.6 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.7 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.8 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.1 - (label=,max="4.8",channels=[release-2.4 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.2 - (label=,max="4.8",channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.3 - (label=,max="4.8",channels=[release-2.4 release-2.1 release-2.2 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.4 - (label=,max="4.8",channels=[release-2.4 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.5 - (label=,max="4.8",channels=[release-2.4 release-2.2 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.6 - (label=,max="4.8",channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • 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)
    • +
    • multicluster-operators-subscription.v0.2.7 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • istio-workspace-operator.v0.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • istio-workspace-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • multicluster-operators-subscription.v0.2.9 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • istio-workspace-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • multicluster-operators-subscription.v0.3.0 - (label=,max=not set,channels=[release-2.4 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • istio-workspace-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • multicluster-operators-subscription.v0.3.1 - (label=,max=not set,channels=[release-2.4],head:YES,defaultChannel:NO, deprecated:NO)
    varnish-operatorcluster-manager
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
      +
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    fluxvolume-expander-operator
      +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      +
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • flux.v0.13.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.15.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.16.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.16.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.16.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • flux.v0.17.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-managervictoriametrics-operator
      @@ -3931,35 +3970,57 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",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="4.8",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.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.8.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    special-resource-operatorhive-operator
      +
    • CRD
    • +
    @@ -3967,77 +4028,99 @@
    Fully complying with the recommendations
  • alpha
  • +
  • ocm-2.3
  • + +
  • ocm-2.4
  • + +
  • ocm-2.1
  • + +
  • ocm-2.2
  • +
      -
    -
    -
      +
    • hive-operator.v1.0.10 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.0.11 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.0.12 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    koku-metrics-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    • beta
    • - -
    -
    -
      +
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.6 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.7 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.8 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.9 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.0 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],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)
    • -
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],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)
    • -
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],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)
    • -
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],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)
    • -
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],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)
    • -
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.15 - (label=,max=not set,channels=[alpha ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],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:YES,defaultChannel:NO, deprecated:NO)
    openshift-qiskit-operatorreportportal-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -4050,21 +4133,25 @@
    Fully complying with the recommendations
      -
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kogito-operatormust-gather-operator
      @@ -4077,62 +4164,42 @@
      Fully complying with the recommendations
    • alpha
    • -
    • 1.x
    • -
      -
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],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)
    • +
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],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)
    • +
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],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)
    • +
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],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)
    • +
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],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)
    • +
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],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)
    • +
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],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)
    • +
    • must-gather-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    resource-locker-operatorpostgresql
      @@ -4143,101 +4210,49 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • v5
      -
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    -
    -
      +
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    -
    volume-expander-operator -
      - -
    • ClusterRole
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-nfd-operatorcockroachdb
      +
    • CRD
    • +
      -
    • 4.8.0
    • +
    • stable
    • + +
    • stable-3.x
    • + +
    • stable-5.x
      +
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v3.0.7 - (label=,max="4.8",channels=[stable-3.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • node-feature-discovery-operator.v4.8.0 - (label=v4.7,max=not set,channels=[4.8.0],head:YES,defaultChannel:YES, 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)
    postgresqlcamel-k
      @@ -4345,54 +4376,72 @@
      Fully complying with the recommendations
    • stable
    • -
    • v5
    • +
    • stable-1.3
    • + +
    • stable-1.4
    • + +
    • stable-1.5
      -
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    node-healthcheck-operatorproactive-node-scaling-operator
      @@ -4413,54 +4462,68 @@
      Fully complying with the recommendations
      -
    • node-healthcheck-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • proactive-node-scaling-operator.v0.1.0 - (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)
    • +
    • proactive-node-scaling-operator.v0.2.0 - (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)
    • +
    • proactive-node-scaling-operator.v0.3.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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    azure-service-operatorapimatic-kubernetes-operator
      -
    • CRD
    • -
      -
    • stable
    • +
    • alpha
      -
    • azure-service-operator.v0.37.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    strimzi-kafka-operatorkiali
      @@ -4471,19 +4534,7 @@
      Fully complying with the recommendations
      -
    • strimzi-0.19.x
    • - -
    • strimzi-0.20.x
    • - -
    • strimzi-0.21.x
    • - -
    • strimzi-0.22.x
    • - -
    • strimzi-0.23.x
    • - -
    • strimzi-0.24.x
    • - -
    • strimzi-0.25.x
    • +
    • alpha
    • stable
    • @@ -4492,53 +4543,75 @@
      Fully complying with the recommendations
      -
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-impairment-operatorsosreport-operator
      @@ -4547,7 +4620,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hive-operatorkogito-operator
      @@ -4581,92 +4652,62 @@
      Fully complying with the recommendations
    • alpha
    • -
    • ocm-2.3
    • - -
    • ocm-2.4
    • - -
    • ocm-2.1
    • - -
    • ocm-2.2
    • +
    • 1.x
      -
    • hive-operator.v1.0.10 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.11 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.12 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.6 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.7 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.8 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.0.9 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.0 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[alpha 1.x],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)
    • +
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.15 - (label=,max=not set,channels=[alpha ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kogito-operator.v1.4.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],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)
    • -
    • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],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)
    • -
    • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],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)
    • -
    • hive-operator.v1.1.9 - (label=,max=not set,channels=[alpha ocm-2.4],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)
    • -
    • hive-operator.v1.1.9-1.1.8.1 - (label=,max=not set,channels=[ocm-2.3],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kogito-operator.v1.9.0 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hive-operator.v1.1.9-1.1.8.2 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kogito-operator.v1.9.1 - (label=,max=not set,channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    camel-kresource-locker-operator
      @@ -4677,118 +4718,104 @@
      Fully complying with the recommendations
      -
    • stable
    • - -
    • stable-1.3
    • - -
    • stable-1.4
    • - -
    • stable-1.5
    • +
    • alpha
      -
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    assisted-service-operatorkubernetes-imagepuller-operator
      +
    • CRD
    • +
      -
    • alpha
    • - -
    • ocm-2.3
    • +
    • stable
      +
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-imagepuller-operator.v0.0.5 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-imagepuller-operator.v0.0.6 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-imagepuller-operator.v0.0.7 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-imagepuller-operator.v0.0.8 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubernetes-imagepuller-operator.v0.0.9 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    devopsinaboxmta-operator
      @@ -4809,14 +4836,26 @@
      Fully complying with the recommendations
      -
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    tackle-operatoropenshift-nfd-operator
      @@ -4825,9 +4864,7 @@
      Fully complying with the recommendations
      -
    • stable
    • - -
    • alpha
    • +
    • 4.8.0
      -
    • tackle-operator.v0.0.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tackle-operator.v0.0.2 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tackle-operator.v0.0.3 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tackle-operator.v0.0.4 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • tackle-operator.v1.0.0 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-feature-discovery-operator.v4.8.0 - (label=v4.7,max=not set,channels=[4.8.0],head:YES,defaultChannel:YES, deprecated:NO)
    ibm-block-csi-operator-communitydell-csi-operator
      @@ -4872,25 +4901,27 @@
      Fully complying with the recommendations
      -
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-block-csi-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    keycloak-operatorstrimzi-kafka-operator
      @@ -4901,54 +4932,74 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • strimzi-0.19.x
    • + +
    • strimzi-0.20.x
    • + +
    • strimzi-0.21.x
    • + +
    • strimzi-0.22.x
    • + +
    • strimzi-0.23.x
    • + +
    • strimzi-0.24.x
    • + +
    • strimzi-0.25.x
    • + +
    • stable
      -
    • keycloak-operator.v10.0.0 - (label=v4.5-v4.8,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,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)
    • +
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],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)
    • +
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,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)
    • +
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • keycloak-operator.v15.0.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • keycloak-operator.v15.0.2 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubernetes-imagepuller-operatoropenshift-qiskit-operator
      @@ -4959,42 +5010,28 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eclipse-cheazure-service-operator
      @@ -5005,8 +5042,6 @@
      Fully complying with the recommendations
      -
    • stable-all-namespaces
    • -
    • stable
    @@ -5014,181 +5049,99 @@
    Fully complying with the recommendations
      -
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • azure-service-operator.v0.37.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • eclipse-che.v7.12.2 - (label=,max="4.8",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)
    • -
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • azure-service-operator.v1.0.27207 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    keda +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v1.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    buildv2-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
      -
    • 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.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    multicluster-operators-subscriptionyaks
      @@ -5199,16 +5152,6 @@
      Fully complying with the recommendations
      -
    • release-2.4
    • - -
    • release-2.3
    • - -
    • release-2.1
    • - -
    • release-2.2
    • - -
    • release-2.0
    • -
    • alpha
    @@ -5216,57 +5159,27 @@
    Fully complying with the recommendations
      -
    • multicluster-operators-subscription.v0.1.0 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.1 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.2 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.3 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.4 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.5 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.6 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.7 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.1.8 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.1 - (label=,max="4.8",channels=[release-2.4 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.2 - (label=,max="4.8",channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.3 - (label=,max="4.8",channels=[release-2.4 release-2.1 release-2.2 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.4 - (label=,max="4.8",channels=[release-2.4 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.5 - (label=,max="4.8",channels=[release-2.4 release-2.2 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.2.6 - (label=,max="4.8",channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • multicluster-operators-subscription.v0.2.7 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.2.9 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • multicluster-operators-subscription.v0.3.0 - (label=,max=not set,channels=[release-2.4 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yaks-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • multicluster-operators-subscription.v0.3.1 - (label=,max=not set,channels=[release-2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • yaks-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mta-operatorflux
      @@ -5275,7 +5188,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.13.4 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.14.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.14.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.14.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.15.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • flux.v0.15.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    proactive-node-scaling-operatorcommunity-kubevirt-hyperconverged
      +
    • CRD
    • +
      -
    • alpha
    • +
    • 1.1.0
    • + +
    • 1.0.0
    • + +
    • stable
    • + +
    • 0.0.3
    • + +
    • 0.0.2
    • + +
    • 0.0.1
      +
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[0.0.3 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.1.0 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[stable 1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],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)
    • -
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v1.4.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    hazelcast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    syndesissap-commerce-operator
      @@ -5369,7 +5334,7 @@
      Fully complying with the recommendations
      -
    • 1.12.x
    • +
    • alpha
      -
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdbegressip-ipam-operator
      @@ -5399,45 +5368,55 @@
      Fully complying with the recommendations
      -
    • stable
    • - -
    • stable-3.x
    • - -
    • stable-5.x
    • +
    • alpha
      -
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cockroachdb.v3.0.7 - (label=,max="4.8",channels=[stable-3.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • cockroachdb.v5.0.3 - (label=,max=not set,channels=[stable-5.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cockroachdb.v5.0.4 - (label=,max=not set,channels=[stable-5.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    must-gather-operatortagger
      -
    • CRD
    • -
    @@ -5450,37 +5429,19 @@
    Fully complying with the recommendations
      -
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • must-gather-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • tagger.v2.1.17 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jaegerprometheus
      @@ -5491,65 +5452,45 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    global-load-balancer-operatoropentelemetry-operator
    • CRD
    • +
    • ClusterRole
    • +
    @@ -5562,45 +5503,53 @@
    Fully complying with the recommendations
      -
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opentelemetry-operator.v0.17.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • global-load-balancer-operator.v1.0.5 - (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)
    • -
    • global-load-balancer-operator.v1.0.6 - (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)
    • -
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • opentelemetry-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    machine-deletion-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • machine-deletion.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    yaksklusterlet
      @@ -5611,34 +5560,32 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • yaks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    poison-pill-operatorcert-utils-operator
      @@ -5659,32 +5606,48 @@
      Fully complying with the recommendations
      -
    • poison-pill.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-utils-operator.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)
    • +
    • cert-utils-operator.v0.0.3 - (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)
    • +
    • cert-utils-operator.v0.1.0 - (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)
    • +
    • cert-utils-operator.v0.1.1 - (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)
    • +
    • cert-utils-operator.v0.2.0 - (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)
    • +
    • cert-utils-operator.v0.2.1 - (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)
    • +
    • cert-utils-operator.v0.2.2 - (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)
    • +
    • cert-utils-operator.v1.0.0 - (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)
    • +
    • cert-utils-operator.v1.0.1 - (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)
    • +
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    buildv2-operatoribm-spectrum-scale-csi-operator
      @@ -5695,119 +5658,115 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    redis-operatorsyndesis
      -
    • CRD
    • -
      -
    • preview
    • - -
    • stable
    • +
    • 1.12.x
      -
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redis-operator.v0.2.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    dell-csi-operatorpoison-pill-operator
      -
    • CRD
    • -
      -
    • stable
    • +
    • alpha
      -
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    group-sync-operatorlib-bucket-provisioner
    • CRD
    • -
    • ClusterRole
    • -
    @@ -5820,41 +5779,49 @@
    Fully complying with the recommendations
      -
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    community-windows-machine-config-operator +
      + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      -
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • community-windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    sap-commerce-operatoruniversal-crossplane
      @@ -5863,7 +5830,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • universal-crossplane.1.2.1-up.3 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],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)
    • -
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    apicurio-registrydevopsinabox
      -
    • CRD
    • -
      -
    • 2.x
    • -
    • alpha
    @@ -5906,25 +5871,19 @@
    Fully complying with the recommendations
      -
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rhoas-operatorripsaw
      @@ -5933,7 +5892,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ripsaw.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    apimatic-kubernetes-operatornamespace-configuration-operator
      +
    • CRD
    • +
    @@ -5976,19 +5929,55 @@
    Fully complying with the recommendations
      +
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    snapscheduleribm-block-csi-operator-community
      @@ -6001,28 +5990,30 @@
      Fully complying with the recommendations
    • stable
    • -
    • candidate
    • -
      -
    • snapscheduler.v1.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    klusterletapicurio-registry
      @@ -6033,74 +6024,78 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • 2.x
    • + +
    • alpha
      -
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    etcdredis-operator
      +
    • CRD
    • +
      -
    • singlenamespace-alpha
    • - -
    • clusterwide-alpha
    • +
    • preview
    • -
    • alpha
    • +
    • stable
      +
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.2.0 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redis-operator.v0.3.0 - (label=,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redis-operator.v0.4.0 - (label=,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • redis-operator.v0.5.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redis-operator.v0.6.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • redis-operator.v0.8.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    namespace-configuration-operatoreclipse-che
      @@ -6111,104 +6106,190 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable-all-namespaces
    • + +
    • stable
      -
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.30.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.30.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.30.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.31.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.31.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.31.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.32.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.32.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.32.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.33.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    keda -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • eclipse-che.v7.34.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.34.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keda.v1.5.0 - (label=,max="4.8",channels=[alpha],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.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keda.v2.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v2.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keda.v2.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • keda.v2.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • keda.v2.4.0 - (label=,max=not set,channels=[alpha],head:YES,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.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    mongodb-atlas-kubernetescert-manager
      @@ -6217,9 +6298,7 @@
      Fully complying with the recommendations
      -
    • beta
    • - -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • cert-manager.v1.4.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mongodb-atlas-kubernetes.v0.6.1 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager.v1.4.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    lib-bucket-provisioner -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • cert-manager.v1.4.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],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)
    • -
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager.v1.5.3 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    pulp-operatoristio-workspace-operator
      @@ -6295,80 +6348,28 @@
      Fully complying with the recommendations
      -
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    konveyor-forklift-operator -
      - -
    -
    -
      - -
    • release-v2.1
    • - -
    -
    -
      - -
    -
    -
      +
    • istio-workspace-operator.v0.0.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • konveyor-forklift-operator.v2.1.0 - (label==v4.8,max=not set,channels=[release-v2.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    opentelemetry-operator -
      - -
    • CRD
    • - -
    • ClusterRole
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • istio-workspace-operator.v0.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • opentelemetry-operator.v0.17.1 - (label=,max="4.8",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)
    • -
    • opentelemetry-operator.v0.21.0 - (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)
    • -
    • opentelemetry-operator.v0.27.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)
    • -
    • opentelemetry-operator.v0.33.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • istio-workspace-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    community-kubevirt-hyperconvergedsnapscheduler
      @@ -6379,52 +6380,30 @@
      Fully complying with the recommendations
      -
    • 1.1.0
    • - -
    • 1.0.0
    • -
    • stable
    • -
    • 0.0.3
    • - -
    • 0.0.2
    • - -
    • 0.0.1
    • +
    • candidate
      -
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.1],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[0.0.3 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.1.0 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[stable 1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • snapscheduler.v1.1.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    alvearie-imaging-ingestionrhoas-operator
      @@ -6433,7 +6412,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    awss3-operator-registrykonveyor-forklift-operator
      -
    • CRD
    • -
      -
    • alpha
    • - -
    • original
    • +
    • release-v2.1
      -
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • konveyor-forklift-operator.v2.1.0 - (label==v4.8,max=not set,channels=[release-v2.1],head:YES,defaultChannel:YES, deprecated:NO)
    + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    ember-csi-community-operator +
      + +
    • CRD
    • + +
    • UNKNOWN
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • ember-csi-community-operator.v0.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.1 - (label=,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    traefikee-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.1.1 - (label=,max="4.8",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)
    • + +
    +
    apicurito +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    portworx-essentials +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jupyterlab-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhoas-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    etcd +
      + +
    +
    +
      + +
    • clusterwide-alpha
    • + +
    • singlenamespace-alpha
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    lib-bucket-provisioner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    oadp-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    resource-locker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kogito-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.x
    • + +
    • alpha
    • + +
    +
    +
      + +
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    akka-cluster-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    starter-kit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    dell-csi-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    snyk-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mongodb-atlas-kubernetes +
      + +
    +
    +
      + +
    • beta
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • 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)
    • + +
    +
    special-resource-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    myvirtualdirectory +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubefed +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    syndesis +
      + +
    +
    +
      + +
    • 1.12.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    grafana-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • original
    • + +
    • alpha
    • + +
    +
    +
      + +
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    snapscheduler +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • candidate
    • + +
    +
    +
      + +
    • snapscheduler.v1.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubestone +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubestone.v0.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    alvearie-imaging-ingestion +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    namespace-configuration-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    horreum-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    federatorai +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opentelemetry-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • opentelemetry-operator.v0.17.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    maistraoperator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 1.0
    • + +
    +
    +
      + +
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[stable 1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mcad-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    buildv2-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    devopsinabox +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    percona-xtradb-cluster-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-jet-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibm-spectrum-scale-csi-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    seldon-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    podium-operator-bundle +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    pulp-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    awss3-operator-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • original
    • + +
    +
    +
      + +
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    postgresql +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v5
    • + +
    +
    +
      + +
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-impairment-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    infinispan +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 2.0.x
    • + +
    • 2.1.x
    • + +
    • 1.1.x
    • + +
    • dev-preview
    • + +
    +
    +
      + +
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[stable 2.0.x 2.1.x 1.1.x dev-preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[2.0.x 2.1.x dev-preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],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)
    • + +
    +
    ditto-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aqua +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 5.3.0
    • + +
    • alpha
    • + +
    • 6.0.0
    • + +
    • 6.2.0
    • + +
    +
    +
      + +
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    spark-gcp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    must-gather-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    strimzi-kafka-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • strimzi-0.23.x
    • + +
    • strimzi-0.24.x
    • + +
    • strimzi-0.19.x
    • + +
    • strimzi-0.20.x
    • + +
    • strimzi-0.21.x
    • + +
    • strimzi-0.25.x
    • + +
    • stable
    • + +
    • strimzi-0.22.x
    • + +
    +
    +
      + +
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.20.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.21.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.22.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mta-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    community-kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 0.0.2
    • + +
    • 0.0.3
    • + +
    • 1.0.0
    • + +
    • 1.1.0
    • + +
    • 0.0.1
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[1.0.0 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.0.0 1.1.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[stable 1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eclipse-che +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-all-namespaces
    • + +
    • stable
    • + +
    +
    +
      + +
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • 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.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    ibmcloud-iam-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    iot-simulator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubernetes-imagepuller-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    tf-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sosreport-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    api-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 2.x-stable
    • + +
    +
    +
      + +
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nsm-operator-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hazelcast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    pcc-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • pcc-operator.v0.0.1 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • pcc-operator.v0.1.0 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-ibm-quantum-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",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)
    • + +
    +
    crane-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v1.4
    • + +
    • release-v1.5
    • + +
    +
    +
      + +
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aws-efs-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cluster-manager +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    gitlab-runner-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cert-utils-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.3.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    sap-commerce-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    keda +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keda.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    volume-expander-operator +
      + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    datadog-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    assisted-service-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    • ocm-2.3
    • + +
    +
    +
      + +
    +
    +
      + +
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    wso2am-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibm-block-csi-operator-community +
      + +
    • CRD
    • + +
    +
    +
      + +
    • maintenance-1.5
    • + +
    • stable
    • + +
    +
    +
      + +
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=,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)
    • + +
    +
    +
      + +
    +
    mattermost-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    microcks +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enc-key-sync +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    argocd-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-server-mongodb-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    proactive-node-scaling-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    neuvector-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opendatahub-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • rolling
    • + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[rolling beta 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    3scale-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.10
    • + +
    • threescale-2.6
    • + +
    • threescale-2.7
    • + +
    • threescale-2.8
    • + +
    • threescale-2.9
    • + +
    +
    +
      + +
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.6 threescale-2.7 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.7 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.8 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibmcloud-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    apicurio-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • 2.x
    • + +
    +
    +
      + +
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    azure-service-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • azure-service-operator.v0.37.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    splunk +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    event-streams-topic +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    redis-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • preview
    • + +
    +
    +
      + +
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.2.0 - (label=,max="4.8",channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • redis-operator.v0.3.0 - (label=,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.4.0 - (label=,max=not set,channels=[stable preview],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kiali +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    prometheus-exporter-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeturbo +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    node-problem-detector +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vault-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hive-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • ocm-2.4
    • + +
    • ocm-2.2
    • + +
    • ocm-2.3
    • + +
    • ocm-2.1
    • + +
    +
    +
      + +
    • hive-operator.v1.0.10 - (label=,max="4.8",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="4.8",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="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.2 ocm-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.6 - (label=,max="4.8",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="4.8",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="4.8",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="4.8",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="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.4 ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.5 - (label=,max="4.8",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:YES,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: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)
    • + +
    +
    yaks +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yaks-operator.v0.3.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    radanalytics-spark +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    prometheus +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hedvig-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    t8c +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jaeger +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    skydive-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hyperfoil-bundle +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    klusterlet +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    atlasmap-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cockroachdb +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-3.x
    • + +
    • stable-5.x
    • + +
    +
    +
      + +
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v3.0.7 - (label=,max="4.8",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)
    • + +
    +
    lightbend-console-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eunomia +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opsmx-spinnaker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    egressip-ipam-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    varnish-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • varnish-operator.v0.27.2 - (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.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    multicluster-operators-subscription +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.3
    • + +
    • release-2.4
    • + +
    • release-2.1
    • + +
    • release-2.2
    • + +
    • release-2.0
    • + +
    • alpha
    • + +
    +
    +
      + +
    • multicluster-operators-subscription.v0.1.0 - (label=,max="4.8",channels=[release-2.3 alpha release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.1 - (label=,max="4.8",channels=[release-2.3 alpha release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.2 - (label=,max="4.8",channels=[release-2.3 alpha release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.3 - (label=,max="4.8",channels=[release-2.3 alpha release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.4 - (label=,max="4.8",channels=[release-2.3 alpha release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.5 - (label=,max="4.8",channels=[release-2.3 alpha release-2.1 release-2.2 release-2.4 release-2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.6 - (label=,max="4.8",channels=[release-2.3 release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.7 - (label=,max="4.8",channels=[release-2.3 release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.8 - (label=,max="4.8",channels=[release-2.3 release-2.1 release-2.2 release-2.4 release-2.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.1 - (label=,max="4.8",channels=[release-2.3 release-2.1 release-2.2 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.2 - (label=,max="4.8",channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.3 - (label=,max="4.8",channels=[release-2.3 release-2.1 release-2.2 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.4 - (label=,max="4.8",channels=[release-2.3 release-2.2 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.5 - (label=,max="4.8",channels=[release-2.3 release-2.2 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.6 - (label=,max="4.8",channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • multicluster-operators-subscription.v0.2.7 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.9 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.0 - (label=,max=not set,channels=[release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.1 - (label=,max=not set,channels=[release-2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    keepalived-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • keepalived-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • keepalived-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    victoriametrics-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",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="4.8",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.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.8.0 - (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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hawkbit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    community-windows-machine-config-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • community-windows-machine-config-operator.v0.0.1 - (label==v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • community-windows-machine-config-operator.v0.1.0 - (label==v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • community-windows-machine-config-operator.v1.0.0 - (label==v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    apicast-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    esindex-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    tidb-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    global-load-balancer-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openebs +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enmasse +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    reportportal-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    spinnaker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    camel-k +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-1.3
    • + +
    • stable-1.4
    • + +
    • stable-1.5
    • + +
    +
    +
      + +
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-qiskit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    keycloak-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.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)
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    postgresql-operator-dev4devs-com +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hawtio-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    composable-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    koku-metrics-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    group-sync-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    argocd-operator-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    planetscale +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    integrity-shield-operator +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sealed-secrets-operator-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ham-deploy +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    pystol +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    teiid +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    odoo-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    nexus-operator-m88i +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],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)
    • + +
    +
    +
    + + + + diff --git a/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html b/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html new file mode 100644 index 00000000..77d63fe4 --- /dev/null +++ b/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.7_2021-09-06.html @@ -0,0 +1,6512 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/community-operator-index:v4.7
    • +
    • Image ID: sha256:73e28d682d7b1ed2ff802720ea0cac5f1be93f9e04ba5a5a08a64df1c4c8bdc8
    • +
    • Image Created at: 2021-09-03T13:16:39.36786132Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    ember-csi-community-operator +
      + +
    • CRD
    • + +
    • UNKNOWN
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • ember-csi-community-operator.v0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    special-resource-operator +
      + +
    • UNKNOWN
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    composable-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    apicurio-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • 2.x
    • + +
    +
    +
      + +
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    t8c +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    myvirtualdirectory +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aqua +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 6.2.0
    • + +
    • 5.3.0
    • + +
    • alpha
    • + +
    • 6.0.0
    • + +
    +
    +
      + +
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[5.3.0 alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    multicluster-operators-subscription +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.0
    • + +
    • release-2.1
    • + +
    • release-2.2
    • + +
    • release-2.3
    • + +
    • alpha
    • + +
    • release-2.4
    • + +
    +
    +
      + +
    • multicluster-operators-subscription.v0.1.0 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.1 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.2 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.3 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.4 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.5 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 alpha release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.6 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.7 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.8 - (label=,max="4.8",channels=[release-2.0 release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.1 - (label=,max="4.8",channels=[release-2.1 release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.2 - (label=,max="4.8",channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.3 - (label=,max="4.8",channels=[release-2.1 release-2.2 release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.4 - (label=,max="4.8",channels=[release-2.2 release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.5 - (label=,max="4.8",channels=[release-2.2 release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.6 - (label=,max="4.8",channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • multicluster-operators-subscription.v0.2.7 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.9 - (label=,max=not set,channels=[release-2.3 release-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.0 - (label=,max=not set,channels=[release-2.3 release-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.1 - (label=,max=not set,channels=[release-2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    namespace-configuration-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    atlasmap-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    victoriametrics-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",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="4.8",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.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.8.0 - (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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    esindex-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    horreum-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    node-problem-detector +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    infinispan +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 2.1.x
    • + +
    • dev-preview
    • + +
    • stable
    • + +
    • 1.1.x
    • + +
    • 2.0.x
    • + +
    +
    +
      + +
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[2.1.x dev-preview stable 1.1.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[2.1.x dev-preview 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.1.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibmcloud-iam-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    planetscale +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    tidb-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],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)
    • + +
    +
    mcad-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    alvearie-imaging-ingestion +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    proactive-node-scaling-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-impairment-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    grafana-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • original
    • + +
    +
    +
      + +
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    etcd +
      + +
    +
    +
      + +
    • singlenamespace-alpha
    • + +
    • clusterwide-alpha
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    spark-gcp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    egressip-ipam-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    prometheus-exporter-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openebs +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opendatahub-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    • stable
    • + +
    • rolling
    • + +
    +
    +
      + +
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[beta stable rolling],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[beta stable rolling],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    keepalived-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • keepalived-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • keepalived-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    wso2am-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    argocd-operator-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hawtio-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    odoo-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hedvig-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sealed-secrets-operator-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ditto-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    community-windows-machine-config-operator +
      + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      + +
    +
    +
      + +
    • community-windows-machine-config-operator.v2.0.0 - (label==v4.7,max=not set,channels=[preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • community-windows-machine-config-operator.v2.0.1 - (label==v4.7,max=not set,channels=[preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • community-windows-machine-config-operator.v2.0.2 - (label==v4.7,max=not set,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kogito-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.x
    • + +
    • alpha
    • + +
    +
    +
      + +
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.4.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.5.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.6.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.7.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.8.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.9.0 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.9.1 - (label=,max=not set,channels=[1.x alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    strimzi-kafka-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • strimzi-0.22.x
    • + +
    • strimzi-0.23.x
    • + +
    • strimzi-0.24.x
    • + +
    • strimzi-0.25.x
    • + +
    • stable
    • + +
    • strimzi-0.19.x
    • + +
    • strimzi-0.20.x
    • + +
    • strimzi-0.21.x
    • + +
    +
    +
      + +
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x strimzi-0.21.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.20.x strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable strimzi-0.21.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    konveyor-forklift-operator +
      + +
    +
    +
      + +
    • release-v2.0
    • + +
    +
    +
      + +
    +
    +
      + +
    • konveyor-forklift-operator.v2.0.0 - (label==v4.7,max=not set,channels=[release-v2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    federatorai +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    argocd-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cockroachdb +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-5.x
    • + +
    • stable-3.x
    • + +
    +
    +
      + +
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v3.0.7 - (label=,max="4.8",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)
    • + +
    +
    openshift-ibm-quantum-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    iot-simulator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mta-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    syndesis +
      + +
    +
    +
      + +
    • 1.12.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    azure-service-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • azure-service-operator.v0.37.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    podium-operator-bundle +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    yaks +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yaks-operator.v0.3.0 - (label=,max="4.8",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: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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    dell-csi-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    eclipse-che +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-all-namespaces
    • + +
    +
    +
      + +
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • 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.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    maistraoperator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.0
    • + +
    • stable
    • + +
    +
    +
      + +
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    varnish-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    opsmx-spinnaker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubernetes-imagepuller-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    pcc-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • pcc-operator.v0.0.1 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • pcc-operator.v0.1.0 - (label=v4.5-v4.7,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-manager +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    snapscheduler +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • candidate
    • + +
    +
    +
      + +
    • snapscheduler.v1.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    buildv2-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    radanalytics-spark +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    portworx-essentials +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    koku-metrics-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    postgresql +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v5
    • + +
    +
    +
      + +
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-nfd-operator +
      + +
    +
    +
      + +
    • 4.8.0
    • + +
    +
    +
      + +
    +
    +
      + +
    • node-feature-discovery-operator.v4.8.0 - (label=v4.7,max=not set,channels=[4.8.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rhoas-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    percona-xtradb-cluster-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    oadp-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],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)
    • + +
    +
    spinnaker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",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)
    • + +
    +
    tf-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    +
    starter-kit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],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)
    • + +
    +
    keycloak-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.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)
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    apicurito +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    tagger +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • tagger.v2.1.17 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hawkbit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    volume-expander-operator +
      + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.3.0 - (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)
    • + +
    +
    awss3-operator-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • original
    • + +
    +
    +
      + +
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    sap-commerce-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    reportportal-operator +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • reportportal-operator.v0.0.8 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-qiskit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    jaeger +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    percona-server-mongodb-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enmasse +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibmcloud-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    apicast-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    redis-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.2.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    assisted-service-operator +
      + +
    +
    +
      + +
    • ocm-2.3
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[ocm-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    datadog-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    neuvector-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    skydive-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    teiid +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vault-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    community-kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 0.0.1
    • + +
    • 0.0.2
    • + +
    • stable
    • + +
    • 1.1.0
    • + +
    • 1.0.0
    • + +
    • 0.0.3
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.1 0.0.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[0.0.3 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.1.0 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[1.1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubestone +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubestone.v0.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    api-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 2.x-stable
    • + +
    • stable
    • + +
    +
    +
      + +
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibm-block-csi-operator-community +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • maintenance-1.5
    • + +
    +
    +
      + +
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=,max="4.8",channels=[stable maintenance-1.5],head:NO,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:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kiali +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mattermost-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opentelemetry-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • opentelemetry-operator.v0.17.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    nsm-operator-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    snyk-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    devopsinabox +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    integrity-shield-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],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)
    • + +
    +
    seldon-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    camel-k +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-1.3
    • + +
    • stable-1.4
    • + +
    • stable-1.5
    • + +
    +
    +
      + +
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    eunomia +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hyperfoil-bundle +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gitlab-runner-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    postgresql-operator-dev4devs-com +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • postgresql-operator.v0.1.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hive-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • ocm-2.4
    • + +
    • ocm-2.3
    • + +
    • ocm-2.1
    • + +
    • ocm-2.2
    • + +
    +
    +
      + +
    • hive-operator.v1.0.10 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.11 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.12 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.6 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.7 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.8 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.9 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.0 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    akka-cluster-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    lightbend-console-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    keda +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keda.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubefed +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibm-spectrum-scale-csi-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    aws-efs-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sosreport-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    traefikee-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cert-utils-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    global-load-balancer-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.3.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.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    splunk +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeturbo +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    3scale-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.10
    • + +
    • threescale-2.9
    • + +
    • threescale-2.6
    • + +
    • threescale-2.7
    • + +
    • threescale-2.8
    • + +
    +
    +
      + +
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.6 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    klusterlet +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • klusterlet.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    prometheus +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ham-deploy +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    pulp-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • pulp-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    pystol +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    resource-locker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    enc-key-sync +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    event-streams-topic +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    microcks +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    crane-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v1.4
    • + +
    • release-v1.5
    • + +
    +
    +
      + +
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    must-gather-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    jupyterlab-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    group-sync-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    nexus-operator-m88i +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-jet-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    lib-bucket-provisioner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    +
    + + + diff --git a/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html b/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html new file mode 100644 index 00000000..7c360143 --- /dev/null +++ b/testdata/reports/redhat_community_operator_index/dashboards/maxocp_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-06.html @@ -0,0 +1,6476 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/community-operator-index:v4.8
    • +
    • Image ID: sha256:cac13ecb5bd3d052da83d44b3fd55682e0ad48d231933f701b357655a74ceb3c
    • +
    • Image Created at: 2021-09-03T13:15:45.85350176Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    ember-csi-community-operator +
      + +
    • CRD
    • + +
    • UNKNOWN
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • ember-csi-community-operator.v0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ember-csi-community-operator.v0.9.6 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    tagger +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • tagger.v2.1.17 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    koku-metrics-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • koku-metrics-operator.v0.9.0 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.1 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.2 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.3 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.4 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.5 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.6 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.7 - (label=,max=not set,channels=[alpha beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • koku-metrics-operator.v0.9.8 - (label=,max=not set,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    tackle-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • tackle-operator.v0.0.1 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v0.0.2 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v0.0.3 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v0.0.4 - (label=,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tackle-operator.v1.0.0 - (label=,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-nfd-operator +
      + +
    +
    +
      + +
    • 4.8.0
    • + +
    +
    +
      + +
    +
    +
      + +
    • node-feature-discovery-operator.v4.8.0 - (label=v4.7,max=not set,channels=[4.8.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    nsm-operator-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • nsm-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    proactive-node-scaling-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • proactive-node-scaling-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.10 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.3.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • proactive-node-scaling-operator.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    yaks +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • yaks-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yaks-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yaks-operator.v0.3.0 - (label=,max="4.8",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: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)
    • + +
    +
    mcad-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mcad-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhoas-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhoas-operator.0.6.8 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.2 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.6 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhoas-operator.0.7.8 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mattermost-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mattermost-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ditto-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ditto-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ditto-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-server-mongodb-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-server-mongodb-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-server-mongodb-operator.v1.9.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    infinispan +
      + +
    • CRD
    • + +
    +
    +
      + +
    • dev-preview
    • + +
    • 2.0.x
    • + +
    • 2.1.x
    • + +
    • 1.1.x
    • + +
    • stable
    • + +
    +
    +
      + +
    • infinispan-operator.v0.2.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v0.3.2 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.0.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.0 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.1 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v1.1.2 - (label=,max="4.8",channels=[dev-preview 1.1.x stable 2.0.x 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.0 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.1 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.2 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.3 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.4 - (label=,max="4.8",channels=[dev-preview 2.0.x 2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.5 - (label=,max="4.8",channels=[2.0.x 2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.0.6 - (label=,max="4.8",channels=[2.0.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.0 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.1 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.2 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.3 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.4 - (label=,max="4.8",channels=[2.1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • infinispan-operator.v2.1.5 - (label=,max="4.8",channels=[2.1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    snyk-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • snyk-operator.v1.21.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.30.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.32.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.33.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.36.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.40.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.41.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.50.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.54.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.55.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.59.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • snyk-operator.v1.64.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    awss3-operator-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • original
    • + +
    +
    +
      + +
    • awss3operator.1.0.0 - (label=,max="4.8",channels=[alpha original],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • awss3operator.1.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openebs +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openebsoperator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openebsoperator.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    splunk +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • splunk.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opendatahub-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • rolling
    • + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    • opendatahub-operator.v0.6.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.6.1 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.7.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.8.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v0.9.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.0 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.0.10 - (label=,max="4.8",channels=[rolling beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opendatahub-operator.v1.1.0 - (label=,max="4.8",channels=[rolling beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    lightbend-console-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • lightbend-console-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    integrity-shield-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • integrity-shield-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integrity-shield-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibm-block-csi-operator-community +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-block-csi-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-block-csi-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • ibm-block-csi-operator.v1.6.0 - (label=v4.7-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    klusterlet +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • klusterlet.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • klusterlet.v0.4.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)
    • + +
    +
    group-sync-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • group-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.10 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • group-sync-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • group-sync-operator.v0.0.13 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    vault-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • vault-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • vault-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-qiskit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openshift-qiskit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • openshift-qiskit-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    grafana-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • original
    • + +
    +
    +
      + +
    • grafana-operator.v1.3.0 - (label=,max="4.8",channels=[original],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • grafana-operator.v2.0.0 - (label=,max="4.8",channels=[original],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • grafana-operator.v3.10.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.10.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.6.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.7.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.8.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • grafana-operator.v3.9.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    argocd-operator-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • argocd-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator-helm.v0.0.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    tidb-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • tidb-operator.v1.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • tidb-operator.v1.1.7 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eunomia +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eunomia.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jupyterlab-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • jupyterlab-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    reportportal-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • reportportal-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • reportportal-operator.v0.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • reportportal-operator.v0.0.8 - (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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hyperfoil-bundle +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hyperfoil-operator.v0.12.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hyperfoil-operator.v0.5.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    community-windows-machine-config-operator +
      + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      + +
    +
    +
      + +
    • community-windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mta-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • windup-operator.0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windup-operator.0.0.7 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hedvig-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • hedvig-operator.v1.0.0-beta - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hedvig-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opentelemetry-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • opentelemetry-operator.v0.17.1 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    microcks +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • microcks-operator.v0.1.0 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.2.0 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.2.1 - (label=,max="4.8",channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v0.3.0 - (label=,max="4.8",channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • microcks-operator.v1.3.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cert-utils-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • cert-utils-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.1.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v0.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-utils-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    strimzi-kafka-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • strimzi-0.19.x
    • + +
    • strimzi-0.20.x
    • + +
    • strimzi-0.21.x
    • + +
    • strimzi-0.22.x
    • + +
    • strimzi-0.23.x
    • + +
    • strimzi-0.24.x
    • + +
    • strimzi-0.25.x
    • + +
    • stable
    • + +
    +
    +
      + +
    • strimzi-cluster-operator.v0.11.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.11.1 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.12.1 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.12.2 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.13.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.14.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.15.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.16.2 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.17.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.18.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.19.0 - (label=,max="4.8",channels=[strimzi-0.19.x strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.0 - (label=,max="4.8",channels=[strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.20.1 - (label=,max="4.8",channels=[strimzi-0.20.x strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.21.1 - (label=,max="4.8",channels=[strimzi-0.21.x strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.22.1 - (label=,max="4.8",channels=[strimzi-0.22.x strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • strimzi-cluster-operator.v0.23.0 - (label=,max=not set,channels=[strimzi-0.23.x strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.24.0 - (label=,max=not set,channels=[strimzi-0.24.x strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • strimzi-cluster-operator.v0.25.0 - (label=,max=not set,channels=[strimzi-0.25.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    namespace-configuration-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • namespace-configuration-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • namespace-configuration-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • namespace-configuration-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    spark-gcp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sparkoperator.v2.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    prometheus-exporter-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • prometheus-exporter-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheus-exporter-operator.v0.2.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    myvirtualdirectory +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • myvirtualdirectory.1.0.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    opsmx-spinnaker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • opsmx-spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • opsmx-spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    skydive-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • skydive-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skydive-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sosreport-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • sosreport-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    keda +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • keda.v1.4.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keda.v1.5.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kiali +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • kiali-operator.v0.18.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.10.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.11.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.13.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.15.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.19.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.25.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.26.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.27.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.28.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.29.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.4.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.6.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.7.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.9.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kiali-operator.v1.30.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.31.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.32.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.33.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.34.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.35.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.36.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.37.0 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.38.1 - (label=,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.39.0 - (label=,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    varnish-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • varnish-operator.v0.27.2 - (label=,max=not set,channels=[alpha],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)
    • + +
    +
    cluster-impairment-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • cluster-impairment-operator.v1.0.1 - (label=,max=not set,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-impairment-operator.v1.0.2 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    volume-expander-operator +
      + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • volume-expander-operator.v0.1.9 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • volume-expander-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.1.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • volume-expander-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    victoriametrics-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • victoriametrics-operator.v0.10.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.11.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.12.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.12.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.13.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.14.1 - (label=,max="4.8",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="4.8",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.6.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • victoriametrics-operator.v0.8.0 - (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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    planetscale +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • planetscale-operator.v0.1.7 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • planetscale-operator.v0.1.8 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sealed-secrets-operator-helm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sealed-secrets-operator-helm.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sealed-secrets-operator-helm.v0.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-jet-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hazelcast-jet-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    global-load-balancer-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • global-load-balancer-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • global-load-balancer-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • global-load-balancer-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    node-problem-detector +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • node-problem-detector.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hawtio-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hawtio-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawtio-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    snapscheduler +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • candidate
    • + +
    +
    +
      + +
    • snapscheduler.v1.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • snapscheduler.v2.0.0 - (label=,max=not set,channels=[stable candidate],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    buildv2-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • buildv2-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • buildv2-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • buildv2-operator.v0.3.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    podium-operator-bundle +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • podium-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • podium-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    oadp-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • oadp-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • oadp-operator.v0.2.6 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    tf-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • tf-operator.latest - (label=v4.6,max="4.6",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • tf-operator.v0.0.1-2011 - (label=v4.6,max="4.6",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gitlab-runner-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • gitlab-runner-operator.v1.1.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubeturbo +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • kubeturbo-operator.v6.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v6.4.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubeturbo-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-xtradb-cluster-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-xtradb-cluster-operator.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hawkbit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hawkbit-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hawkbit-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    iot-simulator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • iot-simulator.0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    redis-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    • redis-operator.v0.0.1 - (label=,max="4.8",channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redis-operator.v0.2.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    etcd +
      + +
    +
    +
      + +
    • singlenamespace-alpha
    • + +
    • clusterwide-alpha
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • etcdoperator.v0.6.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • etcdoperator.v0.9.0 - (label=,max="4.8",channels=[clusterwide-alpha singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.2 - (label=,max="4.8",channels=[singlenamespace-alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.2-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4 - (label=,max="4.8",channels=[singlenamespace-alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • etcdoperator.v0.9.4-clusterwide - (label=,max="4.8",channels=[clusterwide-alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    akka-cluster-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • akka-cluster-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • akka-cluster-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    composable-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • composable-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    camel-k +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-1.3
    • + +
    • stable-1.4
    • + +
    • stable-1.5
    • + +
    +
    +
      + +
    • camel-k-operator.v0.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v0.3.3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v0.3.4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m3 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-m4 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.0-rc2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.0.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.1.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.2.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.0 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.1 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.3.2 - (label=,max="4.8",channels=[stable stable-1.3 stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • camel-k-operator.v1.4.0 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.4.1 - (label=,max=not set,channels=[stable stable-1.4 stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.0 - (label=,max=not set,channels=[stable stable-1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • camel-k-operator.v1.5.1 - (label=,max=not set,channels=[stable stable-1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hive-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • ocm-2.3
    • + +
    • ocm-2.4
    • + +
    • ocm-2.1
    • + +
    • ocm-2.2
    • + +
    +
    +
      + +
    • hive-operator.v1.0.10 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.11 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.12 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.13 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.14 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.16 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.17 - (label=,max="4.8",channels=[alpha ocm-2.2 ocm-2.3 ocm-2.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.18 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.19 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.6 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.7 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.8 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.0.9 - (label=,max="4.8",channels=[alpha ocm-2.1 ocm-2.2 ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.0 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.1 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.2 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.3 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.4 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.5 - (label=,max="4.8",channels=[alpha ocm-2.3 ocm-2.4],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.6 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.7 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hive-operator.v1.1.8 - (label=,max=not set,channels=[alpha ocm-2.3 ocm-2.4],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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    3scale-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.6
    • + +
    • threescale-2.7
    • + +
    • threescale-2.8
    • + +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    +
    +
      + +
    • 3scale-community-operator.v0.3.0 - (label=,max="4.8",channels=[threescale-2.6 threescale-2.7 threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.4.0 - (label=,max="4.8",channels=[threescale-2.7 threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.5.1 - (label=,max="4.8",channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.6.0 - (label=,max="4.8",channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-community-operator.v0.7.0 - (label=,max="4.8",channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mongodb-atlas-kubernetes +
      + +
    +
    +
      + +
    • beta
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • 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)
    • + +
    +
    event-streams-topic +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • event-streams-topic.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • event-streams-topic.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    atlasmap-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • atlasmap-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • atlasmap-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aqua +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 6.0.0
    • + +
    • alpha
    • + +
    • 5.3.0
    • + +
    • 6.2.0
    • + +
    +
    +
      + +
    • aqua-operator.v0.0.1 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v0.0.2 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.0 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.1 - (label=,max="4.8",channels=[alpha 5.3.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v5.3.0 - (label=,max="4.8",channels=[5.3.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.0.0 - (label=,max="4.8",channels=[6.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.0 - (label=,max="4.8",channels=[6.2.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    horreum-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • horreum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    federatorai +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • federatorai.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.1.20 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.301 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.551 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.552 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.553 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.556 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.557 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.2.755 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • federatorai.v4.3.958 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cockroachdb +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-3.x
    • + +
    • stable-5.x
    • + +
    +
    +
      + +
    • cockroachdb.v2.0.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v2.1.11 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cockroachdb.v3.0.7 - (label=,max="4.8",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)
    • + +
    +
    jaeger +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • jaeger-operator.v1.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.11.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.14.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.16.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.18.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.19.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.21.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jaeger-operator.v1.8.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • jaeger-operator.v1.24.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    portworx-essentials +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • portworx-essentials.v1.3.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.3.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.4.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • portworx-essentials.v1.5.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nexus-operator-m88i +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • nexus-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • nexus-operator.v0.5.0 - (label=,max="4.8",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)
    • + +
    +
    t8c +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • t8c-operator.v7.16.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.17.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.21.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v7.22.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.0.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • t8c-operator.v8.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    azure-service-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • azure-service-operator.v0.37.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    api-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 2.x-stable
    • + +
    • stable
    • + +
    +
    +
      + +
    • api-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v1.2.3 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • api-operator.v2.0.0 - (label=,max="4.8",channels=[2.x-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    prometheus +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • prometheusoperator.0.14.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.15.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.22.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.27.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.32.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • prometheusoperator.0.37.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • prometheusoperator.0.47.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    crane-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v1.4
    • + +
    • release-v1.5
    • + +
    +
    +
      + +
    • crane-operator.v1.4.3 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.4 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.5 - (label=,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crane-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubernetes-imagepuller-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kubernetes-imagepuller-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubernetes-imagepuller-operator.v0.0.4 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    multicluster-operators-subscription +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.4
    • + +
    • release-2.3
    • + +
    • release-2.1
    • + +
    • release-2.2
    • + +
    • release-2.0
    • + +
    • alpha
    • + +
    +
    +
      + +
    • multicluster-operators-subscription.v0.1.0 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.1 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.2 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.3 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.4 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.5 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.6 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.7 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.1.8 - (label=,max="4.8",channels=[release-2.4 release-2.0 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.1 - (label=,max="4.8",channels=[release-2.4 release-2.1 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.2 - (label=,max="4.8",channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.3 - (label=,max="4.8",channels=[release-2.4 release-2.1 release-2.2 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.4 - (label=,max="4.8",channels=[release-2.4 release-2.2 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.5 - (label=,max="4.8",channels=[release-2.4 release-2.2 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.6 - (label=,max="4.8",channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • multicluster-operators-subscription.v0.2.7 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.8 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.2.9 - (label=,max=not set,channels=[release-2.4 release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.0 - (label=,max=not set,channels=[release-2.4 release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • multicluster-operators-subscription.v0.3.1 - (label=,max=not set,channels=[release-2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    odoo-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • odoo-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • odoo-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    argocd-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • argocd-operator.v0.0.11 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.12 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.13 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.14 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.15 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • argocd-operator.v0.0.9 - (label=,max="4.8",channels=[alpha],head:NO,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.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    lib-bucket-provisioner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • lib-bucket-provisioner.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • lib-bucket-provisioner.v2.0.0 - (label=,max=not set,channels=[alpha],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)
    • + +
    +
    openshift-ibm-quantum-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • openshift-ibm-quantum-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eclipse-che +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-all-namespaces
    • + +
    • stable
    • + +
    +
    +
      + +
    • cheoperator.v7.0.0-beta-5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.0.0-rc-4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.10.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.11.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.12.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.13.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.14.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.15.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.16.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.17.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.18.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.19.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.21.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.22.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.23.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.24.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.25.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.26.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.27.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.28.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.29.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.3.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.7.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.8.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.9.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • 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.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.34.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.0-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1 - (label=,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.1-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • eclipse-che.v7.35.2-all-namespaces - (label=,max=not set,channels=[stable-all-namespaces],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    ham-deploy +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ham-deploy.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cluster-manager +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • cluster-manager.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cluster-manager.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • cluster-manager.v0.4.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    traefikee-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • traefikee-operator.v0.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.3.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v0.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • traefikee-operator.v2.1.1 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    wso2am-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • wso2am-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • wso2am-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aws-efs-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • aws-efs-operator.v0.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-efs-operator.v0.0.5 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibmcloud-iam-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ibmcloud-iam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    pystol +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • pystol.v0.8.17 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    must-gather-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • must-gather-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • must-gather-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • must-gather-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    community-kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.1.0
    • + +
    • 1.0.0
    • + +
    • stable
    • + +
    • 0.0.3
    • + +
    • 0.0.2
    • + +
    • 0.0.1
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v0.0.1 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.2 - (label=v4.5,max="4.8",channels=[0.0.2 0.0.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v0.0.3 - (label=v4.5,max="4.8",channels=[0.0.3 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.0.0 - (label=v4.5,max="4.8",channels=[1.1.0 1.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.1.0 - (label=v4.5,max="4.8",channels=[stable 1.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.2.0 - (label=v4.6,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v1.3.0 - (label=v4.7,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    apicurito +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • apicuritooperator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    resource-locker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • resource-locker-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v0.1.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • resource-locker-operator.v1.0.9 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • resource-locker-operator.v1.1.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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    neuvector-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • neuvector-operator.v0.9.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.0.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.2 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.3 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.4 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.5 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.6 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • neuvector-operator.v1.2.7 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    spinnaker-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • spinnaker-operator.v1.13.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.17.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.17.4 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.20.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • spinnaker-operator.v1.21.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kogito-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • 1.x
    • + +
    +
    +
      + +
    • kogito-operator.v0.11.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.12.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.13.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.14.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.15.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.16.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v0.17.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.0.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.1.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.2.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kogito-operator.v1.3.0 - (label=,max="4.8",channels=[alpha 1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kogito-operator.v1.10.0 - (label=,max=not set,channels=[alpha 1.x],head:YES,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)
    • + +
    +
    egressip-ipam-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • egressip-ipam-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v0.1.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • egressip-ipam-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.6 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.7 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.0.8 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • egressip-ipam-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    radanalytics-spark +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • sparkoperator.v1.0.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.0.7 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.0.8 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sparkoperator.v1.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    konveyor-forklift-operator +
      + +
    +
    +
      + +
    • release-v2.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • konveyor-forklift-operator.v2.1.0 - (label==v4.8,max=not set,channels=[release-v2.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubefed +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubefed-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    maistraoperator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.0
    • + +
    • stable
    • + +
    +
    +
      + +
    • maistraoperator.v1.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.2 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.4 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.6 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.0.8 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.10 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.3 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v1.1.5 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.0 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.1 - (label=,max="4.8",channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • maistraoperator.v2.0.2 - (label=,max="4.8",channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sap-commerce-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • sap-commerce-operator.v0.0.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • sap-commerce-operator.v0.0.4 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    datadog-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • datadog-operator.v0.1.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.2.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.5.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.6.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubestone +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubestone.v0.4.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    apicast-community-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • apicast-community-operator.v0.1.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.1.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.2.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.2.2 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.0 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.3.1 - (label=,max="4.8",channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-community-operator.v0.4.0 - (label=,max="4.8",channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enc-key-sync +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enc-key-sync-operator.v0.0.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enmasse +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enmasse.0.28.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.28.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.29.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.30.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.31.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • enmasse.0.32.2 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    dell-csi-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • dell-csi-operator.v1.0.0 - (label=,max="4.3",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.1.0 - (label=,max="4.4",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.2.0 - (label=,max="4.6",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • dell-csi-operator.v1.3.0 - (label=,max="4.7",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • dell-csi-operator.v1.4.0 - (label=,max="4.7",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    apicurio-registry +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 2.x
    • + +
    • alpha
    • + +
    +
    +
      + +
    • apicurio-registry.v0.0.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • apicurio-registry.v0.0.3-v1.2.3.final - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • apicurio-registry.v0.0.4-v1.3.2.final - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • apicurio-registry-operator.v1.0.0-v2.0.0.final - (label=,max=not set,channels=[2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    seldon-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • seldon-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ibmcloud-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibmcloud-operator.v0.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.10 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.11 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.3 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.4 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.5 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.6 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.7 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.8 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v0.1.9 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibmcloud-operator.v1.0.0 - (label=,max="4.8",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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    keepalived-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • keepalived-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.2.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • keepalived-operator.v1.0.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.1.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.2.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.0 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.2 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.3 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.3.4 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • keepalived-operator.v1.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    keycloak-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.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)
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    postgresql-operator-dev4devs-com +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • postgresql-operator.v0.1.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    alvearie-imaging-ingestion +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    postgresql +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v5
    • + +
    +
    +
      + +
    • postgresoperator.v4.0.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.2.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.3.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.4.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.5.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.1 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.6.2 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • postgresoperator.v4.7.0 - (label=,max="4.8",channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    teiid +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • teiid.0.0.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.0.1.1 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.2.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.3.0 - (label=,max="4.8",channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • teiid.v0.4.0 - (label=,max="4.8",channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    esindex-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • esindex-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    special-resource-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • special-resource-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • special-resource-operator.v4.8.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    starter-kit-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • starter-kit-operator.v0.1.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • starter-kit-operator.v0.2.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • starter-kit-operator.v0.2.1 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    devopsinabox +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • devopsinabox.v0.0.45 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    syndesis +
      + +
    +
    +
      + +
    • 1.12.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • syndesis.v1.12.0 - (label=,max=not set,channels=[1.12.x],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    assisted-service-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    • ocm-2.3
    • + +
    +
    +
      + +
    +
    +
      + +
    • assisted-service-operator.v0.0.1 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.2 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.3 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.4 - (label=,max=not set,channels=[alpha ocm-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.5-rc.1 - (label=,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.6 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • assisted-service-operator.v0.0.7 - (label=,max=not set,channels=[ocm-2.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    ibm-spectrum-scale-csi-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-spectrum-scale-csi-operator.v1.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v1.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.0.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.1.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ibm-spectrum-scale-csi-operator.v2.2.0 - (label=,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • ibm-spectrum-scale-csi-operator.v2.3.0 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hazelcast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hazelcast-operator.v0.3.0 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.1 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.2 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.3 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.5 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.6 - (label=,max="4.8",channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hazelcast-operator.v0.3.7 - (label=,max="4.8",channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • hazelcast-operator.v0.3.4 - (label=,max=not set,channels=[alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    +
    + + + diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html index 1832bd45..2fe53e0d 100644 --- a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html @@ -102,15 +102,14 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    -
    +
    -
    Not complying with the recommendations
    - +
    Using deprecated APIs
    +
    @@ -124,77 +123,119 @@
    Not complying with the recommendations
    - + + - - + - - -
    Package Name
    joget-dx-operator-rhmp +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • - -
    -
    -
      +
    • alpha
    -
      - -
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
      -
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    -
    - -
    -
    Partially complying with the recommendations
    - - - - - - - - - - - - - - + @@ -206,7 +247,7 @@
    Partially complying with the recommendations
    - + @@ -240,33 +277,27 @@
    Partially complying with the recommendations
    - + @@ -278,7 +309,7 @@
    Partially complying with the recommendations
    - + @@ -346,7 +391,7 @@
    Partially complying with the recommendations
    - + @@ -380,7 +421,7 @@
    Partially complying with the recommendations
    - + @@ -416,7 +451,7 @@
    Partially complying with the recommendations
    - + @@ -446,7 +499,7 @@
    Partially complying with the recommendations
    - + @@ -486,79 +529,25 @@
    Partially complying with the recommendations
    - + @@ -570,7 +559,7 @@
    Partially complying with the recommendations
    - + @@ -610,12 +589,14 @@
    Partially complying with the recommendations
    - + @@ -640,7 +621,7 @@
    Partially complying with the recommendations
    - + @@ -674,7 +651,7 @@
    Partially complying with the recommendations
    - + @@ -704,7 +693,7 @@
    Partially complying with the recommendations
    - + @@ -736,12 +727,10 @@
    Partially complying with the recommendations
    - + @@ -768,7 +757,7 @@
    Partially complying with the recommendations
    - + @@ -798,45 +791,29 @@
    Partially complying with the recommendations
    - + @@ -848,7 +825,7 @@
    Partially complying with the recommendations
    - + @@ -878,7 +855,7 @@
    Partially complying with the recommendations
    - + @@ -908,7 +885,7 @@
    Partially complying with the recommendations
    - + @@ -938,7 +915,7 @@
    Partially complying with the recommendations
    - + @@ -980,7 +945,7 @@
    Partially complying with the recommendations
    - + @@ -1024,14 +975,12 @@
    Partially complying with the recommendations
    - + @@ -1058,7 +1005,7 @@
    Partially complying with the recommendations
    - + @@ -1088,7 +1057,7 @@
    Partially complying with the recommendations
    - + @@ -1120,7 +1097,7 @@
    Partially complying with the recommendations
    - + @@ -1150,7 +1127,7 @@
    Partially complying with the recommendations
    - + @@ -1182,7 +1159,7 @@
    Partially complying with the recommendations
    - + @@ -1224,7 +1189,7 @@
    Partially complying with the recommendations
    - + @@ -1276,7 +1219,7 @@
    Partially complying with the recommendations
    - + @@ -1306,7 +1249,7 @@
    Partially complying with the recommendations
    - + @@ -1346,19 +1279,19 @@
    Partially complying with the recommendations
    - + @@ -1378,7 +1319,7 @@
    Partially complying with the recommendations
    - + @@ -1408,7 +1349,7 @@
    Partially complying with the recommendations
    - + @@ -1438,7 +1385,7 @@
    Partially complying with the recommendations
    - + @@ -1488,7 +1415,7 @@
    Partially complying with the recommendations
    - + @@ -1518,7 +1449,7 @@
    Partially complying with the recommendations
    - + @@ -1550,7 +1483,7 @@
    Partially complying with the recommendations
    - + @@ -1580,7 +1513,7 @@
    Partially complying with the recommendations
    - + @@ -1614,7 +1543,7 @@
    Partially complying with the recommendations
    - + @@ -1644,7 +1573,7 @@
    Partially complying with the recommendations
    - + @@ -1686,7 +1605,7 @@
    Partially complying with the recommendations
    - + @@ -1716,51 +1639,25 @@
    Partially complying with the recommendations
    - + @@ -1772,7 +1669,7 @@
    Partially complying with the recommendations
    - + @@ -1802,7 +1699,7 @@
    Partially complying with the recommendations
    - + @@ -1832,7 +1729,7 @@
    Partially complying with the recommendations
    - + @@ -1874,7 +1759,7 @@
    Partially complying with the recommendations
    - + @@ -1904,7 +1789,7 @@
    Partially complying with the recommendations
    - + @@ -1934,7 +1821,7 @@
    Partially complying with the recommendations
    - + @@ -1964,12 +1857,14 @@
    Partially complying with the recommendations
    - + @@ -1994,7 +1889,7 @@
    Partially complying with the recommendations
    - + @@ -2036,7 +1939,7 @@
    Partially complying with the recommendations
    - + @@ -2066,7 +1971,7 @@
    Partially complying with the recommendations
    - + @@ -2108,7 +2001,7 @@
    Partially complying with the recommendations
    - + @@ -2138,12 +2035,14 @@
    Partially complying with the recommendations
    - + @@ -2174,14 +2067,12 @@
    Partially complying with the recommendations
    - + @@ -2206,7 +2109,7 @@
    Partially complying with the recommendations
    - + @@ -2254,25 +2139,51 @@
    Partially complying with the recommendations
    - + @@ -2284,7 +2195,7 @@
    Partially complying with the recommendations
    - + @@ -2314,14 +2225,12 @@
    Partially complying with the recommendations
    - + @@ -2346,7 +2257,7 @@
    Partially complying with the recommendations
    - + @@ -2376,7 +2293,7 @@
    Partially complying with the recommendations
    - + @@ -2406,7 +2335,7 @@
    Partially complying with the recommendations
    - + @@ -2436,7 +2373,7 @@
    Partially complying with the recommendations
    - + @@ -2468,7 +2403,7 @@
    Partially complying with the recommendations
    - + @@ -2508,7 +2433,7 @@
    Partially complying with the recommendations
    - + @@ -2538,27 +2463,33 @@
    Partially complying with the recommendations
    - + @@ -2570,7 +2501,7 @@
    Partially complying with the recommendations
    - + @@ -2606,7 +2551,7 @@
    Partially complying with the recommendations
    - + @@ -2638,7 +2585,7 @@
    Partially complying with the recommendations
    - + - + @@ -2698,7 +2649,7 @@
    Partially complying with the recommendations
    - + @@ -2732,7 +2679,7 @@
    Partially complying with the recommendations
    - + @@ -2770,7 +2711,7 @@
    Partially complying with the recommendations
    - + @@ -2800,7 +2743,7 @@
    Partially complying with the recommendations
    - + @@ -2830,7 +2773,7 @@
    Partially complying with the recommendations
    - + @@ -2860,7 +2805,7 @@
    Partially complying with the recommendations
    - + @@ -2890,12 +2835,14 @@
    Partially complying with the recommendations
    - + @@ -2922,7 +2877,7 @@
    Partially complying with the recommendations
    - + @@ -2952,7 +2919,7 @@
    Partially complying with the recommendations
    - + @@ -2986,10 +2949,12 @@
    Partially complying with the recommendations
    - + @@ -3016,7 +2981,7 @@
    Partially complying with the recommendations
    - + @@ -3046,7 +3011,7 @@
    Partially complying with the recommendations
    - + @@ -3078,7 +3041,7 @@
    Partially complying with the recommendations
    - + @@ -3110,27 +3073,25 @@
    Partially complying with the recommendations
    - + @@ -3142,7 +3103,7 @@
    Partially complying with the recommendations
    - + @@ -3174,7 +3133,7 @@
    Partially complying with the recommendations
    - + @@ -3204,7 +3165,7 @@
    Partially complying with the recommendations
    - + @@ -3238,7 +3195,7 @@
    Partially complying with the recommendations
    - + @@ -3268,7 +3237,7 @@
    Partially complying with the recommendations
    - + @@ -3298,7 +3277,7 @@
    Partially complying with the recommendations
    - + @@ -3333,7 +3312,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    xcrypt-operator-rhmpmongodb-enterprise-rhmp
    • CRD
    • +
    • UNKNOWN
    • +
      -
    • alpha
    • +
    • stable
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-enterprise.v0.3.2 - (label=v4.5,v4.6,max=not set,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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,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=not set,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=not set,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=not set,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.4 - (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=not set,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)
    cloudhedge-rhmpdb2-zos-db-operator-rhmp
      @@ -224,11 +265,7 @@
      Partially complying with the recommendations
      -
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    t8c-certified-rhmpcitrix-ingress-controller-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    presto-operator-rhmpseldon-operator-certified-rhmp
      @@ -289,6 +320,8 @@
      Partially complying with the recommendations
      +
    • stable
    • +
    • alpha
    @@ -296,7 +329,19 @@
    Partially complying with the recommendations
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    appranix-cps-rhmpmongodb-enterprise-advanced-ibm-rhmp
      @@ -359,16 +404,12 @@
      Partially complying with the recommendations
    • stable
    • -
    • deprecated
    • -
      -
    • 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)
    • +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    densify-operator-rhmpopenunison-ocp-certified-rhmp
      @@ -391,20 +432,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • v1.0
    • +
    • stable
      -
    • 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)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    open-enterprise-spinnaker-rhmpkubeturbo-certified-rhmp
      @@ -427,14 +462,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    joget-dx-operator-rhmpfederatorai-certified-rhmp
      @@ -457,24 +510,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-rhmpjoget-openshift-operator-rhmp
    • CRD
    • -
    • UNKNOWN
    • -
      -
    • stable
    • +
    • alpha
      -
    • mongodb-enterprise.v0.3.2 - (label=v4.5,v4.6,max=not set,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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,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=not set,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=not set,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=not set,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.4 - (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=not set,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)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operator-rhmpmf-cics-tg-operator-rhmp
      @@ -583,22 +572,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operator-certified-rhmpsnyk-operator-marketplace-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -628,7 +609,7 @@
    Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-fabric-operator-rhmpkpow-io-certified-rhmp
      @@ -653,16 +634,12 @@
      Partially complying with the recommendations
    • 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)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    joget-openshift-operator-rhmpkubemq-operator-marketplace-rhmp
      @@ -692,7 +669,19 @@
      Partially complying with the recommendations
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    portshift-controller-operator-rhmphpe-ezmeral-csi-operator-rhmp
      @@ -715,16 +704,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • portshift-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-with-ingress-controller-operator-rhmpakka-cluster-operator-certified-rhmp
      -
    • ClusterRole
    • -
    • CRD
    @@ -749,14 +738,14 @@
    Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    insightedge-enterprise-operator2-rhmpperceptilabs-operator-package-rhmp
      @@ -779,14 +768,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    neuvector-certified-operator-rhmpyugabyte-platform-operator-bundle-rhmp
    • CRD
    • +
    • ClusterRole
    • +
      -
    • beta
    • +
    • alpha
      -
    • 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)
    • +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubeplus-rhmppercona-xtradb-cluster-operator-certified-rhmp
      @@ -859,14 +836,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator-certified-rhmppresto-operator-rhmp
      @@ -889,14 +866,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    vprotect-operator-rhmpcic-operator-with-crds-rhmp
      @@ -926,7 +903,7 @@
      Partially complying with the recommendations
      -
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    oneagent-certified-rhmpsysdig-certified-rhmp
      @@ -949,26 +926,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operator-certified-rhmpstorageos2-rhmp
      @@ -993,26 +958,12 @@
      Partially complying with the recommendations
    • stable
    • -
    • alpha
    • -
      -
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    yugabyte-platform-operator-bundle-rhmpeddi-operator-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -1044,9 +993,7 @@
    Partially complying with the recommendations
      -
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rapidbiz-operator-certified-rhmpdata-explorer-operator-certified-rhmp
      @@ -1076,7 +1023,29 @@
      Partially complying with the recommendations
      -
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    zabbix-operator-certified-rhmpmemql-certified-rhmp
      @@ -1099,16 +1068,24 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • alpha
      -
    • zabbix-operator-certified.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • memsql-operator.v0.0.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:YES,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)
    mf-cics-tg-operator-rhmpappdynamics-operator-rhmp
      @@ -1138,7 +1115,7 @@
      Partially complying with the recommendations
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-hub-operator-rhmpgrowth-stack-operator-certified-rhmp
      @@ -1161,16 +1138,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • growth-stack-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • growth-stack-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-certifai-operator-rhmpinsightedge-enterprise-operator2-rhmp
      @@ -1193,26 +1170,14 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certified-rhmpmodel-builder-for-vision-certified-rhmp
      @@ -1235,36 +1200,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cnvrg-operator-marketplace-rhmpkubeplus-rhmp
      @@ -1294,7 +1237,7 @@
      Partially complying with the recommendations
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    memql-certified-rhmptraefikee-redhat-certified-rhmp
      @@ -1317,24 +1260,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-marketplace-rhmpk10-kasten-operator-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      +
    • alpha
    • +
    • stable
    @@ -1366,7 +1299,15 @@
    Partially complying with the recommendations
      -
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anaconda-team-edition-rhmppercona-server-mongodb-operator-certified-rhmp
      @@ -1389,14 +1330,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    node-red-operator-rhm-certified-rhmpdensify-operator-rhmp
      @@ -1421,12 +1362,18 @@
      Partially complying with the recommendations
    • alpha
    • +
    • v1.0
    • +
      -
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    instana-agent-rhmpxcrypt-operator-rhmp
      @@ -1449,34 +1396,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-advanced-ibm-rhmpcloudhedge-rhmp
      @@ -1499,14 +1426,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    timemachine-operator-rhmpdatadog-operator-certified-rhmp
      @@ -1529,6 +1460,8 @@
      Partially complying with the recommendations
      +
    • beta
    • +
    • alpha
    @@ -1536,9 +1469,9 @@
    Partially complying with the recommendations
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • timemachine-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certified-rhmprobin-storage-express-rhmp
      @@ -1561,14 +1494,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certified-rhmprapidbiz-operator-certified-rhmp
      @@ -1591,8 +1524,6 @@
      Partially complying with the recommendations
      -
    • beta
    • -
    • alpha
    @@ -1600,9 +1531,7 @@
    Partially complying with the recommendations
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    armory-operator-rhmpfep-ansible-operator
      @@ -1625,14 +1554,14 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • stable
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-xray-operator-rhmpcan-operator-rhmp
      @@ -1664,17 +1593,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    starburst-enterprise-helm-operator-rhmpappranix-cps-rhmp
      @@ -1697,14 +1616,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
    • + +
    • deprecated
      -
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    nastel-navigator-operator-certified-rhmpredis-enterprise-operator-cert-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • preview
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedruntime-component-operator-certified-rhmp
      @@ -1790,7 +1687,7 @@
      Partially complying with the recommendations
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatorstarburst-enterprise-helm-operator-rhmp
      @@ -1813,14 +1710,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-enterprise-certified-rhmpkong-offline-operator-rhmp
      @@ -1850,19 +1747,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    atomicorp-helm-operator-certified-rhmpenterprise-operator-rhmp
      @@ -1892,7 +1777,7 @@
      Partially complying with the recommendations
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operator-with-crds-rhmpcortex-healthcare-hub-operator-rhmp
      @@ -1915,14 +1800,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    runtime-component-operator-certified-rhmpcert-manager-operator-rhmp
      @@ -1945,14 +1832,20 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
    • + +
    • stable
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    here-service-operator-certified-rhmpas400rpc-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1982,7 +1877,7 @@
    Partially complying with the recommendations
      -
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certified-rhmpinstana-agent-rhmp
      @@ -2005,26 +1900,34 @@
      Partially complying with the recommendations
      -
    • latest
    • - -
    • alpha
    • - -
    • 6.2
    • - -
    • 6.0
    • +
    • beta
      -
    • aqua-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • instana-agent-operator.v0.2.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v5.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • instana-agent-operator.v0.2.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • instana-agent-operator.v0.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v6.2.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-trial-rhmpportshift-controller-operator-rhmp
      @@ -2047,14 +1950,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    kubemq-operator-marketplace-rhmpmf-cics-ts-operator-rhmp
      @@ -2084,19 +1989,7 @@
      Partially complying with the recommendations
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    redis-enterprise-operator-cert-rhmporca-rhmp
      @@ -2119,14 +2012,18 @@
      Partially complying with the recommendations
      -
    • preview
    • +
    • beta
      -
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    aws-event-sources-operator-certified-rhmpako-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2156,13 +2055,7 @@
    Partially complying with the recommendations
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-ingress-controller-operator-rhmphazelcast-enterprise-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2194,7 +2085,19 @@
    Partially complying with the recommendations
      -
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    kubeturbo-certified-rhmpcyberarmor-operator-certified-rhmp
      @@ -2217,32 +2120,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certified-rhmpnastel-navigator-operator-certified-rhmp
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    sysdig-certified-rhmpconfluent-for-kubernetes-rhmp
      @@ -2302,7 +2213,7 @@
      Partially complying with the recommendations
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    can-operator-rhmpstonebranch-universalagent-operator-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2334,7 +2243,9 @@
    Partially complying with the recommendations
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    aci-containers-operatoraws-event-sources-operator-certified-rhmp
      @@ -2357,14 +2268,20 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kpow-io-certified-rhmpcortex-certifai-operator-rhmp
      @@ -2387,14 +2304,26 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • stable
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certified-rhmpuma-operator-rhmp
      @@ -2417,14 +2346,22 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    growth-stack-operator-certified-rhmprocketchat-operator-certified
      @@ -2447,16 +2384,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • 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)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    k8s-triliovault-rhmpivory-server-app-rhmp
      @@ -2479,24 +2414,14 @@
      Partially complying with the recommendations
      -
    • cluster
    • - -
    • namespaced
    • +
    • alpha
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-redhat-certified-rhmprobin-storage-trial-rhmp
      @@ -2526,7 +2451,7 @@
      Partially complying with the recommendations
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    jtrac-app-operator-rhmpt8c-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    cert-manager-operator-rhmpneuvector-certified-operator-rhmp
      @@ -2581,20 +2512,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • stable
    • +
    • beta
      -
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],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)
    • -
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    cpx-cic-operator-rhmpcortex-fabric-operator-rhmp
      @@ -2619,14 +2564,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    federatorai-certified-rhmp
      @@ -2649,26 +2596,28 @@
      Partially complying with the recommendations
      -
    • stable
    • -
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      +
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    storageos2-rhmptimemachine-operator-rhmp
      @@ -2679,14 +2628,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • timemachine-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    orca-rhmpvprotect-operator-rhmp
      @@ -2709,18 +2660,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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)
    • +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    uma-operator-rhmphazelcast-jet-enterprise-operator-rhmp
      @@ -2750,15 +2697,9 @@
      Partially complying with the recommendations
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    db2-zos-db-operator-rhmpcpx-cic-operator-rhmp
      @@ -2788,7 +2729,9 @@
      Partially complying with the recommendations
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eddi-operator-certified-rhmpnode-red-operator-rhm-certified-rhmp
      @@ -2818,7 +2761,7 @@
      Partially complying with the recommendations
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    enterprise-operator-rhmpzabbix-operator-certified-rhmp
      @@ -2841,14 +2784,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • lts
      -
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-express-rhmpcnvrg-operator-marketplace-rhmp
      @@ -2871,14 +2816,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-enterprise-operator-rhmpnastel-xray-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2908,9 +2855,17 @@
    Partially complying with the recommendations
      -
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nastel-xray-operator.v1.323.3 - (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)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operator-rhmpaqua-operator-certified-rhmp
      @@ -2933,14 +2888,26 @@
      Partially complying with the recommendations
      +
    • latest
    • +
    • alpha
    • +
    • 6.2
    • + +
    • 6.0
    • +
      -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-ezmeral-csi-operator-rhmparmory-operator-rhmp
      @@ -2963,18 +2930,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • v1alpha2
      -
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    confluent-for-kubernetes-rhmpcitrix-cpx-with-ingress-controller-operator-rhmp
      +
    • ClusterRole
    • +
    • CRD
    @@ -2997,14 +2962,14 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ivory-server-app-rhmphere-service-operator-certified-rhmp
      @@ -3034,7 +2999,7 @@
      Partially complying with the recommendations
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-healthcare-hub-operator-rhmpopen-enterprise-spinnaker-rhmp
      @@ -3057,16 +3022,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ako-operator-rhmpjtrac-app-operator-rhmp
      @@ -3098,7 +3061,7 @@
      Partially complying with the recommendations
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    as400rpc-operator-rhmpanaconda-team-edition-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • beta
      -
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    stonebranch-universalagent-operator-certified-rhmpatomicorp-helm-operator-certified-rhmp
      @@ -3160,9 +3121,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-ts-operator-rhmpcortex-hub-operator-rhmp
      @@ -3185,14 +3144,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    perceptilabs-operator-package-rhmprobin-storage-enterprise-rhmp
      @@ -3222,11 +3183,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-enterprise-rhmponeagent-certified-rhmp
      @@ -3249,14 +3206,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    kong-offline-operator-rhmpk8s-triliovault-rhmp
      @@ -3279,14 +3248,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • cluster
    • + +
    • namespaced
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    model-builder-for-vision-certified-rhmpaci-containers-operator
      @@ -3316,7 +3295,7 @@
      Partially complying with the recommendations
      -
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -3348,7 +3327,7 @@
    Fully complying with the recommendations
    - + @@ -3369,14 +3348,14 @@
    Fully complying with the recommendations
    - + @@ -3397,48 +3376,42 @@
    Fully complying with the recommendations
    - + - + @@ -3459,14 +3432,14 @@
    Fully complying with the recommendations
    - + - + @@ -3515,14 +3488,14 @@
    Fully complying with the recommendations
    - + - + - + @@ -3601,14 +3574,14 @@
    Fully complying with the recommendations
    - + @@ -3629,14 +3602,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + @@ -3785,22 +3766,26 @@
    Fully complying with the recommendations
    - + - + - + - + @@ -3905,14 +3884,14 @@
    Fully complying with the recommendations
    - + diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html index e0c4c05f..a2c77cbc 100644 --- a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html @@ -102,66 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    nutanixcsioperator-rhmpanzo-operator-rhmp
      @@ -3357,7 +3336,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sumologic-kubernetes-collection-helm-operator-rhmpanzograph-operator-rhmp
      @@ -3385,7 +3364,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-deploy-operator-rhmpgpu-operator-certified-rhmp
      -
    • CRD
    • -
      -
    • alpha
    • - -
    • stable
    • +
    • v1.8
      -
    • 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)
    • +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    ovms-operator-rhmpentando-k8s-operator-rhmp
      @@ -3447,7 +3420,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operator-rhmpvfunction-server-operator-rhmp
      @@ -3487,14 +3460,14 @@
      Fully complying with the recommendations
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operator-rhmpsumologic-kubernetes-collection-helm-operator-rhmp
      @@ -3503,7 +3476,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    mongodb-atlas-kubernetes-rhmpcockroachdb-certified-rhmp
      @@ -3533,6 +3506,8 @@
      Fully complying with the recommendations
    • beta
    • +
    • stable
    • +
    @@ -3543,14 +3518,14 @@
    Fully complying with the recommendations
      -
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operator-rhmpop-svc-jenkins-rhmp
      @@ -3571,14 +3546,14 @@
      Fully complying with the recommendations
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certified-rhmpovms-operator-rhmp
      @@ -3587,9 +3562,7 @@
      Fully complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gpu-operator-certified-rhmpnutanixcsioperator-rhmp
      @@ -3617,7 +3590,7 @@
      Fully complying with the recommendations
      -
    • v1.8
    • +
    • beta
      -
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operator-rhmphpe-csi-operator-rhmp
      @@ -3657,19 +3630,17 @@
      Fully complying with the recommendations
      -
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-rhmplinstor-operator-rhmp
      -
    • CRD
    • -
    @@ -3677,67 +3648,67 @@
    Fully complying with the recommendations
  • stable
  • +
  • alpha
  • +
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    op-svc-jenkins-rhmpcrunchy-postgres-operator-rhmp
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
    • + +
    • v5
      +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    linstor-operator-rhmpcouchbase-enterprise-certified-rhmp
      +
    • CRD
    • +
    @@ -3745,26 +3716,36 @@
    Fully complying with the recommendations
  • stable
  • -
  • alpha
  • -
      +
    • 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)
    • +
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    iomesh-operator-rhmpccm-node-agent-operator-rhmp
      @@ -3773,7 +3754,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-rhmpseldon-deploy-operator-rhmp
      +
    • CRD
    • +
      +
    • alpha
    • +
    • stable
    @@ -3808,19 +3793,21 @@
    Fully complying with the recommendations
      +
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,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)
    minio-operator-rhmpanzounstructured-operator-rhmp
      @@ -3841,19 +3828,17 @@
      Fully complying with the recommendations
      -
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    crunchy-postgres-operator-rhmpiomesh-operator-rhmp
      -
    • CRD
    • -
    @@ -3861,30 +3846,24 @@
    Fully complying with the recommendations
  • stable
  • -
  • v5
  • -
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzo-operator-rhmpmongodb-atlas-kubernetes-rhmp
      @@ -3893,7 +3872,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    anzograph-operator-rhmpminio-operator-rhmp
      @@ -3933,7 +3912,7 @@
      Fully complying with the recommendations
      -
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    - - - - - - - - - - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
      - -
    • CRD
    • - -
    -
    -
      - -
    -
    -
      - -
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
      - -
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -176,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -212,7 +153,7 @@
    Partially complying with the recommendations
    - + @@ -254,7 +183,7 @@
    Partially complying with the recommendations
    - + @@ -286,7 +217,7 @@
    Partially complying with the recommendations
    - + @@ -316,7 +247,7 @@
    Partially complying with the recommendations
    - + @@ -356,7 +277,7 @@
    Partially complying with the recommendations
    - + @@ -386,7 +307,7 @@
    Partially complying with the recommendations
    - + @@ -466,7 +337,7 @@
    Partially complying with the recommendations
    - + @@ -496,14 +369,12 @@
    Partially complying with the recommendations
    - + @@ -552,7 +399,7 @@
    Partially complying with the recommendations
    - + @@ -582,7 +441,7 @@
    Partially complying with the recommendations
    - + @@ -612,7 +471,7 @@
    Partially complying with the recommendations
    - + @@ -644,7 +501,7 @@
    Partially complying with the recommendations
    - + @@ -684,7 +541,7 @@
    Partially complying with the recommendations
    - + @@ -714,7 +585,7 @@
    Partially complying with the recommendations
    - + @@ -744,7 +615,7 @@
    Partially complying with the recommendations
    - + @@ -778,7 +645,7 @@
    Partially complying with the recommendations
    - + @@ -814,14 +675,12 @@
    Partially complying with the recommendations
    - + @@ -846,7 +705,7 @@
    Partially complying with the recommendations
    - + @@ -878,7 +735,7 @@
    Partially complying with the recommendations
    - + @@ -910,7 +765,7 @@
    Partially complying with the recommendations
    - + @@ -940,25 +795,27 @@
    Partially complying with the recommendations
    - + @@ -970,7 +827,7 @@
    Partially complying with the recommendations
    - + @@ -1000,37 +857,25 @@
    Partially complying with the recommendations
    - + @@ -1042,7 +887,7 @@
    Partially complying with the recommendations
    - + @@ -1094,12 +917,14 @@
    Partially complying with the recommendations
    - + @@ -1124,7 +949,7 @@
    Partially complying with the recommendations
    - + @@ -1154,7 +979,7 @@
    Partially complying with the recommendations
    - + @@ -1188,7 +1009,7 @@
    Partially complying with the recommendations
    - + @@ -1218,10 +1039,12 @@
    Partially complying with the recommendations
    - + @@ -1248,7 +1071,7 @@
    Partially complying with the recommendations
    - + @@ -1290,7 +1101,7 @@
    Partially complying with the recommendations
    - + - + @@ -1354,27 +1213,27 @@
    Partially complying with the recommendations
    - + @@ -1386,14 +1245,14 @@
    Partially complying with the recommendations
    - + @@ -1418,7 +1277,7 @@
    Partially complying with the recommendations
    - + @@ -1448,7 +1311,7 @@
    Partially complying with the recommendations
    - + @@ -1478,7 +1361,7 @@
    Partially complying with the recommendations
    - + @@ -1510,7 +1401,7 @@
    Partially complying with the recommendations
    - + @@ -1540,7 +1431,7 @@
    Partially complying with the recommendations
    - + @@ -1574,7 +1461,7 @@
    Partially complying with the recommendations
    - + @@ -1604,7 +1491,7 @@
    Partially complying with the recommendations
    - + @@ -1634,7 +1521,7 @@
    Partially complying with the recommendations
    - + @@ -1664,7 +1551,7 @@
    Partially complying with the recommendations
    - + @@ -1696,7 +1583,7 @@
    Partially complying with the recommendations
    - + @@ -1740,7 +1613,7 @@
    Partially complying with the recommendations
    - + @@ -1790,7 +1647,7 @@
    Partially complying with the recommendations
    - + @@ -1820,7 +1677,7 @@
    Partially complying with the recommendations
    - + @@ -1850,12 +1711,14 @@
    Partially complying with the recommendations
    - + @@ -1880,7 +1745,7 @@
    Partially complying with the recommendations
    - + @@ -1910,14 +1775,12 @@
    Partially complying with the recommendations
    - + @@ -1942,7 +1817,7 @@
    Partially complying with the recommendations
    - + @@ -1972,7 +1855,7 @@
    Partially complying with the recommendations
    - + @@ -2002,7 +1889,7 @@
    Partially complying with the recommendations
    - + @@ -2032,7 +1919,7 @@
    Partially complying with the recommendations
    - + @@ -2074,7 +1949,7 @@
    Partially complying with the recommendations
    - + @@ -2124,7 +1979,7 @@
    Partially complying with the recommendations
    - + @@ -2162,7 +2009,7 @@
    Partially complying with the recommendations
    - + @@ -2192,7 +2045,7 @@
    Partially complying with the recommendations
    - + @@ -2222,7 +2095,7 @@
    Partially complying with the recommendations
    - + @@ -2254,14 +2135,14 @@
    Partially complying with the recommendations
    - + @@ -2288,7 +2167,7 @@
    Partially complying with the recommendations
    - + @@ -2318,7 +2203,7 @@
    Partially complying with the recommendations
    - + @@ -2348,7 +2233,7 @@
    Partially complying with the recommendations
    - + @@ -2388,7 +2263,7 @@
    Partially complying with the recommendations
    - + @@ -2422,7 +2293,7 @@
    Partially complying with the recommendations
    - + @@ -2452,7 +2329,7 @@
    Partially complying with the recommendations
    - + @@ -2482,7 +2361,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -2530,7 +2435,7 @@
    Partially complying with the recommendations
    - + @@ -2572,27 +2467,25 @@
    Partially complying with the recommendations
    - + @@ -2604,7 +2497,7 @@
    Partially complying with the recommendations
    - + @@ -2634,7 +2529,7 @@
    Partially complying with the recommendations
    - + @@ -2664,7 +2563,7 @@
    Partially complying with the recommendations
    - + @@ -2704,7 +2597,7 @@
    Partially complying with the recommendations
    - + @@ -2742,7 +2627,7 @@
    Partially complying with the recommendations
    - + @@ -2772,7 +2679,7 @@
    Partially complying with the recommendations
    - + @@ -2802,12 +2709,14 @@
    Partially complying with the recommendations
    - + @@ -2832,7 +2751,7 @@
    Partially complying with the recommendations
    - + @@ -2862,7 +2781,7 @@
    Partially complying with the recommendations
    - + @@ -2896,7 +2823,7 @@
    Partially complying with the recommendations
    - + @@ -2936,7 +2855,7 @@
    Partially complying with the recommendations
    - + @@ -2968,7 +2885,7 @@
    Partially complying with the recommendations
    - + @@ -3002,14 +2927,14 @@
    Partially complying with the recommendations
    - + @@ -3034,7 +2983,7 @@
    Partially complying with the recommendations
    - + @@ -3076,12 +3021,14 @@
    Partially complying with the recommendations
    - + @@ -3108,7 +3053,7 @@
    Partially complying with the recommendations
    - + @@ -3144,7 +3093,7 @@
    Partially complying with the recommendations
    - + @@ -3174,7 +3123,7 @@
    Partially complying with the recommendations
    - + @@ -3204,7 +3171,7 @@
    Partially complying with the recommendations
    - + @@ -3234,7 +3203,7 @@
    Partially complying with the recommendations
    - + @@ -3264,7 +3233,7 @@
    Partially complying with the recommendations
    - + @@ -3299,7 +3278,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    aws-event-sources-operator-certified-rhmptraefikee-redhat-certified-rhmp
      @@ -187,20 +134,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-enterprise-certified-rhmpaci-containers-operator
      @@ -223,26 +164,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-hub-operator-rhmpappranix-cps-rhmp
      @@ -267,14 +196,16 @@
      Partially complying with the recommendations
    • stable
    • +
    • deprecated
    • +
      -
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    • +
    • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],head:YES,defaultChannel:NO, deprecated:NO)
    confluent-for-kubernetes-rhmppresto-operator-rhmp
      @@ -297,14 +228,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    joget-dx-operator-rhmpstarburst-enterprise-helm-operator-rhmp
      @@ -334,17 +265,7 @@
      Partially complying with the recommendations
      -
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    enterprise-operator-rhmpopen-enterprise-spinnaker-rhmp
      @@ -374,7 +295,7 @@
      Partially complying with the recommendations
      -
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-rhmpnode-red-operator-rhm-certified-rhmp
      @@ -397,64 +318,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,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.4 - (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)
    • +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-redhat-certified-rhmpgrowth-stack-operator-certified-rhmp
      @@ -477,14 +348,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    nastel-navigator-operator-certified-rhmpjoget-openshift-operator-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -516,31 +387,7 @@
    Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certified-rhmponeagent-certified-rhmp
      @@ -563,14 +410,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    robin-storage-trial-rhmpcyberarmor-operator-certified-rhmp
      @@ -593,14 +452,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    zabbix-operator-certified-rhmpstorageos2-rhmp
      @@ -623,16 +482,14 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operator-rhmpmemql-certified-rhmp
      @@ -655,8 +512,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -664,15 +519,17 @@
    Partially complying with the recommendations
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • memsql-operator.v0.0.2 - (label=v4.6,v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,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)
    • -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,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)
    • -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,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)
    • -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    storageos2-rhmpseldon-operator-certified-rhmp
      @@ -697,12 +554,26 @@
      Partially complying with the recommendations
    • stable
    • +
    • alpha
    • +
      -
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    xcrypt-operator-rhmpmongodb-enterprise-advanced-ibm-rhmp
      @@ -725,14 +596,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-ezmeral-csi-operator-rhmpcnvrg-operator-marketplace-rhmp
      @@ -755,18 +626,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cert-manager-operator-rhmpinsightedge-enterprise-operator2-rhmp
      @@ -791,18 +658,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-marketplace-rhmpmodel-builder-for-vision-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -834,7 +693,7 @@
    Partially complying with the recommendations
      -
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cpx-cic-operator-rhmprobin-storage-express-rhmp
      @@ -857,16 +716,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    portshift-controller-operator-rhmpkong-offline-operator-rhmp
      @@ -896,9 +753,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    model-builder-for-vision-certified-rhmpivory-server-app-rhmp
      @@ -921,14 +776,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certified-rhmpjtrac-app-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operator-certified-rhmparmory-operator-rhmp
      @@ -981,14 +838,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • v1alpha2
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-xray-operator-rhmpruntime-component-operator-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • beta
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certified-rhmppercona-server-mongodb-operator-certified-rhmp
      @@ -1053,36 +898,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certified-rhmpako-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1112,7 +937,7 @@
    Partially complying with the recommendations
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cnvrg-operator-marketplace-rhmpkpow-io-certified-rhmp
      @@ -1142,7 +967,7 @@
      Partially complying with the recommendations
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    orca-rhmptimemachine-operator-rhmp
      @@ -1165,18 +990,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    insightedge-enterprise-operator2-rhmprobin-storage-enterprise-rhmp
      @@ -1199,14 +1020,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    atomicorp-helm-operator-certified-rhmpcan-operator-rhmp
      +
    • ClusterRole
    • +
    • CRD
    @@ -1236,7 +1059,7 @@
    Partially complying with the recommendations
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    oneagent-certified-rhmpcic-operator-with-crds-rhmp
      @@ -1266,19 +1089,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-advanced-ibm-rhmp
      @@ -1301,26 +1112,28 @@
      Partially complying with the recommendations
      -
    • stable
    • -
      -
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      +
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    cortex-fabric-operator-rhmpmongodb-enterprise-rhmp
      @@ -1331,8 +1144,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -1340,9 +1151,57 @@
    Partially complying with the recommendations
      -
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-enterprise.v0.3.2 - (label=v4.5,v4.6,max=4.8,channels=[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)
    • +
    • 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:YES,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.4 - (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)
    jtrac-app-operator-rhmpcortex-hub-operator-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    as400rpc-operator-rhmpcitrix-cpx-with-ingress-controller-operator-rhmp
      -
    • ClusterRole
    • -
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1406,7 +1265,7 @@
    Partially complying with the recommendations
      -
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kpow-io-certified-rhmpcloudhedge-rhmp
      @@ -1436,7 +1295,11 @@
      Partially complying with the recommendations
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-tg-operator-rhmpinstana-agent-rhmp
      @@ -1459,14 +1322,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    stonebranch-universalagent-operator-certified-rhmpk10-kasten-operator-rhmp
      @@ -1489,6 +1372,8 @@
      Partially complying with the recommendations
      +
    • stable
    • +
    • alpha
    @@ -1496,9 +1381,15 @@
    Partially complying with the recommendations
      -
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,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)
    • +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anaconda-team-edition-rhmprapidbiz-operator-certified-rhmp
      @@ -1521,14 +1412,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cloudhedge-rhmpconfluent-for-kubernetes-rhmp
      @@ -1551,18 +1442,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vprotect-operator-rhmpdb2-zos-db-operator-rhmp
      @@ -1592,7 +1479,7 @@
      Partially complying with the recommendations
      -
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ivory-server-app-rhmprobin-storage-trial-rhmp
      @@ -1615,14 +1502,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-ts-operator-rhmpfederatorai-certified-rhmp
      @@ -1645,14 +1532,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-ingress-controller-operator-rhmpsnyk-operator-marketplace-rhmp
      @@ -1677,14 +1564,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operator-certified-rhmpmf-cics-tg-operator-rhmp
      @@ -1707,8 +1594,6 @@
      Partially complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -1716,19 +1601,7 @@
    Partially complying with the recommendations
      -
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    neuvector-certified-operator-rhmporca-rhmp
      @@ -1758,27 +1631,11 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • orca-operator.v1.0.193 - (label=v4.6,v4.5,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)
    • +
    • orca-operator.v1.0.195 - (label=v4.6,v4.5,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:YES,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)
    robin-storage-express-rhmpopenunison-ocp-certified-rhmp
      @@ -1808,7 +1665,7 @@
      Partially complying with the recommendations
      -
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    joget-openshift-operator-rhmpperceptilabs-operator-package-rhmp
      @@ -1831,14 +1688,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    node-red-operator-rhm-certified-rhmpyugabyte-platform-operator-bundle-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1868,7 +1731,9 @@
    Partially complying with the recommendations
      -
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operator-rhmprocketchat-operator-certified
      @@ -1891,14 +1756,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-with-ingress-controller-operator-rhmphazelcast-enterprise-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -1930,7 +1793,19 @@
    Partially complying with the recommendations
      -
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    timemachine-operator-rhmpuma-operator-rhmp
      @@ -1960,7 +1835,15 @@
      Partially complying with the recommendations
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sysdig-certified-rhmpcortex-fabric-operator-rhmp
      @@ -1983,6 +1866,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -1990,7 +1875,9 @@
    Partially complying with the recommendations
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    rapidbiz-operator-certified-rhmpappdynamics-operator-rhmp
      @@ -2020,7 +1907,7 @@
      Partially complying with the recommendations
      -
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certified-rhmpvprotect-operator-rhmp
      @@ -2043,26 +1930,14 @@
      Partially complying with the recommendations
      -
    • 6.0
    • -
    • alpha
    • -
    • latest
    • - -
    • 6.2
    • -
      -
    • 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.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • aqua-operator.v6.2.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    instana-agent-rhmpmf-cics-ts-operator-rhmp
      @@ -2085,34 +1960,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    t8c-certified-rhmpredis-enterprise-operator-cert-rhmp
      @@ -2135,22 +1990,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • preview
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    armory-operator-rhmpcert-manager-operator-rhmp
      @@ -2173,14 +2020,20 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • alpha
    • + +
    • stable
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    redis-enterprise-operator-cert-rhmpneuvector-certified-operator-rhmp
      @@ -2203,14 +2056,34 @@
      Partially complying with the recommendations
      -
    • preview
    • +
    • beta
      -
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cortex-healthcare-hub-operator-rhmpjoget-dx-operator-rhmp
      @@ -2233,16 +2106,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • cortex-healthcare-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],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)
    • +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    yugabyte-platform-operator-bundle-rhmpas400rpc-operator-rhmp
      -
    • CRD
    • -
    • ClusterRole
    • +
    • CRD
    • +
    @@ -2274,9 +2155,7 @@
    Partially complying with the recommendations
      -
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubeplus-rhmpaws-event-sources-operator-certified-rhmp
      @@ -2306,7 +2185,13 @@
      Partially complying with the recommendations
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    db2-zos-db-operator-rhmpfep-ansible-operator
      @@ -2329,14 +2214,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cass-operator-rhmpanaconda-team-edition-rhmp
      @@ -2359,24 +2244,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    perceptilabs-operator-package-rhmpeddi-operator-certified-rhmp
      @@ -2399,18 +2274,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operator-with-crds-rhmpdensify-operator-rhmp
      @@ -2433,6 +2304,8 @@
      Partially complying with the recommendations
      +
    • v1.0
    • +
    • alpha
    @@ -2440,7 +2313,11 @@
    Partially complying with the recommendations
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    kong-offline-operator-rhmpcpx-cic-operator-rhmp
      @@ -2470,7 +2347,9 @@
      Partially complying with the recommendations
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubeturbo-certified-rhmpkubemq-operator-marketplace-rhmp
      @@ -2493,32 +2372,58 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • kubeturbo-operator.v7.22.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    • +
    +
    +
      + +
    +
    zabbix-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • lts
    • + +
    +
    +
      -
    • kubeturbo-operator.v8.2.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • zabbix-operator-certified.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v8.3.1 - (label=v4.5,v4.6,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO)
    kubemq-operator-marketplace-rhmpportshift-controller-operator-rhmp
      @@ -2548,19 +2453,9 @@
      Partially complying with the recommendations
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • portshift-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    ako-operator-rhmpakka-cluster-operator-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • beta
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-enterprise-rhmphazelcast-jet-enterprise-operator-rhmp
      @@ -2615,14 +2508,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    presto-operator-rhmpdatadog-operator-certified-rhmp
      @@ -2645,6 +2540,8 @@
      Partially complying with the recommendations
      +
    • beta
    • +
    • alpha
    @@ -2652,7 +2549,9 @@
    Partially complying with the recommendations
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    memql-certified-rhmphpe-ezmeral-csi-operator-rhmp
      @@ -2675,24 +2574,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],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)
    • +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    uma-operator-rhmpenterprise-operator-rhmp
      @@ -2722,15 +2615,7 @@
      Partially complying with the recommendations
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    federatorai-certified-rhmpdata-explorer-operator-certified-rhmp
      @@ -2753,14 +2638,36 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedxcrypt-operator-rhmp
      @@ -2783,14 +2690,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    starburst-enterprise-helm-operator-rhmpnastel-xray-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2820,7 +2729,17 @@
    Partially complying with the recommendations
      -
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator-certified-rhmpsysdig-certified-rhmp
      @@ -2843,14 +2762,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    appranix-cps-rhmpaqua-operator-certified-rhmp
      @@ -2873,18 +2792,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • 6.0
    • -
    • deprecated
    • +
    • alpha
    • + +
    • latest
    • + +
    • 6.2
      -
    • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aqua-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],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.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    k8s-triliovault-rhmpcortex-healthcare-hub-operator-rhmp
      @@ -2907,24 +2834,16 @@
      Partially complying with the recommendations
      -
    • cluster
    • - -
    • namespaced
    • +
    • stable
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-healthcare-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,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)
    growth-stack-operator-certified-rhmpatomicorp-helm-operator-certified-rhmp
      @@ -2954,9 +2873,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certified-rhmpcortex-certifai-operator-rhmp
      @@ -2979,18 +2896,26 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
    • -
    • alpha
    • +
    • beta
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, 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)
    can-operator-rhmpnastel-navigator-operator-certified-rhmp
      -
    • ClusterRole
    • -
    • CRD
    • +
    • ClusterRole
    • +
    @@ -3022,7 +2947,31 @@
    Partially complying with the recommendations
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cortex-certifai-operator-rhmpt8c-certified-rhmp
      @@ -3047,24 +2996,20 @@
      Partially complying with the recommendations
    • 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.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • t8c-operator.v7.22.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,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)
    • +
    • t8c-operator.v7.22.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • t8c-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • t8c-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • t8c-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-enterprise-operator-rhmpcitrix-ingress-controller-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -3094,9 +3041,7 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    densify-operator-rhmpk8s-triliovault-rhmp
      @@ -3119,20 +3064,24 @@
      Partially complying with the recommendations
      -
    • v1.0
    • +
    • cluster
    • -
    • alpha
    • +
    • namespaced
      -
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],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)
    • +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    aci-containers-operatorkubeplus-rhmp
      @@ -3155,14 +3104,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eddi-operator-certified-rhmpkubeturbo-certified-rhmp
      @@ -3185,14 +3134,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    open-enterprise-spinnaker-rhmpstonebranch-universalagent-operator-certified-rhmp
      @@ -3222,7 +3189,9 @@
      Partially complying with the recommendations
      -
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    runtime-component-operator-certified-rhmppercona-xtradb-cluster-operator-certified-rhmp
      @@ -3245,14 +3214,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatorcass-operator-rhmp
      @@ -3282,7 +3251,17 @@
      Partially complying with the recommendations
      -
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    @@ -3314,35 +3293,45 @@
    Fully complying with the recommendations
    - + - + - + @@ -3391,54 +3380,58 @@
    Fully complying with the recommendations
    - + - + - + - + @@ -3515,14 +3514,14 @@
    Fully complying with the recommendations
    - + - + - + - + @@ -3629,14 +3628,14 @@
    Fully complying with the recommendations
    - + @@ -3657,14 +3656,14 @@
    Fully complying with the recommendations
    - + - + - + @@ -3741,14 +3740,14 @@
    Fully complying with the recommendations
    - + @@ -3769,14 +3768,14 @@
    Fully complying with the recommendations
    - + @@ -3797,19 +3796,17 @@
    Fully complying with the recommendations
    - + - + @@ -3867,19 +3854,17 @@
    Fully complying with the recommendations
    - + - + @@ -3931,14 +3910,14 @@
    Fully complying with the recommendations
    - + @@ -3959,7 +3938,7 @@
    Fully complying with the recommendations
    diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html index 6ad9ae53..179ff1a2 100644 --- a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html @@ -102,32 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    gpu-operator-certified-rhmpseldon-deploy-operator-rhmp
      +
    • CRD
    • +
      -
    • v1.8
    • +
    • 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)
    • +
      -
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operator-rhmpop-svc-jenkins-rhmp
      @@ -3363,14 +3352,14 @@
      Fully complying with the recommendations
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nutanixcsioperator-rhmpentando-k8s-operator-rhmp
      @@ -3379,7 +3368,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ovms-operator-rhmpcrunchy-postgres-operator-rhmp
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
    • + +
    • v5
      +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-deploy-operator-rhmphpe-csi-operator-rhmp
      -
    • CRD
    • -
      -
    • alpha
    • -
    • stable
    @@ -3446,28 +3439,24 @@
    Fully complying with the recommendations
      -
    • 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:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    linstor-operator-rhmpcouchbase-enterprise-certified-rhmp
      +
    • CRD
    • +
    @@ -3475,26 +3464,36 @@
    Fully complying with the recommendations
  • stable
  • -
  • alpha
  • -
      +
    • 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)
    • +
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operator-rhmpaikit-operator-rhmp
      @@ -3503,7 +3502,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operator-rhmplinstor-operator-rhmp
      @@ -3533,6 +3532,8 @@
      Fully complying with the recommendations
    • stable
    • +
    • alpha
    • +
    @@ -3543,14 +3544,14 @@
    Fully complying with the recommendations
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sumologic-kubernetes-collection-helm-operator-rhmpccm-node-agent-operator-rhmp
      @@ -3571,14 +3572,14 @@
      Fully complying with the recommendations
      -
    • 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)
    • +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aikit-operator-rhmpcloudbees-ci-rhmp
      @@ -3599,14 +3600,14 @@
      Fully complying with the recommendations
      -
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certified-rhmpovms-operator-rhmp
      @@ -3615,9 +3616,7 @@
      Fully complying with the recommendations
      -
    • stable
    • - -
    • beta
    • +
    • alpha
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anzograph-operator-rhmpmongodb-atlas-kubernetes-rhmp
      @@ -3645,7 +3644,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    anzo-operator-rhmpanzounstructured-operator-rhmp
      @@ -3685,14 +3684,14 @@
      Fully complying with the recommendations
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    entando-k8s-operator-rhmpiomesh-operator-rhmp
      @@ -3713,14 +3712,14 @@
      Fully complying with the recommendations
      -
    • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    op-svc-jenkins-rhmpanzo-operator-rhmp
      @@ -3729,7 +3728,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cloudbees-ci-rhmpminio-operator-rhmp
      @@ -3757,7 +3756,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-atlas-kubernetes-rhmpanzograph-operator-rhmp
      @@ -3785,7 +3784,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    couchbase-enterprise-certified-rhmpcockroachdb-certified-rhmp
      -
    • CRD
    • -
    @@ -3817,36 +3814,26 @@
    Fully complying with the recommendations
  • stable
  • +
  • beta
  • +
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
    minio-operator-rhmpgpu-operator-certified-rhmp
      @@ -3855,7 +3842,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • v1.8
      -
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    crunchy-postgres-operator-rhmpvfunction-server-operator-rhmp
      -
    • CRD
    • -
    @@ -3887,30 +3872,24 @@
    Fully complying with the recommendations
  • stable
  • -
  • v5
  • -
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operator-rhmpnutanixcsioperator-rhmp
      @@ -3919,7 +3898,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    iomesh-operator-rhmpsumologic-kubernetes-collection-helm-operator-rhmp
      @@ -3947,7 +3926,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -142,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -172,12 +165,14 @@
    Partially complying with the recommendations
    - + @@ -224,7 +221,7 @@
    Partially complying with the recommendations
    - + @@ -254,7 +251,7 @@
    Partially complying with the recommendations
    - + @@ -284,7 +281,7 @@
    Partially complying with the recommendations
    - + @@ -314,12 +311,14 @@
    Partially complying with the recommendations
    - + @@ -344,7 +343,7 @@
    Partially complying with the recommendations
    - + @@ -374,7 +373,7 @@
    Partially complying with the recommendations
    - + @@ -404,12 +405,14 @@
    Partially complying with the recommendations
    - + @@ -434,7 +437,7 @@
    Partially complying with the recommendations
    - + @@ -474,7 +467,7 @@
    Partially complying with the recommendations
    - + @@ -540,7 +543,7 @@
    Partially complying with the recommendations
    - + @@ -570,7 +573,7 @@
    Partially complying with the recommendations
    - + @@ -602,7 +603,7 @@
    Partially complying with the recommendations
    - + @@ -632,7 +639,7 @@
    Partially complying with the recommendations
    - + @@ -664,7 +669,7 @@
    Partially complying with the recommendations
    - + @@ -694,7 +721,7 @@
    Partially complying with the recommendations
    - + @@ -728,27 +755,25 @@
    Partially complying with the recommendations
    - + @@ -760,7 +785,7 @@
    Partially complying with the recommendations
    - + @@ -790,27 +819,25 @@
    Partially complying with the recommendations
    - + @@ -822,7 +849,7 @@
    Partially complying with the recommendations
    - + @@ -856,7 +879,7 @@
    Partially complying with the recommendations
    - + @@ -886,7 +911,7 @@
    Partially complying with the recommendations
    - + - + - + @@ -972,7 +975,7 @@
    Partially complying with the recommendations
    - + @@ -1014,7 +1017,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - - - - - - - - - @@ -1112,7 +1067,7 @@
    Partially complying with the recommendations
    - + @@ -1152,7 +1097,7 @@
    Partially complying with the recommendations
    - + @@ -1194,7 +1127,7 @@
    Partially complying with the recommendations
    - + @@ -1228,7 +1157,7 @@
    Partially complying with the recommendations
    - + @@ -1258,7 +1187,7 @@
    Partially complying with the recommendations
    - + @@ -1298,7 +1219,7 @@
    Partially complying with the recommendations
    - + @@ -1336,7 +1249,7 @@
    Partially complying with the recommendations
    - + @@ -1368,7 +1279,7 @@
    Partially complying with the recommendations
    - + @@ -1398,7 +1313,7 @@
    Partially complying with the recommendations
    - + @@ -1434,51 +1343,25 @@
    Partially complying with the recommendations
    - + @@ -1490,7 +1373,7 @@
    Partially complying with the recommendations
    - + @@ -1520,7 +1403,7 @@
    Partially complying with the recommendations
    - + @@ -1556,7 +1433,7 @@
    Partially complying with the recommendations
    - + @@ -1586,7 +1467,7 @@
    Partially complying with the recommendations
    - + @@ -1616,7 +1497,7 @@
    Partially complying with the recommendations
    - + @@ -1646,14 +1527,12 @@
    Partially complying with the recommendations
    - + @@ -1680,7 +1557,7 @@
    Partially complying with the recommendations
    - + @@ -1710,7 +1587,7 @@
    Partially complying with the recommendations
    - + @@ -1740,7 +1619,7 @@
    Partially complying with the recommendations
    - + @@ -1770,7 +1659,7 @@
    Partially complying with the recommendations
    - + @@ -1800,7 +1695,7 @@
    Partially complying with the recommendations
    - + @@ -1842,7 +1725,7 @@
    Partially complying with the recommendations
    - + @@ -1876,7 +1755,7 @@
    Partially complying with the recommendations
    - + @@ -1924,7 +1805,7 @@
    Partially complying with the recommendations
    - + @@ -1954,7 +1835,7 @@
    Partially complying with the recommendations
    - + @@ -1984,14 +1865,12 @@
    Partially complying with the recommendations
    - + @@ -2016,7 +1897,7 @@
    Partially complying with the recommendations
    - + @@ -2066,12 +1929,14 @@
    Partially complying with the recommendations
    - + @@ -2096,7 +1961,7 @@
    Partially complying with the recommendations
    - + @@ -2126,7 +1991,7 @@
    Partially complying with the recommendations
    - + @@ -2162,7 +2025,7 @@
    Partially complying with the recommendations
    - + @@ -2194,7 +2067,7 @@
    Partially complying with the recommendations
    - + @@ -2224,25 +2097,29 @@
    Partially complying with the recommendations
    - + @@ -2254,7 +2131,7 @@
    Partially complying with the recommendations
    - + @@ -2292,7 +2161,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -2342,7 +2225,7 @@
    Partially complying with the recommendations
    - + @@ -2372,7 +2263,7 @@
    Partially complying with the recommendations
    - + @@ -2404,7 +2301,7 @@
    Partially complying with the recommendations
    - + @@ -2434,12 +2331,14 @@
    Partially complying with the recommendations
    - + @@ -2464,7 +2373,7 @@
    Partially complying with the recommendations
    - + @@ -2496,12 +2403,10 @@
    Partially complying with the recommendations
    - + - + @@ -2610,27 +2473,27 @@
    Partially complying with the recommendations
    - + @@ -2642,19 +2505,19 @@
    Partially complying with the recommendations
    - + @@ -2684,7 +2541,7 @@
    Partially complying with the recommendations
    - + @@ -2714,7 +2571,7 @@
    Partially complying with the recommendations
    - + @@ -2744,10 +2601,12 @@
    Partially complying with the recommendations
    - + @@ -2774,7 +2633,7 @@
    Partially complying with the recommendations
    - + @@ -2804,7 +2663,7 @@
    Partially complying with the recommendations
    - + @@ -2834,7 +2711,7 @@
    Partially complying with the recommendations
    - + @@ -2868,7 +2741,7 @@
    Partially complying with the recommendations
    - + @@ -2906,7 +2781,7 @@
    Partially complying with the recommendations
    - + @@ -2936,7 +2813,7 @@
    Partially complying with the recommendations
    - + @@ -2968,7 +2845,7 @@
    Partially complying with the recommendations
    - + @@ -3038,7 +2923,7 @@
    Partially complying with the recommendations
    - + @@ -3068,12 +2953,10 @@
    Partially complying with the recommendations
    - + @@ -3100,7 +2983,7 @@
    Partially complying with the recommendations
    - + @@ -3130,7 +3013,7 @@
    Partially complying with the recommendations
    - + @@ -3160,14 +3055,12 @@
    Partially complying with the recommendations
    - + @@ -3192,10 +3089,12 @@
    Partially complying with the recommendations
    - + @@ -3227,7 +3126,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    redis-enterprise-operator-cert-rhmpcortex-certifai-operator-rhmp
      @@ -153,14 +134,26 @@
      Partially complying with the recommendations
      -
    • preview
    • +
    • beta
    • + +
    • stable
      -
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certified-rhmpnastel-navigator-operator-certified-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -190,29 +185,31 @@
    Partially complying with the recommendations
      -
    • data-explorer-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • nastel-navigator-operator.v0.0.14 - (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)
    • +
    • nastel-navigator-operator.v0.0.15 - (label=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)
    • +
    • nastel-navigator-operator.v0.0.16 - (label=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)
    • +
    • nastel-navigator-operator.v0.0.17 - (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)
    • +
    • nastel-navigator-operator.v0.0.18 - (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)
    • +
    • nastel-navigator-operator.v1.100105.0 - (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)
    • +
    • nastel-navigator-operator.v1.100105.1 - (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)
    • +
    • nastel-navigator-operator.v1.100105.6 - (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)
    • +
    • nastel-navigator-operator.v1.100105.7 - (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)
    • +
    • nastel-navigator-operator.v1.100107.0 - (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)
    • +
    • nastel-navigator-operator.v1.100200.12 - (label=v4.5-v4.8,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:YES,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:YES,defaultChannel:YES, deprecated:NO)
    storageos2-rhmpkubeplus-rhmp
      @@ -235,14 +232,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-ts-operator-rhmpopenunison-ocp-certified-rhmp
      @@ -265,14 +262,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    db2-zos-db-operator-rhmptraefikee-redhat-certified-rhmp
      @@ -295,14 +292,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubeplus-rhmpcan-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -332,7 +331,7 @@
    Partially complying with the recommendations
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operator-with-crds-rhmpvprotect-operator-rhmp
      @@ -362,7 +361,7 @@
      Partially complying with the recommendations
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rapidbiz-operator-certified-rhmpzabbix-operator-certified-rhmp
      @@ -385,14 +384,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • lts
      -
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certified-rhmpcitrix-cpx-with-ingress-controller-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -422,7 +425,7 @@
    Partially complying with the recommendations
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operator-rhmpstorageos2-rhmp
      @@ -445,8 +448,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -454,15 +455,7 @@
    Partially complying with the recommendations
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    perceptilabs-operator-package-rhmpseldon-operator-certified-rhmp
      @@ -485,6 +478,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -492,11 +487,19 @@
    Partially complying with the recommendations
      -
    • perceptilabs-operator.v1.0.16 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha 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)
    • +
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha 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)
    • +
    • 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: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)
    xcrypt-operator-rhmprobin-storage-trial-rhmp
      @@ -551,14 +554,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    growth-stack-operator-certified-rhmpatomicorp-helm-operator-certified-rhmp
      @@ -588,9 +591,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-express-rhmpaws-event-sources-operator-certified-rhmp
      @@ -613,14 +614,20 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-healthcare-hub-operator-rhmpsysdig-certified-rhmp
      @@ -650,9 +657,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cnvrg-operator-marketplace-rhmpdata-explorer-operator-certified-rhmp
      @@ -682,7 +687,29 @@
      Partially complying with the recommendations
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-fabric-operator-rhmpdatadog-operator-certified-rhmp
      @@ -707,16 +734,16 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • +
    • beta
      -
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,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)
    • +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-with-ingress-controller-operator-rhmpfederatorai-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    node-red-operator-rhm-certified-rhmpaqua-operator-certified-rhmp
      @@ -773,12 +798,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • latest
    • +
      -
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES, deprecated:NO)
    as400rpc-operator-rhmparmory-operator-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • v1alpha2
      -
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    appranix-cps-rhmpinsightedge-enterprise-operator2-rhmp
      @@ -833,18 +860,14 @@
      Partially complying with the recommendations
      -
    • deprecated
    • - -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    armory-operator-rhmpcpx-cic-operator-rhmp
      @@ -867,14 +890,16 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • alpha
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-enterprise-certified-rhmppercona-xtradb-cluster-operator-certified-rhmp
      @@ -897,38 +922,26 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      +
    +
    +
    seldon-operator-certified-rhmpperceptilabs-operator-package-rhmp
      @@ -939,8 +952,6 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
    • stable
    @@ -948,19 +959,11 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • perceptilabs-operator.v1.0.16 - (label=v4.6,v4.5,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:YES,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)
    • -
    • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha 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)
    oneagent-certified-rhmpkubemq-operator-marketplace-rhmp
      @@ -990,19 +993,19 @@
      Partially complying with the recommendations
      -
    • dynatrace-monitoring.v0.10.1 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,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)
    • +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,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)
    • +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,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)
    • +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,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)
    • +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,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)
    • +
    • kubemq-operator.v1.3.5 - (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)
    • +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cloudhedge-rhmpneuvector-certified-operator-rhmp
      @@ -1025,82 +1028,34 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • -
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,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)
    • -
    -
    model-builder-for-vision-certified-rhmp -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      +
    • neuvector-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    • -
    -
    hpe-ezmeral-csi-operator-rhmp -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      +
    • neuvector-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],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)
    • -
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],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)
    • -
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    k8s-triliovault-rhmpcic-operator-with-crds-rhmp
      @@ -1123,24 +1078,14 @@
      Partially complying with the recommendations
      -
    • cluster
    • - -
    • namespaced
    • +
    • alpha
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-certifai-operator-rhmpxcrypt-operator-rhmp
      @@ -1163,26 +1108,14 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certified-rhmpjoget-openshift-operator-rhmp
      @@ -1207,16 +1140,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • latest
    • -
      -
    • 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:YES, deprecated:NO)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certified-rhmpmf-cics-tg-operator-rhmp
      @@ -1239,14 +1168,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    joget-dx-operator-rhmpgrowth-stack-operator-certified-rhmp
      @@ -1276,17 +1205,9 @@
      Partially complying with the recommendations
      -
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • growth-stack-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,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)
    t8c-certified-rhmpakka-cluster-operator-certified-rhmp
      @@ -1309,22 +1230,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    zabbix-operator-certified-rhmpmongodb-enterprise-advanced-ibm-rhmp
      @@ -1347,16 +1260,14 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certified-rhmporca-rhmp
      @@ -1379,14 +1290,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    cert-manager-operator-rhmpeddi-operator-certified-rhmp
      @@ -1411,18 +1326,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-navigator-operator-certified-rhmprobin-storage-enterprise-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-tg-operator-rhmpredis-enterprise-operator-cert-rhmp
      @@ -1501,14 +1384,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • preview
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    aws-event-sources-operator-certified-rhmpcnvrg-operator-marketplace-rhmp
      @@ -1538,13 +1421,7 @@
      Partially complying with the recommendations
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eddi-operator-certified-rhmpappranix-cps-rhmp
      @@ -1567,14 +1444,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • deprecated
    • + +
    • stable
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    timemachine-operator-rhmpmodel-builder-for-vision-certified-rhmp
      @@ -1597,14 +1478,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    aci-containers-operatoranaconda-team-edition-rhmp
      @@ -1627,14 +1508,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    yugabyte-platform-operator-bundle-rhmpkpow-io-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -1666,9 +1545,7 @@
    Partially complying with the recommendations
      -
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    insightedge-enterprise-operator2-rhmpstarburst-enterprise-helm-operator-rhmp
      @@ -1698,7 +1575,7 @@
      Partially complying with the recommendations
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    starburst-enterprise-helm-operator-rhmpportshift-controller-operator-rhmp
      @@ -1728,7 +1605,9 @@
      Partially complying with the recommendations
      -
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    percona-server-mongodb-operator-certified-rhmpk10-kasten-operator-rhmp
      @@ -1751,6 +1630,8 @@
      Partially complying with the recommendations
      +
    • alpha
    • +
    • stable
    @@ -1758,7 +1639,15 @@
    Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    presto-operator-rhmpcert-manager-operator-rhmp
      @@ -1783,12 +1672,18 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubemq-operator-marketplace-rhmpruntime-component-operator-certified-rhmp
      @@ -1811,26 +1706,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    orca-rhmpopen-enterprise-spinnaker-rhmp
      @@ -1853,18 +1736,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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)
    • +
    • open-enterprise-spinnaker.v1.21.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kubeturbo-certified-rhmpinstana-agent-rhmp
      @@ -1887,32 +1766,34 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • kubeturbo-operator.v7.22.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • instana-agent-operator.v0.2.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.2.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.7 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v0.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    • +
    • instana-agent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubeturbo-operator.v8.3.1 - (label=v4.5,v4.6,max="4.8",channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    traefikee-redhat-certified-rhmpcyberarmor-operator-certified-rhmp
      @@ -1935,14 +1816,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-trial-rhmprobin-storage-express-rhmp
      @@ -1972,7 +1853,7 @@
      Partially complying with the recommendations
      -
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-express.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ako-operator-rhmpstonebranch-universalagent-operator-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2004,7 +1883,9 @@
    Partially complying with the recommendations
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    neuvector-certified-operator-rhmpcortex-healthcare-hub-operator-rhmp
      @@ -2027,34 +1908,16 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • 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)
    • +
    • cortex-healthcare-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,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)
    kong-offline-operator-rhmpako-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2084,7 +1949,7 @@
    Partially complying with the recommendations
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anaconda-team-edition-rhmppresto-operator-rhmp
      @@ -2107,14 +1972,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    densify-operator-rhmphpe-ezmeral-csi-operator-rhmp
      @@ -2137,20 +2002,18 @@
      Partially complying with the recommendations
      -
    • v1.0
    • - -
    • alpha
    • +
    • stable
      -
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],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)
    • +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cpx-cic-operator-rhmphazelcast-enterprise-certified-rhmp
      @@ -2180,9 +2043,19 @@
      Partially complying with the recommendations
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    open-enterprise-spinnaker-rhmppercona-server-mongodb-operator-certified-rhmp
      @@ -2205,14 +2078,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • open-enterprise-spinnaker.v1.21.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sysdig-certified-rhmpyugabyte-platform-operator-bundle-rhmp
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    uma-operator-rhmpfep-ansible-operator
      @@ -2265,22 +2142,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    instana-agent-rhmpcortex-fabric-operator-rhmp
      @@ -2303,34 +2172,48 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
    • + +
    • stable
      -
    • 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)
    • +
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],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)
    • +
    • cortex-fabric-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:YES,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)
    • +
    +
    db2-zos-db-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      -
    • instana-agent-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator-certified-rhmpuma-operator-rhmp
      @@ -2353,14 +2236,22 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    hazelcast-jet-enterprise-operator-rhmpcass-operator-rhmp
      @@ -2383,16 +2274,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • -
    • hazelcast-jet-enterprise-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    runtime-component-operator-certified-rhmptimemachine-operator-rhmp
      @@ -2415,14 +2312,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    atomicorp-helm-operator-certified-rhmpnastel-xray-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2452,7 +2351,17 @@
    Partially complying with the recommendations
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    portshift-controller-operator-rhmpkong-offline-operator-rhmp
      @@ -2482,9 +2391,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-rhmpivory-server-app-rhmp
      -
    • UNKNOWN
    • -
    • CRD
    @@ -2509,76 +2414,26 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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:YES,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.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.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.4 - (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)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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.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)
    • -
    cortex-hub-operator-rhmpk8s-triliovault-rhmp
      @@ -2589,16 +2444,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • cluster
    • + +
    • namespaced
      -
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,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)
    • +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-marketplace-rhmpas400rpc-operator-rhmp
      -
    • ClusterRole
    • -
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable
    • +
    • alpha
      -
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    nastel-xray-operator-rhmpdensify-operator-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      +
    • v1.0
    • +
    • alpha
    @@ -2662,17 +2525,11 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • densify-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • nastel-xray-operator.v1.324.2 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[v1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • nastel-xray-operator.v1.325.0 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • densify-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[v1.0],head:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operator-rhmprapidbiz-operator-certified-rhmp
      @@ -2702,7 +2559,7 @@
      Partially complying with the recommendations
      -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    federatorai-certified-rhmpmf-cics-ts-operator-rhmp
      @@ -2725,14 +2582,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatorjtrac-app-operator-rhmp
      +
    • ClusterRole
    • +
    • CRD
    @@ -2755,14 +2614,14 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-advanced-ibm-rhmpaci-containers-operator
      @@ -2792,7 +2651,7 @@
      Partially complying with the recommendations
      -
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ivory-server-app-rhmpkubeturbo-certified-rhmp
      @@ -2815,14 +2674,32 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certified-rhmpappdynamics-operator-rhmp
      @@ -2847,16 +2724,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • beta
    • -
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cass-operator-rhmpjoget-dx-operator-rhmp
      @@ -2879,22 +2752,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • cass-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],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)
    • +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],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)
    • +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],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)
    • +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cass-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    enterprise-operator-rhmphazelcast-jet-enterprise-operator-rhmp
      @@ -2924,7 +2799,9 @@
      Partially complying with the recommendations
      -
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    stonebranch-universalagent-operator-certified-rhmpcortex-hub-operator-rhmp
      @@ -2947,16 +2824,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],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-hub-operator.v0.0.25 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vprotect-operator-rhmpt8c-certified-rhmp
      @@ -2979,14 +2856,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    kpow-io-certified-rhmprocketchat-operator-certified
      @@ -3049,14 +2934,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    jtrac-app-operator-rhmpnode-red-operator-rhm-certified-rhmp
      -
    • ClusterRole
    • -
    • CRD
    @@ -3088,7 +2971,7 @@
    Partially complying with the recommendations
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedenterprise-operator-rhmp
      @@ -3111,14 +2994,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-enterprise-rhmponeagent-certified-rhmp
      @@ -3141,14 +3024,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    can-operator-rhmpcloudhedge-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -3180,7 +3073,11 @@
    Partially complying with the recommendations
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    joget-openshift-operator-rhmpsnyk-operator-marketplace-rhmp
      +
    • ClusterRole
    • +
    • CRD
    @@ -3203,14 +3102,14 @@
    Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -3242,7 +3141,7 @@
    Fully complying with the recommendations
    - + @@ -3263,14 +3164,14 @@
    Fully complying with the recommendations
    - + @@ -3291,14 +3192,14 @@
    Fully complying with the recommendations
    - + @@ -3319,19 +3222,17 @@
    Fully complying with the recommendations
    - + - + @@ -3385,14 +3278,14 @@
    Fully complying with the recommendations
    - + - + @@ -3441,42 +3334,56 @@
    Fully complying with the recommendations
    - + - + @@ -3497,14 +3404,14 @@
    Fully complying with the recommendations
    - + - + @@ -3559,14 +3460,14 @@
    Fully complying with the recommendations
    - + - + @@ -3650,7 +3559,7 @@
    Fully complying with the recommendations
    - + - + - + - + - + @@ -3871,6 +3824,34 @@
    Fully complying with the recommendations
    + + + + + + + +
    op-svc-jenkins-rhmpcockroachdb-certified-rhmp
      @@ -3251,7 +3150,9 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • stable
      -
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    cloudbees-ci-rhmpgpu-operator-certified-rhmp
      @@ -3279,7 +3180,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • v1.8
      -
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    nutanixcsioperator-rhmplinstor-operator-rhmp
      @@ -3307,7 +3208,9 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • stable
    • + +
    • alpha
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-deploy-operator-rhmpanzo-operator-rhmp
      -
    • CRD
    • -
    @@ -3339,32 +3240,24 @@
    Fully complying with the recommendations
  • stable
  • -
  • alpha
  • -
      -
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operator-rhmpnutanixcsioperator-rhmp
      @@ -3373,7 +3266,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operator-rhmpiomesh-operator-rhmp
      @@ -3413,14 +3306,14 @@
      Fully complying with the recommendations
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    ovms-operator-rhmpvfunction-server-operator-rhmp
      @@ -3429,7 +3322,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    aikit-operator-rhmpcouchbase-enterprise-certified-rhmp
      +
    • CRD
    • +
      -
    • alpha
    • +
    • 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)
    • +
      -
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operator-rhmpccm-node-agent-operator-rhmp
      @@ -3485,7 +3392,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-rhmpaikit-operator-rhmp
      @@ -3513,12 +3420,8 @@
      Fully complying with the recommendations
      -
    • stable
    • -
    • alpha
    • -
    • beta
    • -
    @@ -3529,16 +3432,14 @@
    Fully complying with the recommendations
      -
    • 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-pr3 - (label=v4.6,max=not set,channels=[alpha beta],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anzo-operator-rhmpop-svc-jenkins-rhmp
      @@ -3547,7 +3448,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operator-rhmpcloudbees-ci-rhmp
      @@ -3587,35 +3488,43 @@
      Fully complying with the recommendations
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gpu-operator-certified-rhmpcrunchy-postgres-operator-rhmp
      +
    • CRD
    • +
      -
    • v1.8
    • +
    • stable
    • + +
    • v5
      +
    • 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: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)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    linstor-operator-rhmpovms-operator-rhmp
      @@ -3659,8 +3568,6 @@
      Fully complying with the recommendations
      -
    • stable
    • -
    • alpha
    @@ -3673,14 +3580,14 @@
    Fully complying with the recommendations
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    iomesh-operator-rhmphpe-csi-operator-rhmp
      @@ -3701,19 +3608,17 @@
      Fully complying with the recommendations
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    crunchy-postgres-operator-rhmpentando-k8s-operator-rhmp
      -
    • CRD
    • -
    @@ -3721,30 +3626,30 @@
    Fully complying with the recommendations
  • stable
  • -
  • v5
  • +
  • alpha
  • + +
  • beta
    • -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-pr3 - (label=v4.6,max=not set,channels=[alpha beta],head:YES,defaultChannel:NO, deprecated:NO)
    couchbase-enterprise-certified-rhmpseldon-deploy-operator-rhmp
      @@ -3757,46 +3662,44 @@
      Fully complying with the recommendations
    • stable
    • +
    • alpha
    • +
      -
    • 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)
    • +
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certified-rhmpmongodb-enterprise-rhmp
      +
    • UNKNOWN
    • + +
    • CRD
    • +
      -
    • beta
    • -
    • stable
    @@ -3804,12 +3707,62 @@
    Fully complying with the recommendations
      +
    • 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:YES,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.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.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.4 - (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)
    • +
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,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.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)
    anzounstructured-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html index ae8f20b7..8ed82f78 100644 --- a/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html @@ -102,32 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    -
    - -
    -
    Not complying with the recommendations
    - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -142,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -184,7 +153,7 @@
    Partially complying with the recommendations
    - + @@ -226,7 +183,7 @@
    Partially complying with the recommendations
    - + @@ -256,19 +213,19 @@
    Partially complying with the recommendations
    - + @@ -292,7 +245,7 @@
    Partially complying with the recommendations
    - + @@ -322,7 +275,7 @@
    Partially complying with the recommendations
    - + @@ -352,7 +309,7 @@
    Partially complying with the recommendations
    - + @@ -384,7 +341,7 @@
    Partially complying with the recommendations
    - + @@ -426,7 +377,7 @@
    Partially complying with the recommendations
    - + @@ -464,12 +419,14 @@
    Partially complying with the recommendations
    - + @@ -494,7 +451,7 @@
    Partially complying with the recommendations
    - + @@ -524,27 +501,33 @@
    Partially complying with the recommendations
    - + @@ -556,7 +539,7 @@
    Partially complying with the recommendations
    - + @@ -586,12 +591,10 @@
    Partially complying with the recommendations
    - + @@ -618,10 +621,12 @@
    Partially complying with the recommendations
    - + @@ -666,7 +653,7 @@
    Partially complying with the recommendations
    - + @@ -696,7 +683,7 @@
    Partially complying with the recommendations
    - + @@ -728,7 +715,7 @@
    Partially complying with the recommendations
    - + @@ -760,7 +749,7 @@
    Partially complying with the recommendations
    - + @@ -790,7 +779,7 @@
    Partially complying with the recommendations
    - + @@ -842,7 +809,7 @@
    Partially complying with the recommendations
    - + @@ -872,7 +841,7 @@
    Partially complying with the recommendations
    - + @@ -902,7 +873,7 @@
    Partially complying with the recommendations
    - + @@ -932,7 +903,7 @@
    Partially complying with the recommendations
    - + @@ -966,7 +935,7 @@
    Partially complying with the recommendations
    - + @@ -998,7 +965,7 @@
    Partially complying with the recommendations
    - + @@ -1048,29 +995,25 @@
    Partially complying with the recommendations
    - + @@ -1082,7 +1025,7 @@
    Partially complying with the recommendations
    - + @@ -1112,7 +1063,7 @@
    Partially complying with the recommendations
    - + @@ -1142,7 +1093,7 @@
    Partially complying with the recommendations
    - + @@ -1172,7 +1127,7 @@
    Partially complying with the recommendations
    - + @@ -1202,7 +1157,7 @@
    Partially complying with the recommendations
    - + @@ -1232,7 +1199,7 @@
    Partially complying with the recommendations
    - + @@ -1272,7 +1235,7 @@
    Partially complying with the recommendations
    - + @@ -1304,7 +1265,7 @@
    Partially complying with the recommendations
    - + @@ -1334,7 +1295,7 @@
    Partially complying with the recommendations
    - + @@ -1364,12 +1325,14 @@
    Partially complying with the recommendations
    - + @@ -1396,14 +1357,12 @@
    Partially complying with the recommendations
    - + @@ -1428,7 +1387,7 @@
    Partially complying with the recommendations
    - + @@ -1458,7 +1427,7 @@
    Partially complying with the recommendations
    - + @@ -1488,10 +1467,12 @@
    Partially complying with the recommendations
    - + @@ -1518,7 +1499,7 @@
    Partially complying with the recommendations
    - + @@ -1548,7 +1529,7 @@
    Partially complying with the recommendations
    - + @@ -1578,7 +1571,7 @@
    Partially complying with the recommendations
    - + @@ -1620,7 +1601,7 @@
    Partially complying with the recommendations
    - + @@ -1652,12 +1631,14 @@
    Partially complying with the recommendations
    - + @@ -1686,7 +1663,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -1752,7 +1711,7 @@
    Partially complying with the recommendations
    - + @@ -1802,7 +1755,7 @@
    Partially complying with the recommendations
    - + @@ -1840,7 +1785,7 @@
    Partially complying with the recommendations
    - + @@ -1900,7 +1845,7 @@
    Partially complying with the recommendations
    - + @@ -1930,7 +1885,7 @@
    Partially complying with the recommendations
    - + @@ -1964,27 +1915,25 @@
    Partially complying with the recommendations
    - + @@ -1996,14 +1945,12 @@
    Partially complying with the recommendations
    - + @@ -2028,12 +1975,14 @@
    Partially complying with the recommendations
    - + @@ -2058,7 +2009,7 @@
    Partially complying with the recommendations
    - + @@ -2092,7 +2039,7 @@
    Partially complying with the recommendations
    - + @@ -2128,7 +2069,7 @@
    Partially complying with the recommendations
    - + @@ -2158,7 +2111,7 @@
    Partially complying with the recommendations
    - + @@ -2188,7 +2141,7 @@
    Partially complying with the recommendations
    - + @@ -2218,7 +2177,7 @@
    Partially complying with the recommendations
    - + @@ -2250,7 +2207,7 @@
    Partially complying with the recommendations
    - + @@ -2286,27 +2237,79 @@
    Partially complying with the recommendations
    - + - + @@ -2354,7 +2351,7 @@
    Partially complying with the recommendations
    - + @@ -2384,7 +2383,7 @@
    Partially complying with the recommendations
    - + @@ -2448,7 +2447,7 @@
    Partially complying with the recommendations
    - + @@ -2478,7 +2477,7 @@
    Partially complying with the recommendations
    - + @@ -2522,7 +2507,7 @@
    Partially complying with the recommendations
    - + @@ -2562,7 +2537,7 @@
    Partially complying with the recommendations
    - + @@ -2592,7 +2567,7 @@
    Partially complying with the recommendations
    - + @@ -2626,7 +2617,7 @@
    Partially complying with the recommendations
    - + @@ -2656,7 +2649,7 @@
    Partially complying with the recommendations
    - + @@ -2686,7 +2679,7 @@
    Partially complying with the recommendations
    - + @@ -2716,7 +2709,7 @@
    Partially complying with the recommendations
    - + @@ -2756,7 +2747,7 @@
    Partially complying with the recommendations
    - + @@ -2786,7 +2781,7 @@
    Partially complying with the recommendations
    - + @@ -2816,12 +2811,10 @@
    Partially complying with the recommendations
    - + @@ -2848,14 +2841,12 @@
    Partially complying with the recommendations
    - + - + + + + + + + + + @@ -2930,7 +2905,7 @@
    Partially complying with the recommendations
    - + @@ -2960,7 +2935,7 @@
    Partially complying with the recommendations
    - + @@ -2990,7 +2969,7 @@
    Partially complying with the recommendations
    - + @@ -3024,7 +3001,7 @@
    Partially complying with the recommendations
    - + @@ -3059,7 +3040,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    kubemq-operator-marketplace-rhmpfep-ansible-operator
      @@ -153,26 +134,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-certifai-operator-rhmpdb2-zos-db-operator-rhmp
      @@ -195,26 +164,14 @@
      Partially complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    federatorai-certified-rhmpopenunison-ocp-certified-rhmp
      @@ -244,7 +201,7 @@
      Partially complying with the recommendations
      -
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cert-manager-operator-rhmpsnyk-operator-marketplace-rhmp
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • -
    • stable
    @@ -276,11 +233,7 @@
    Partially complying with the recommendations
      -
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    sysdig-certified-rhmpatomicorp-helm-operator-certified-rhmp
      @@ -303,14 +256,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    model-builder-for-vision-certified-rhmpdatadog-operator-certified-rhmp
      @@ -333,14 +286,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
    • + +
    • beta
      -
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-hub-operator-rhmpcpx-cic-operator-rhmp
      @@ -363,16 +320,16 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • cortex-hub-operator.v0.0.24 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    oneagent-certified-rhmpaws-event-sources-operator-certified-rhmp
      @@ -402,19 +359,13 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,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)
    • +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,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)
    • +
    • aws-sources-operator.v0.2.2 - (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)
    • +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    t8c-certified-rhmphazelcast-enterprise-certified-rhmp
      @@ -437,22 +388,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • t8c-operator.v7.22.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • hazelcast-enterprise-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • hazelcast-enterprise-operator.v0.3.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • hazelcast-enterprise-operator.v0.3.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • hazelcast-enterprise-operator.v0.3.4-1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • t8c-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    kpow-io-certified-rhmpcan-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -482,7 +439,7 @@
    Partially complying with the recommendations
      -
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aci-containers-operatorneuvector-certified-operator-rhmp
      @@ -505,14 +462,34 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    can-operator-rhmpt8c-certified-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    insightedge-enterprise-operator2-rhmpdata-explorer-operator-certified-rhmp
      @@ -574,7 +557,29 @@
      Partially complying with the recommendations
      -
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-ingress-controller-operator-rhmpruntime-component-operator-certified-rhmp
      -
    • ClusterRole
    • -
    • CRD
    @@ -599,14 +602,14 @@
    Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    kubeturbo-certified-rhmpcitrix-ingress-controller-operator-rhmp
      +
    • ClusterRole
    • +
    • CRD
    @@ -629,32 +634,14 @@
    Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    node-red-operator-rhm-certified-rhmprocketchat-operator-certified
      @@ -677,14 +664,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    cpx-cic-operator-rhmpstonebranch-universalagent-operator-certified-rhmp
      @@ -714,9 +701,9 @@
      Partially complying with the recommendations
      -
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • universalagent-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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)
    hazelcast-jet-enterprise-operator-rhmpcortex-fabric-operator-rhmp
      @@ -741,14 +728,16 @@
      Partially complying with the recommendations
    • alpha
    • +
    • stable
    • +
      -
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-fabric-operator.v0.0.1 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],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)
    • +
    • cortex-fabric-operator.v1.0.0 - (label=v4.6,v4.5,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    cic-operator-with-crds-rhmppercona-server-mongodb-operator-certified-rhmp
      @@ -771,14 +760,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    data-explorer-operator-certified-rhmpmf-cics-ts-operator-rhmp
      @@ -808,29 +797,7 @@
      Partially complying with the recommendations
      -
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eddi-operator-certified-rhmpgrowth-stack-operator-certified-rhmp
      @@ -860,7 +827,9 @@
      Partially complying with the recommendations
      -
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    rapidbiz-operator-certified-rhmpportshift-controller-operator-rhmp
      @@ -890,7 +859,9 @@
      Partially complying with the recommendations
      -
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    timemachine-operator-rhmppercona-xtradb-cluster-operator-certified-rhmp
      @@ -913,14 +884,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-fabric-operator-rhmphazelcast-jet-enterprise-operator-rhmp
      @@ -945,16 +916,14 @@
      Partially complying with the recommendations
    • 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)
    • +
    • hazelcast-jet-enterprise-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],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)
    • +
    • hazelcast-jet-enterprise-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    growth-stack-operator-certified-rhmpmongodb-enterprise-advanced-ibm-rhmp
      @@ -977,16 +946,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    instana-agent-rhmpxcrypt-operator-rhmp
      @@ -1009,34 +976,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    yugabyte-platform-operator-bundle-rhmprobin-storage-trial-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • alpha
    • +
    • stable
      -
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    enterprise-operator-rhmpuma-operator-rhmp
      @@ -1100,7 +1043,15 @@
      Partially complying with the recommendations
      -
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    percona-xtradb-cluster-operator-certified-rhmpeddi-operator-certified-rhmp
      @@ -1123,14 +1074,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ivory-server-app-rhmpperceptilabs-operator-package-rhmp
      @@ -1153,14 +1104,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    cnvrg-operator-marketplace-rhmptimemachine-operator-rhmp
      @@ -1190,7 +1145,7 @@
      Partially complying with the recommendations
      -
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-ts-operator-rhmpkubemq-operator-marketplace-rhmp
      @@ -1220,7 +1175,19 @@
      Partially complying with the recommendations
      -
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    k8s-triliovault-rhmpcert-manager-operator-rhmp
      @@ -1243,24 +1210,20 @@
      Partially complying with the recommendations
      -
    • cluster
    • +
    • alpha
    • -
    • namespaced
    • +
    • stable
      -
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    portshift-controller-operator-rhmpcic-operator-with-crds-rhmp
      @@ -1290,9 +1253,7 @@
      Partially complying with the recommendations
      -
    • 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)
    • +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mf-cics-tg-operator-rhmpinsightedge-enterprise-operator2-rhmp
      @@ -1322,7 +1283,7 @@
      Partially complying with the recommendations
      -
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    presto-operator-rhmptraefikee-redhat-certified-rhmp
      @@ -1345,14 +1306,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    stonebranch-universalagent-operator-certified-rhmpas400rpc-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1382,9 +1345,7 @@
    Partially complying with the recommendations
      -
    • 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)
    • +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ako-operator-rhmpivory-server-app-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -1416,7 +1375,7 @@
    Partially complying with the recommendations
      -
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anaconda-team-edition-rhmpk10-kasten-operator-rhmp
      @@ -1439,14 +1398,24 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
    • + +
    • stable
      -
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    akka-cluster-operator-certified-rhmpk8s-triliovault-rhmp
      @@ -1469,14 +1438,24 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • cluster
    • + +
    • namespaced
      -
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    vprotect-operator-rhmpjtrac-app-operator-rhmp
      +
    • ClusterRole
    • +
    • CRD
    @@ -1506,7 +1487,7 @@
    Partially complying with the recommendations
      -
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appdynamics-operator-rhmpjoget-openshift-operator-rhmp
      @@ -1536,7 +1517,7 @@
      Partially complying with the recommendations
      -
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-advanced-ibm-rhmponeagent-certified-rhmp
      @@ -1559,14 +1540,26 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    hazelcast-enterprise-certified-rhmppresto-operator-rhmp
      @@ -1596,19 +1589,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-presto-helm-operator.v350.1.1-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cortex-healthcare-hub-operator-rhmpkpow-io-certified-rhmp
      @@ -1631,16 +1612,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • 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)
    • +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cloudhedge-rhmpako-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -1670,11 +1651,7 @@
    Partially complying with the recommendations
      -
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    perceptilabs-operator-package-rhmpkubeturbo-certified-rhmp
      @@ -1704,43 +1681,25 @@
      Partially complying with the recommendations
      -
    • perceptilabs-operator.v1.0.16 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubeturbo-operator.v7.22.6 - (label=v4.5,v4.6,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)
    • +
    • kubeturbo-operator.v7.22.9 - (label=v4.5,v4.6,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)
    • +
    • 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)
    • -
    -
    as400rpc-operator-rhmp -
      - -
    • CRD
    • - -
    • ClusterRole
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • kubeturbo-operator.v8.0.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,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:YES,defaultChannel:YES, deprecated:NO)
    neuvector-certified-operator-rhmpseldon-operator-certified-rhmp
      @@ -1763,34 +1722,28 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
    • + +
    • stable
      -
    • 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)
    • +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],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)
    • +
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],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)
    • +
    • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],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)
    • +
    • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,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)
    • +
    • seldon-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • seldon-operator.v1.6.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • neuvector-operator.v1.2.8 - (label=v4.5,v4.6,max=4.8,channels=[beta],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)
    cass-operator-rhmpmodel-builder-for-vision-certified-rhmp
      @@ -1820,15 +1773,7 @@
      Partially complying with the recommendations
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    redis-enterprise-operator-cert-rhmpkong-offline-operator-rhmp
      @@ -1851,14 +1796,14 @@
      Partially complying with the recommendations
      -
    • preview
    • +
    • alpha
      -
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    robin-storage-trial-rhmpmemql-certified-rhmp
      @@ -1911,14 +1856,24 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    orca-rhmpopen-enterprise-spinnaker-rhmp
      @@ -1941,18 +1896,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • 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)
    • +
    • open-enterprise-spinnaker.v1.21.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    snyk-operator-marketplace-rhmpanaconda-team-edition-rhmp
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • beta
      -
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    citrix-cpx-with-ingress-controller-operator-rhmpvprotect-operator-rhmp
    • CRD
    • -
    • ClusterRole
    • -
    @@ -2016,7 +1963,7 @@
    Partially complying with the recommendations
      -
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cyberarmor-operator-certified-rhmpyugabyte-platform-operator-bundle-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2046,7 +1995,9 @@
    Partially complying with the recommendations
      -
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    datadog-operator-certified-rhmpfederatorai-certified-rhmp
      @@ -2069,18 +2020,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • beta
    • +
    • stable
      -
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    densify-operator-rhmpcnvrg-operator-marketplace-rhmp
      @@ -2103,8 +2050,6 @@
      Partially complying with the recommendations
      -
    • v1.0
    • -
    • alpha
    @@ -2112,11 +2057,7 @@
    Partially complying with the recommendations
      -
    • 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.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    atomicorp-helm-operator-certified-rhmpcortex-certifai-operator-rhmp
      @@ -2139,14 +2080,26 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
    • + +
    • stable
      -
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    kubeplus-rhmprobin-storage-enterprise-rhmp
      @@ -2169,14 +2122,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    fep-ansible-operatordensify-operator-rhmp
      @@ -2199,14 +2152,20 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • v1.0
    • + +
    • alpha
      -
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    zabbix-operator-certified-rhmpakka-cluster-operator-certified-rhmp
      @@ -2229,16 +2188,14 @@
      Partially complying with the recommendations
      -
    • lts
    • +
    • beta
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    aws-event-sources-operator-certified-rhmpenterprise-operator-rhmp
      @@ -2268,13 +2225,7 @@
      Partially complying with the recommendations
      -
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    runtime-component-operator-certified-rhmpmongodb-enterprise-rhmp
    • CRD
    • +
    • UNKNOWN
    • +
      -
    • beta
    • +
    • stable
      -
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES,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.4 - (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)
  • + +
      @@ -2316,12 +2319,14 @@
      Partially complying with the recommendations
    uma-operator-rhmpcitrix-cpx-with-ingress-controller-operator-rhmp
    • CRD
    • +
    • ClusterRole
    • +
    @@ -2334,15 +2339,7 @@
    Partially complying with the recommendations
      -
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kong-offline-operator-rhmpcortex-hub-operator-rhmp
      @@ -2365,14 +2362,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    armory-operator-rhmpappdynamics-operator-rhmp
      @@ -2395,14 +2394,14 @@
      Partially complying with the recommendations
      -
    • v1alpha2
    • +
    • alpha
      -
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    xcrypt-operator-rhmpaci-containers-operator
      @@ -2459,14 +2458,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    seldon-operator-certified-rhmpredis-enterprise-operator-cert-rhmp
      @@ -2489,28 +2488,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • - -
    • stable
    • +
    • preview
      -
    • 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: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)
    • +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    k10-kasten-operator-rhmpnode-red-operator-rhm-certified-rhmp
      @@ -2535,22 +2520,12 @@
      Partially complying with the recommendations
    • alpha
    • -
    • stable
    • -
      -
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    open-enterprise-spinnaker-rhmprapidbiz-operator-certified-rhmp
      @@ -2580,7 +2555,7 @@
      Partially complying with the recommendations
      -
    • open-enterprise-spinnaker.v1.21.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    appranix-cps-rhmpinstana-agent-rhmp
      @@ -2603,18 +2578,34 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • deprecated
    • +
    • beta
      -
    • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • instana-agent-operator.v0.2.6 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],head:YES,defaultChannel:NO, 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:YES,defaultChannel:YES, deprecated:NO)
    starburst-enterprise-helm-operator-rhmpcortex-healthcare-hub-operator-rhmp
      @@ -2637,14 +2628,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    robin-storage-enterprise-rhmpstarburst-enterprise-helm-operator-rhmp
      @@ -2667,14 +2660,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rocketchat-operator-certifiedmf-cics-tg-operator-rhmp
      @@ -2697,14 +2690,14 @@
      Partially complying with the recommendations
      -
    • beta
    • +
    • alpha
      -
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    memql-certified-rhmpcass-operator-rhmp
      @@ -2727,24 +2720,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • 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)
    • +
    • cass-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • cass-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • cass-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • cass-operator.v1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],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)
    • +
    • cass-operator.v1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    db2-zos-db-operator-rhmporca-rhmp
      @@ -2767,14 +2758,18 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • beta
      -
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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)
    joget-openshift-operator-rhmpcyberarmor-operator-certified-rhmp
      @@ -2804,7 +2799,7 @@
      Partially complying with the recommendations
      -
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jtrac-app-operator-rhmpkubeplus-rhmp
      -
    • ClusterRole
    • -
    • CRD
    @@ -2836,7 +2829,7 @@
    Partially complying with the recommendations
      -
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mongodb-enterprise-rhmpappranix-cps-rhmp
    • CRD
    • -
    • UNKNOWN
    • -
    @@ -2863,62 +2854,46 @@
    Partially complying with the recommendations
  • 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:YES,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.4 - (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)
    • +
    • deprecated
    • + +
    +
    +
      -
    • mongodb-enterprise.v1.6.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • appranix-operator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,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)
    • +
    • appranix.v2.3.0 - (label=v4.5,v4.6,max=4.8,channels=[deprecated],head:YES,defaultChannel:NO, 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)
    • +
    +
    armory-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • v1alpha2
    • + +
    +
    +
      -
    • mongodb-enterprise.v1.9.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    percona-server-mongodb-operator-certified-rhmpsysdig-certified-rhmp
      @@ -2948,7 +2923,7 @@
      Partially complying with the recommendations
      -
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    traefikee-redhat-certified-rhmpcloudhedge-rhmp
      @@ -2971,14 +2946,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    aqua-operator-certified-rhmpzabbix-operator-certified-rhmp
      @@ -3001,18 +2980,16 @@
      Partially complying with the recommendations
      -
    • latest
    • - -
    • alpha
    • +
    • lts
      -
    • aqua-operator.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • zabbix-operator-certified.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • aqua-operator.v5.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • zabbix-operator-certified.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[lts],head:YES,defaultChannel:YES, deprecated:NO)
    openunison-ocp-certified-rhmpaqua-operator-certified-rhmp
      @@ -3035,14 +3012,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • latest
    • + +
    • alpha
      -
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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:YES, deprecated:NO)
    @@ -3074,12 +3055,10 @@
    Fully complying with the recommendations
    - + - + - + @@ -3161,14 +3140,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + @@ -3349,14 +3324,14 @@
    Fully complying with the recommendations
    - + - + - + @@ -3437,14 +3408,14 @@
    Fully complying with the recommendations
    - + - + @@ -3493,14 +3466,14 @@
    Fully complying with the recommendations
    - + @@ -3521,14 +3494,14 @@
    Fully complying with the recommendations
    - + - + @@ -3585,14 +3560,14 @@
    Fully complying with the recommendations
    - + @@ -3613,14 +3588,14 @@
    Fully complying with the recommendations
    - + @@ -3641,14 +3616,14 @@
    Fully complying with the recommendations
    - + - + diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/grade_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/grade_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html index 7bf93592..1fecb8ca 100644 --- a/testdata/reports/redhat_redhat_marketplace_index/dashboards/grade_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/grade_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html @@ -143,28 +143,28 @@
    Grade
    - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - - - + + + - + - + - + - + - + - - - + + + + + + + + + + + + + + + + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -16314,27 +16345,29 @@
    Grade
    - + - + - - - - - - - - - - - - - - + diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html new file mode 100644 index 00000000..49658cca --- /dev/null +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.6_2021-09-06.html @@ -0,0 +1,3928 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-marketplace-index:v4.6
    • +
    • Image ID: sha256:e593e57b15a2f19a7ceebb30a4d4e77c101b88053ce9b4b53ec19f625dae409c
    • +
    • Image Created at: 2021-09-05T00:15:49.337550155Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    +
    seldon-deploy-operator-rhmphpe-csi-operator-rhmp
      -
    • CRD
    • -
    @@ -3087,60 +3066,60 @@
    Fully complying with the recommendations
  • stable
  • -
  • alpha
  • -
      -
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    aikit-operator-rhmpcrunchy-postgres-operator-rhmp
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
    • + +
    • v5
      +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    minio-operator-rhmpovms-operator-rhmp
      @@ -3149,7 +3128,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    anzounstructured-operator-rhmpvfunction-server-operator-rhmp
      @@ -3189,14 +3168,14 @@
      Fully complying with the recommendations
      -
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    hpe-csi-operator-rhmpanzounstructured-operator-rhmp
      @@ -3217,17 +3196,19 @@
      Fully complying with the recommendations
      -
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzo-operator-rhmpcouchbase-enterprise-certified-rhmp
      +
    • CRD
    • +
    @@ -3240,19 +3221,31 @@
    Fully complying with the recommendations
      +
    • 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)
    • +
      -
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • couchbase-operator.v2.2.0-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    entando-k8s-operator-rhmp
      @@ -3261,12 +3254,6 @@
      Fully complying with the recommendations
      -
    • stable
    • - -
    • alpha
    • - -
    • beta
    • -
    @@ -3277,21 +3264,19 @@
    Fully complying with the recommendations
      -
    • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.0.1 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • entando-k8s-operator.v6.3.2-pr3 - (label=v4.6,max=not set,channels=[alpha beta],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    couchbase-enterprise-certified-rhmplinstor-operator-rhmp
      -
    • CRD
    • -
    @@ -3299,36 +3284,26 @@
    Fully complying with the recommendations
  • stable
  • +
  • alpha
  • +
      -
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ovms-operator-rhmpgpu-operator-certified-rhmp
      @@ -3337,7 +3312,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • v1.8
      -
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    linstor-operator-rhmpanzograph-operator-rhmp
      @@ -3367,8 +3342,6 @@
      Fully complying with the recommendations
    • stable
    • -
    • alpha
    • -
    @@ -3379,14 +3352,14 @@
    Fully complying with the recommendations
      -
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    minio-operator-rhmp
      @@ -3395,6 +3368,8 @@
      Fully complying with the recommendations
      +
    • stable
    • +
    @@ -3405,16 +3380,14 @@
    Fully complying with the recommendations
      -
    • cockroach-operator.v2.0.1 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certified-rhmpcloudbees-ci-rhmp
      @@ -3423,9 +3396,7 @@
      Fully complying with the recommendations
      -
    • beta
    • - -
    • stable
    • +
    • alpha
      -
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    iomesh-operator-rhmpcockroachdb-certified-rhmp
      @@ -3453,6 +3424,8 @@
      Fully complying with the recommendations
      +
    • beta
    • +
    • stable
    @@ -3465,14 +3438,14 @@
    Fully complying with the recommendations
      -
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    anzograph-operator-rhmpaikit-operator-rhmp
      @@ -3481,7 +3454,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • alpha
      -
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gpu-operator-certified-rhmpop-svc-jenkins-rhmp
      @@ -3509,7 +3482,7 @@
      Fully complying with the recommendations
      -
    • v1.8
    • +
    • alpha
      -
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    crunchy-postgres-operator-rhmpseldon-deploy-operator-rhmp
      @@ -3541,30 +3514,32 @@
      Fully complying with the recommendations
    • stable
    • -
    • v5
    • +
    • alpha
      -
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • +
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ccm-node-agent-operator-rhmpanzo-operator-rhmp
      @@ -3573,7 +3548,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    vfunction-server-operator-rhmpnutanixcsioperator-rhmp
      @@ -3601,7 +3576,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • beta
      -
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    nutanixcsioperator-rhmpiomesh-operator-rhmp
      @@ -3629,7 +3604,7 @@
      Fully complying with the recommendations
      -
    • beta
    • +
    • stable
      -
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cloudbees-ci-rhmpentando-k8s-operator-rhmp
      @@ -3657,8 +3632,12 @@
      Fully complying with the recommendations
      +
    • stable
    • +
    • alpha
    • +
    • beta
    • +
    @@ -3669,14 +3648,16 @@
    Fully complying with the recommendations
      -
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 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-pr3 - (label=v4.6,max=not set,channels=[alpha beta],head:YES,defaultChannel:NO, deprecated:NO)
    op-svc-jenkins-rhmpccm-node-agent-operator-rhmp
      @@ -3697,7 +3678,7 @@
      Fully complying with the recommendations
      -
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cockroachdb-certified-rhmplinstor-operator-rhmp

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -173,90 +173,59 @@
    Grade

    NOT USED

    USED

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For cockroach-operator.v2.1.0:

      - -

    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • - - -
      -

      For cockroach-operator.v2.1.0:

      - -

    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cockroach-operator.v2.1.0:

      +

      For linstor-operator.v1.5.1:

      -

    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.

    • -

      For cockroach-operator.v2.1.0:

      +

      For linstor-operator.v1.5.1:

      -

    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -266,32 +235,32 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade B
    (700)
    db2-zos-db-operator-rhmpzabbix-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • lts
    @@ -300,45 +269,165 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For db2-zos-db-operator.v0.0.2:

      +

      For zabbix-operator-certified.v0.0.2:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" hostname does not have a spec descriptor
    • +
    • "ERROR" java_gateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image` in Db2-zos-db/v1alpha1
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" web does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" server does not have a spec descriptor
    • + +
    • "ERROR" web does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" proxy does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" proxy does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" web does not have a spec descriptor
    • + +
    • "ERROR" server does not have a spec descriptor
    • + +
    • "ERROR" hostname does not have a spec descriptor
    • + +
    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • + +
    • "ERROR" web does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" server does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" proxy does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" proxy does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" server does not have a spec descriptor
    • + +
    • "ERROR" web does not have a spec descriptor
    • + +
    • "ERROR" java_gateway does not have a spec descriptor
    • + +
    • "ERROR" server does not have a spec descriptor
    • + +
    • "ERROR" web does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • + +
    • "WARNING" Add a spec descriptor for hostname
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for hostname
    • + +
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add a spec descriptor for java_gateway
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for web
    • + +
    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • @@ -349,27 +438,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For db2-zos-db-operator.v0.0.2:

      +

      For zabbix-operator-certified.v0.0.2:

      -

    • "WARNING" (db2-zos-db-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (zabbix-operator-certified.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -379,77 +468,81 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    hpe-csi-operator-rhmpako-operator-rhmp -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For hpe-csi-operator.v2.0.0:

      - -

    • "ERROR" disable does not have a spec descriptor
    • - -
    • "ERROR" kubeletRootDir does not have a spec descriptor
    • - -
    • "ERROR" disableNodeGetVolumeStats does not have a spec descriptor
    • +

      For ako-operator.v1.4.2:

      -

    • "ERROR" cspClientTimeout does not have a spec descriptor
    • +
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=AviInfraSetting: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for disable
    • +
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HostRule: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for kubeletRootDir
    • +
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HTTPRule: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for disableNodeGetVolumeStats
    • +
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=GatewayClass: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for cspClientTimeout
    • +
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=Gateway: provided API should have an example annotation
    • @@ -458,93 +551,147 @@
      Grade
    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For ako-operator.v1.4.2:

      + +

    • "ERROR" (ako-operator.v1.4.2) csv.Spec.Maintainers email https://github.com/vmware/load-balancer-and-ingress-services-for-kubernetes is invalid: mail: missing '@' or angle-addr
    • + + +
    • "WARNING" (ako-operator.v1.4.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + + + +
    +
    +

    NOT USED

    Grade B
    (700)
    Grade D
    (200)
    mf-cics-tg-operator-rhmpfederatorai-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For mf-cics-tg-operator.v0.0.1:

      +

      For federatorai.v4.6.1-2:

      -

    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" alamedaInfluxdb does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" fedemeterInfluxdb does not have a spec descriptor
    • +
    • "ERROR" imageLocation does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" keycode does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-tg/v1alpha1
    • +
    • "ERROR" storages does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" alamedaAi does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `storages` in AlamedaService/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `version` in AlamedaService/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `alamedaAi` in AlamedaService/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `alamedaInfluxdb` in AlamedaService/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `fedemeterInfluxdb` in AlamedaService/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imageLocation` in AlamedaService/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `keycode` in AlamedaService/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for alamedaInfluxdb
    • + +
    • "WARNING" Add a spec descriptor for fedemeterInfluxdb
    • + +
    • "WARNING" Add a spec descriptor for imageLocation
    • + +
    • "WARNING" Add a spec descriptor for keycode
    • + +
    • "WARNING" Add a spec descriptor for storages
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for alamedaAi
    • @@ -555,27 +702,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For mf-cics-tg-operator.v0.0.1:

      +

      For federatorai.v4.6.1-2:

      -

    • "WARNING" (mf-cics-tg-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (federatorai.v4.6.1-2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alamedaservices.federatorai.containers.ai"])
    • @@ -585,28 +732,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    seldon-deploy-operator-rhmpstonebranch-universalagent-operator-certified-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -619,11 +766,11 @@
      Grade

    NOT USED

    @@ -633,227 +780,611 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For seldon-deploy-operator.v1.2.1:

      +

      For universalagent-operator.v1.1.0:

      -

    • "ERROR" seldondeploys.machinelearning.seldon.io does not have a status descriptor
    • +
    • "ERROR" stonebranches.agent.stonebranch.com does not have a status descriptor
    • -
    • "ERROR" external does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" createSharedPersistentVolumeClaim does not have a spec descriptor
    • -
    • "ERROR" metadata does not have a spec descriptor
    • +
    • "ERROR" useExistingSharedStorage does not have a spec descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "ERROR" elasticsearch does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `config` in Stonebranch/v1alpha1
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `createSharedPersistentVolumeClaim` in Stonebranch/v1alpha1
    • -
    • "ERROR" skipVerifyHttpCalls does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `useExistingSharedStorage` in Stonebranch/v1alpha1
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for createSharedPersistentVolumeClaim
    • -
    • "ERROR" batchjobs does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for useExistingSharedStorage
    • -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "ERROR" enableAppAuth does not have a spec descriptor
    • -
    • "ERROR" openshiftMarketplace does not have a spec descriptor
    • -
    • "ERROR" requestLogger does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "ERROR" alibidetect does not have a spec descriptor
    • +
      +

      For universalagent-operator.v1.1.0:

      -

    • "ERROR" enableAppAnalytics does not have a spec descriptor
    • -
    • "ERROR" prometheus does not have a spec descriptor
    • +
    • "WARNING" (universalagent-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" virtualService does not have a spec descriptor
    • -
    • "ERROR" docker does not have a spec descriptor
    • - -
    • "ERROR" env does not have a spec descriptor
    • -
    • "ERROR" loadtest does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    armory-operator-rhmp +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • v1alpha2
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    PASS

    + + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" serviceAccountName does not have a spec descriptor
    • -
    • "ERROR" ingressGateway does not have a spec descriptor
    • +
      +

      For armory-operator.v1.2.0-ubi:

      -

    • "ERROR" seldon does not have a spec descriptor
    • -
    • "ERROR" defaultUserID does not have a spec descriptor
    • +
    • "WARNING" (armory-operator.v1.2.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" gitops does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" kfserving does not have a spec descriptor
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    cert-manager-operator-rhmp +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" rbac does not have a spec descriptor
    • + +
      +

      For cert-manager-operator.v1.1.0:

      -

    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `prometheus` in SeldonDeploy/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `virtualService` in SeldonDeploy/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `serviceAccountName` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for CertManager/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `docker` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in SeldonDeploy/v1alpha1
    • +
      +

      For cert-manager-operator.v1.1.0:

      -

    • "WARNING" Add CRD validation for spec field `openshiftMarketplace` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `requestLogger` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `tolerations` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `defaultUserID` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for CertManager/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `env` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `kfserving` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `metadata` in SeldonDeploy/v1alpha1
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `enableAppAuth` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `loadtest` in SeldonDeploy/v1alpha1
    • +
      +

      For cert-manager-operator.v1.1.0:

      -

    • "WARNING" Add CRD validation for spec field `gitops` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nameOverride` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" (cert-manager-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in SeldonDeploy/v1alpha1
    • +
      +

      For cert-manager-operator.v1.1.0:

      -

    • "WARNING" Add CRD validation for spec field `alibidetect` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `batchjobs` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" (cert-manager-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `enableAppAnalytics` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" Add CRD validation for spec field `ingressGateway` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `resources` in SeldonDeploy/v1alpha1
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    gpu-operator-certified-rhmp +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • v1.8
    • + +
    +
    + +
    +

    USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `skipVerifyHttpCalls` in SeldonDeploy/v1alpha1
    • + +
      +

      For gpu-operator-certified.v1.8.0:

      -

    • "WARNING" Add CRD validation for spec field `external` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" validator does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" migManager does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" nodeStatusExporter does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `rbac` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" mig does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `elasticsearch` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" dcgm does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `seldon` in SeldonDeploy/v1alpha1
    • +
    • "ERROR" daemonsets does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `service` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for external
    • +
    • "WARNING" Add a spec descriptor for validator
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add a spec descriptor for migManager
    • -
    • "WARNING" Add a spec descriptor for metadata
    • +
    • "WARNING" Add a spec descriptor for nodeStatusExporter
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add a spec descriptor for mig
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add a spec descriptor for dcgm
    • -
    • "WARNING" Add a spec descriptor for elasticsearch
    • +
    • "WARNING" Add a spec descriptor for daemonsets
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add a spec descriptor for skipVerifyHttpCalls
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for batchjobs
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
      +

      For gpu-operator-certified.v1.8.0:

      -

    • "WARNING" Add a spec descriptor for enableAppAuth
    • -
    • "WARNING" Add a spec descriptor for openshiftMarketplace
    • +
    • "WARNING" (gpu-operator-certified.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for requestLogger
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add a spec descriptor for alibidetect
    • +
    +
    + +

    NOT USED

    Grade B
    (700)
    joget-dx-operator-rhmp +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for enableAppAnalytics
    • + +
      +

      For joget-dx-openshift-operator.v0.0.12:

      -

    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for virtualService
    • +
    • "ERROR" jogetdx.app.joget.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for docker
    • -
    • "WARNING" Add a spec descriptor for env
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add a spec descriptor for loadtest
    • +
    • "WARNING" Add CRD validation for JogetDX/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for serviceAccountName
    • -
    • "WARNING" Add a spec descriptor for ingressGateway
    • -
    • "WARNING" Add a spec descriptor for seldon
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for defaultUserID
    • -
    • "WARNING" Add a spec descriptor for gitops
    • +
      +

      For joget-dx-openshift-operator.v0.0.12:

      -

    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for kfserving
    • +
    • "WARNING" (joget-dx-openshift-operator.v0.0.12) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jogetdx.app.joget.com"])
    • -
    • "WARNING" Add a spec descriptor for rbac
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    seldon-deploy-operator-rhmp +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +

      For seldon-deploy-operator.v1.2.1:

      @@ -1061,403 +1592,211 @@

      Grade
    • "WARNING" Add a spec descriptor for resources
    • +
      +

      For seldon-deploy-operator.v1.2.1:

      -

    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For seldon-deploy-operator.v1.2.1:

      - - -

    • "WARNING" (seldon-deploy-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - - -
      -

      For seldon-deploy-operator.v1.2.1:

      - +

    • "ERROR" seldondeploys.machinelearning.seldon.io does not have a status descriptor
    • -
    • "WARNING" (seldon-deploy-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" external does not have a spec descriptor
    • +
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" metadata does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade B
    (600)
    rocketchat-operator-certified -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
      -

      For rocketchat-operator.v0.1.0:

      +

    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" elasticsearch does not have a spec descriptor
    • -
    • "ERROR" mongodbSecretName does not have a spec descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "ERROR" rocketchatReplicas does not have a spec descriptor
    • +
    • "ERROR" skipVerifyHttpCalls does not have a spec descriptor
    • -
    • "ERROR" volumeCapacity does not have a spec descriptor
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "ERROR" labels does not have a spec descriptor
    • +
    • "ERROR" batchjobs does not have a spec descriptor
    • -
    • "ERROR" memoryLimit does not have a spec descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" mongodbDatabase does not have a spec descriptor
    • +
    • "ERROR" enableAppAuth does not have a spec descriptor
    • -
    • "ERROR" mongodbReplicaName does not have a spec descriptor
    • +
    • "ERROR" openshiftMarketplace does not have a spec descriptor
    • -
    • "ERROR" mongodbReplicas does not have a spec descriptor
    • +
    • "ERROR" requestLogger does not have a spec descriptor
    • -
    • "ERROR" rocketchats.open.rocket.chat does not have a status descriptor
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" alibidetect does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `volumeCapacity` in RocketChat/v1alpha1
    • +
    • "ERROR" enableAppAnalytics does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `labels` in RocketChat/v1alpha1
    • +
    • "ERROR" prometheus does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `memoryLimit` in RocketChat/v1alpha1
    • +
    • "ERROR" service does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `mongodbDatabase` in RocketChat/v1alpha1
    • +
    • "ERROR" virtualService does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `mongodbReplicaName` in RocketChat/v1alpha1
    • +
    • "ERROR" docker does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `mongodbReplicas` in RocketChat/v1alpha1
    • +
    • "ERROR" env does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `mongodbSecretName` in RocketChat/v1alpha1
    • +
    • "ERROR" loadtest does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `rocketchatReplicas` in RocketChat/v1alpha1
    • +
    • "ERROR" serviceAccountName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for mongodbSecretName
    • +
    • "ERROR" ingressGateway does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for rocketchatReplicas
    • +
    • "ERROR" seldon does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for volumeCapacity
    • +
    • "ERROR" defaultUserID does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for labels
    • +
    • "ERROR" gitops does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for memoryLimit
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for mongodbDatabase
    • +
    • "ERROR" kfserving does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for mongodbReplicaName
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for mongodbReplicas
    • +
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `prometheus` in SeldonDeploy/v1alpha1
    • -
      -

      For rocketchat-operator.v0.1.0:

      +

    • "WARNING" Add CRD validation for spec field `virtualService` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `serviceAccountName` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" (rocketchat-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `docker` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `openshiftMarketplace` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `requestLogger` in SeldonDeploy/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    cortex-certifai-operator-rhmp -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `tolerations` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `defaultUserID` in SeldonDeploy/v1alpha1
    • -
      -

      For cortex-certifai-operator.v1.3.10:

      +

    • "WARNING" Add CRD validation for spec field `env` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `kfserving` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" (cortex-certifai-operator.v1.3.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `metadata` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `enableAppAuth` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `loadtest` in SeldonDeploy/v1alpha1
    • -
      -

      For cortex-certifai-operator.v1.3.11-rc.4:

      +

    • "WARNING" Add CRD validation for spec field `gitops` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" (cortex-certifai-operator.v1.3.11-rc.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in SeldonDeploy/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `affinity` in SeldonDeploy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `alibidetect` in SeldonDeploy/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade C
    (500)
    federatorai-certified-rhmp -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `batchjobs` in SeldonDeploy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `enableAppAnalytics` in SeldonDeploy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ingressGateway` in SeldonDeploy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in SeldonDeploy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in SeldonDeploy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `skipVerifyHttpCalls` in SeldonDeploy/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `external` in SeldonDeploy/v1alpha1
    • - -
      -

      For federatorai.v4.6.1-2:

      +

    • "WARNING" Add CRD validation for spec field `fullnameOverride` in SeldonDeploy/v1alpha1
    • -
    • "ERROR" alamedaInfluxdb does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `image` in SeldonDeploy/v1alpha1
    • -
    • "ERROR" fedemeterInfluxdb does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `rbac` in SeldonDeploy/v1alpha1
    • -
    • "ERROR" imageLocation does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `elasticsearch` in SeldonDeploy/v1alpha1
    • -
    • "ERROR" keycode does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `seldon` in SeldonDeploy/v1alpha1
    • -
    • "ERROR" storages does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `service` in SeldonDeploy/v1alpha1
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for external
    • -
    • "ERROR" alamedaAi does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add a spec descriptor for metadata
    • -
    • "WARNING" Add CRD validation for spec field `storages` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add CRD validation for spec field `version` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "WARNING" Add CRD validation for spec field `alamedaAi` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for elasticsearch
    • -
    • "WARNING" Add CRD validation for spec field `alamedaInfluxdb` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add CRD validation for spec field `fedemeterInfluxdb` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for skipVerifyHttpCalls
    • -
    • "WARNING" Add CRD validation for spec field `imageLocation` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Add CRD validation for spec field `keycode` in AlamedaService/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for batchjobs
    • -
    • "WARNING" Add a spec descriptor for alamedaInfluxdb
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for fedemeterInfluxdb
    • +
    • "WARNING" Add a spec descriptor for enableAppAuth
    • -
    • "WARNING" Add a spec descriptor for imageLocation
    • +
    • "WARNING" Add a spec descriptor for openshiftMarketplace
    • -
    • "WARNING" Add a spec descriptor for keycode
    • +
    • "WARNING" Add a spec descriptor for requestLogger
    • -
    • "WARNING" Add a spec descriptor for storages
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for alibidetect
    • -
    • "WARNING" Add a spec descriptor for alamedaAi
    • +
    • "WARNING" Add a spec descriptor for enableAppAnalytics
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for service
    • + +
    • "WARNING" Add a spec descriptor for virtualService
    • + +
    • "WARNING" Add a spec descriptor for docker
    • + +
    • "WARNING" Add a spec descriptor for env
    • + +
    • "WARNING" Add a spec descriptor for loadtest
    • + +
    • "WARNING" Add a spec descriptor for serviceAccountName
    • + +
    • "WARNING" Add a spec descriptor for ingressGateway
    • + +
    • "WARNING" Add a spec descriptor for seldon
    • + +
    • "WARNING" Add a spec descriptor for defaultUserID
    • + +
    • "WARNING" Add a spec descriptor for gitops
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for kfserving
    • + +
    • "WARNING" Add a spec descriptor for nameOverride
    • + +
    • "WARNING" Add a spec descriptor for rbac
    • + +
    • "WARNING" Add a spec descriptor for resources
    • @@ -1468,27 +1807,32 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For federatorai.v4.6.1-2:

      +

      For seldon-deploy-operator.v1.2.1:

      -

    • "WARNING" (federatorai.v4.6.1-2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (seldon-deploy-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["alamedaservices.federatorai.containers.ai"])
    • + +
      +

      For seldon-deploy-operator.v1.2.1:

      + + +

    • "WARNING" (seldon-deploy-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -1498,32 +1842,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (600)
    runtime-component-operator-certified-rhmpvprotect-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -1532,11 +1876,11 @@
    Grade

    NOT USED

    @@ -1544,114 +1888,63 @@
    Grade

    NOT USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    -
      + +Info +
      +
        + +
        +

        For vprotect-operator.v0.0.1:

        -
        -

        For runtime-component-operator.v0.7.0:

        +

      • "ERROR" vprotectdbservernodes.vprotect.storware.com does not have a status descriptor
      • +
      • "ERROR" imagePullSecretsName does not have a spec descriptor
      • -
      • "WARNING" (runtime-component-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "ERROR" initcontainerimage does not have a spec descriptor
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "ERROR" mariadb does not have a spec descriptor
      • +
      • "ERROR" server does not have a spec descriptor
      • +
      • "ERROR" node does not have a spec descriptor
      • -
      -
      - -

    NOT USED

    Grade C
    (400)
    t8c-certified-rhmp -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" useImagePullSecret does not have a spec descriptor
    • - -
      -

      For t8c-operator.v8.2.0:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `node` in VProtectDBServerNode/v1alpha1
    • -
    • "ERROR" global does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `useImagePullSecret` in VProtectDBServerNode/v1alpha1
    • -
    • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecretsName` in VProtectDBServerNode/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `initcontainerimage` in VProtectDBServerNode/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for global
    • +
    • "WARNING" Add CRD validation for spec field `mariadb` in VProtectDBServerNode/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `server` in VProtectDBServerNode/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecretsName
    • + +
    • "WARNING" Add a spec descriptor for initcontainerimage
    • + +
    • "WARNING" Add a spec descriptor for mariadb
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for node
    • + +
    • "WARNING" Add a spec descriptor for useImagePullSecret
    • @@ -1662,27 +1955,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For t8c-operator.v8.2.0:

      +

      For vprotect-operator.v0.0.1:

      -

    • "WARNING" (t8c-operator.v8.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (vprotect-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -1692,22 +1985,22 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    iomesh-operator-rhmpfep-ansible-operator -

    COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -1716,41 +2009,119 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For iomesh-operator.v0.0.1:

      +

      For fujitsu-enterprise-operator.v2.0.0:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" fepclusters.fep.fujitsu.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value : (iomesh-operator.v0.0.1) example annotations not found
    • +
    • "ERROR" fepactions.fep.fujitsu.io does not have a status descriptor
    • + +
    • "ERROR" feppgpool2s.fep.fujitsu.io does not have a status descriptor
    • + +
    • "ERROR" feprestores.fep.fujitsu.io does not have a status descriptor
    • + +
    • "ERROR" fep does not have a spec descriptor
    • + +
    • "ERROR" startupValues does not have a spec descriptor
    • + +
    • "ERROR" sysExtraLogging does not have a spec descriptor
    • + +
    • "ERROR" targetClusterName does not have a spec descriptor
    • + +
    • "ERROR" fepAction does not have a spec descriptor
    • + +
    • "ERROR" fepclustername does not have a spec descriptor
    • + +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • + +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • + +
    • "ERROR" fromFEPcluster does not have a spec descriptor
    • + +
    • "ERROR" toFEPcluster does not have a spec descriptor
    • + +
    • "ERROR" restoretype does not have a spec descriptor
    • + + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPPgpool2Cert: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPConfig: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPVolume: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPCert: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPUser: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPBackup: provided API should have an example annotation
    • + +
    • "WARNING" Add a spec descriptor for fep
    • + +
    • "WARNING" Add a spec descriptor for startupValues
    • + +
    • "WARNING" Add a spec descriptor for sysExtraLogging
    • + +
    • "WARNING" Add a spec descriptor for targetClusterName
    • + +
    • "WARNING" Add a spec descriptor for fepAction
    • + +
    • "WARNING" Add a spec descriptor for fepclustername
    • + +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • + +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • + +
    • "WARNING" Add a spec descriptor for fromFEPcluster
    • + +
    • "WARNING" Add a spec descriptor for toFEPcluster
    • + +
    • "WARNING" Add a spec descriptor for restoretype
    • + +
    • "WARNING" Add CRD validation for FEPCluster/v2
    • + +
    • "WARNING" Add CRD validation for FEPAction/v1
    • + +
    • "WARNING" Add CRD validation for spec field `fepclustername` in FEPPgpool2/v1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPPgpool2/v1
    • + +
    • "WARNING" Add CRD validation for spec field `fromFEPcluster` in FEPRestore/v1
    • + +
    • "WARNING" Add CRD validation for spec field `toFEPcluster` in FEPRestore/v1
    • + +
    • "WARNING" Add CRD validation for spec field `restoretype` in FEPRestore/v1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPRestore/v1
    • @@ -1759,31 +2130,41 @@
      Grade
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For iomesh-operator.v0.0.1:

      +

      For fujitsu-enterprise-operator.v2.0.0:

      -

    • "ERROR" (iomesh-operator.v0.0.1) csv.Spec.Icon elements should contain both data and mediatype
    • +
    • "WARNING" (fujitsu-enterprise-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" (iomesh-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" (iomesh-operator.v0.0.1) example annotations not found
    • +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -1793,28 +2174,28 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (300)
    joget-openshift-operator-rhmpseldon-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -1825,90 +2206,61 @@
      Grade
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • joget-openshift-operator.v0.0.4
    • - -
    -
    -

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For joget-openshift-operator.v0.0.4:

      - -

    • "ERROR" size does not have a spec descriptor
    • - -
    • "ERROR" joget.app.joget.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for size
    • - -
    • "WARNING" Add CRD validation for Joget/v1alpha1
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For joget-openshift-operator.v0.0.4:

      +

      For seldon-operator.v1.6.0:

      -

    • "WARNING" (joget-openshift-operator.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For seldon-operator.v1.2.2:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -1918,32 +2270,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (400)
    anaconda-team-edition-rhmpcrunchy-postgres-operator-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • v5
    @@ -1952,11 +2304,11 @@
    Grade

    NOT USED

    @@ -1966,75 +2318,58 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For anaconda-team-edition.v6.1.3:

      - -

    • "ERROR" anacondateameditions.anaconda.com does not have a status descriptor
    • - -
    • "ERROR" worker does not have a spec descriptor
    • - -
    • "ERROR" api does not have a spec descriptor
    • - -
    • "ERROR" dispatcher does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" proxy does not have a spec descriptor
    • - -
    • "ERROR" redis does not have a spec descriptor
    • + +
      +

      For postgresoperator.v4.6.2:

      -

    • "ERROR" storage does not have a spec descriptor
    • +
    • "ERROR" ReplicaStorage does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" podAntiAffinity does not have a spec descriptor
    • +
    • "ERROR" namespace does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `route` in AnacondaTeamEdition/v1beta1
    • +
    • "ERROR" BackrestStorage does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in AnacondaTeamEdition/v1beta1
    • +
    • "ERROR" user does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `proxy` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add CRD validation for spec field `redis` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `namespace` in Pgcluster/v1
    • -
    • "WARNING" Add CRD validation for spec field `storage` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `ReplicaStorage` in Pgcluster/v1
    • -
    • "WARNING" Add CRD validation for spec field `worker` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `podAntiAffinity` in Pgcluster/v1
    • -
    • "WARNING" Add CRD validation for spec field `api` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `BackrestStorage` in Pgcluster/v1
    • -
    • "WARNING" Add CRD validation for spec field `dispatcher` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `user` in Pgcluster/v1
    • -
    • "WARNING" Add a spec descriptor for worker
    • +
    • "WARNING" Add a spec descriptor for ReplicaStorage
    • -
    • "WARNING" Add a spec descriptor for api
    • +
    • "WARNING" Add a spec descriptor for podAntiAffinity
    • -
    • "WARNING" Add a spec descriptor for dispatcher
    • +
    • "WARNING" Add a spec descriptor for namespace
    • -
    • "WARNING" Add a spec descriptor for route
    • +
    • "WARNING" Add a spec descriptor for BackrestStorage
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "WARNING" Add a spec descriptor for user
    • -
    • "WARNING" Add a spec descriptor for proxy
    • -
    • "WARNING" Add a spec descriptor for redis
    • +
      +

      For postgresoperator.v5.0.2:

      -

    • "WARNING" Add a spec descriptor for storage
    • @@ -2043,33 +2378,32 @@
      Grade
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For anaconda-team-edition.v6.1.3:

      +

      For postgresoperator.v4.6.2:

      -

    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "WARNING" (anaconda-team-edition.v6.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
      +

      For postgresoperator.v5.0.2:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -2079,45 +2413,35 @@
      Grade

    NOT USED

    Grade D
    (100)
    Grade C
    (500)
    appdynamics-operator-rhmpminio-operator-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -2127,45 +2451,49 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For appdynamics-operator.v0.6.3:

      +

      For minio-operator.v4.1.2:

      -

    • "ERROR" adams.appdynamics.com does not have a status descriptor
    • +
    • "ERROR" tenants.minio.min.io does not have a status descriptor
    • -
    • "ERROR" clusteragents.appdynamics.com does not have a status descriptor
    • +
    • "ERROR" s3 does not have a spec descriptor
    • -
    • "ERROR" infravizs.appdynamics.com does not have a status descriptor
    • +
    • "ERROR" podManagementPolicy does not have a spec descriptor
    • -
    • "ERROR" enableDockerViz does not have a spec descriptor
    • +
    • "ERROR" console does not have a spec descriptor
    • -
    • "ERROR" enableMasters does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" netVizPort does not have a spec descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" stdoutLogging does not have a spec descriptor
    • +
    • "ERROR" pools does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for enableDockerViz
    • +
    • "WARNING" Add a spec descriptor for s3
    • -
    • "WARNING" Add a spec descriptor for enableMasters
    • +
    • "WARNING" Add a spec descriptor for podManagementPolicy
    • -
    • "WARNING" Add a spec descriptor for netVizPort
    • +
    • "WARNING" Add a spec descriptor for console
    • -
    • "WARNING" Add a spec descriptor for stdoutLogging
    • +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • + +
    • "WARNING" Add a spec descriptor for pools
    • @@ -2174,77 +2502,49 @@
      Grade
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For appdynamics-operator.v0.6.3:

      - - -

    • "WARNING" (appdynamics-operator.v0.6.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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" "infravizs.appdynamics.com"])
    • - - - -
    -
    -

    NOT USED

    Grade D
    (200)
    Grade B
    (700)
    cloudhedge-rhmpmongodb-enterprise-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -2252,42 +2552,96 @@
    Grade

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For mongodb-enterprise.v1.10.0:

      + +

    • "ERROR" persistent does not have a spec descriptor
    • + +
    • "ERROR" persistent does not have a spec descriptor
    • + +
    • "ERROR" persistent does not have a spec descriptor
    • + +
    • "ERROR" mongodbstandalones.mongodb.com does not have a status descriptor
    • + +
    • "ERROR" mongodbreplicasets.mongodb.com does not have a status descriptor
    • + +
    • "ERROR" mongodbshardedclusters.mongodb.com does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for persistent
    • + +
    • "WARNING" Add a spec descriptor for persistent
    • + +
    • "WARNING" Add a spec descriptor for persistent
    • + +
    • "WARNING" Add CRD validation for spec field `persistent` in MongoDbStandalone/v1
    • + +
    • "WARNING" Add CRD validation for spec field `project` in MongoDbStandalone/v1
    • + +
    • "WARNING" Add CRD validation for spec field `credentials` in MongoDbStandalone/v1
    • + +
    • "WARNING" Add CRD validation for spec field `version` in MongoDbStandalone/v1
    • + +
    • "WARNING" Add CRD validation for spec field `credentials` in MongoDbReplicaSet/v1
    • + +
    • "WARNING" Add CRD validation for spec field `version` in MongoDbReplicaSet/v1
    • + +
    • "WARNING" Add CRD validation for spec field `persistent` in MongoDbReplicaSet/v1
    • + +
    • "WARNING" Add CRD validation for spec field `project` in MongoDbReplicaSet/v1
    • + +
    • "WARNING" Add CRD validation for spec field `project` in MongoDbShardedCluster/v1
    • + +
    • "WARNING" Add CRD validation for spec field `credentials` in MongoDbShardedCluster/v1
    • + +
    • "WARNING" Add CRD validation for spec field `version` in MongoDbShardedCluster/v1
    • + +
    • "WARNING" Add CRD validation for spec field `persistent` in MongoDbShardedCluster/v1
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cloudhedge.v1.0.6:

      - +

      For mongodb-enterprise.v1.10.0:

      -

    • "WARNING" (cloudhedge.v1.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cloudhedgeappliances.cloudhedge.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -2297,34 +2651,32 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    k8s-triliovault-rhmpopen-enterprise-spinnaker-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • cluster
    • - -
    • namespaced
    • +
    • alpha
    @@ -2333,11 +2685,11 @@
    Grade

    NOT USED

    @@ -2347,60 +2699,93 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For k8s-triliovault-cluster.v2.0.4:

      +

      For open-enterprise-spinnaker.v1.21.2:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" dockerRegistries does not have a spec descriptor
    • -
    • "ERROR" nfsCredentials does not have a spec descriptor
    • +
    • "ERROR" gcs does not have a spec descriptor
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • +
    • "ERROR" minio does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • +
    • "ERROR" spinnakerFeatureFlags does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • +
    • "ERROR" azs does not have a spec descriptor
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • +
    • "ERROR" ingressGate does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nfsCredentials
    • +
    • "ERROR" kubeConfig does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" redis does not have a spec descriptor
    • -
      -

      For k8s-triliovault-cluster.v2.0.0:

      +

    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" serviceAccount does not have a spec descriptor
    • + +
    • "ERROR" halyard does not have a spec descriptor
    • + +
    • "ERROR" s3 does not have a spec descriptor
    • + +
    • "ERROR" rbac does not have a spec descriptor
    • + +
    • "ERROR" openenterprisespinnakeroperators.charts.helm.k8s.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" nfsCredentials does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dockerRegistries
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for gcs
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for minio
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for spinnakerFeatureFlags
    • -
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add a spec descriptor for nfsCredentials
    • +
    • "WARNING" Add a spec descriptor for azs
    • + +
    • "WARNING" Add a spec descriptor for ingressGate
    • + +
    • "WARNING" Add a spec descriptor for kubeConfig
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for redis
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • + +
    • "WARNING" Add a spec descriptor for halyard
    • + +
    • "WARNING" Add a spec descriptor for s3
    • + +
    • "WARNING" Add a spec descriptor for rbac
    • + +
    • "WARNING" Add CRD validation for OpenEnterpriseSpinnakerOperator/v1alpha1
    • @@ -2411,52 +2796,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For k8s-triliovault-cluster.v2.0.4:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - -
      -

      For k8s-triliovault-cluster.v2.0.0:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • +

      For open-enterprise-spinnaker.v1.21.2:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (open-enterprise-spinnaker.v1.21.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openenterprisespinnakeroperators.charts.helm.k8s.io"])
    • @@ -2466,28 +2826,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    aikit-operator-rhmpas400rpc-operator-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -2500,59 +2860,103 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For aikit-operator.2021.2.0:

      +

      For as400rpc-operator.v0.0.1:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" aikitoperators.aikit.intel does not have a status descriptor
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" service does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" replicaCount does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" autoscaling does not have a spec descriptor
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" imagestream does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "ERROR" podSecurityContext does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in AIKitOperator/v1alpha1
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagestream` in AIKitOperator/v1alpha1
    • +
    • "ERROR" as400rpcs.openlegacy.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nameOverride` in AIKitOperator/v1alpha1
    • + +
    • "WARNING" Add CRD validation for As400rpc/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for nameOverride
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for service
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for replicaCount
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for affinity
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for autoscaling
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for imagestream
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "WARNING" Add a spec descriptor for podAnnotations
    • + +
    • "WARNING" Add a spec descriptor for podSecurityContext
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • @@ -2563,25 +2967,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For aikit-operator.2021.2.0:

      +

      For as400rpc-operator.v0.0.1:

      -

    • "WARNING" (aikit-operator.2021.2.0) csv.metadata.Name aikit-operator.2021.2.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (as400rpc-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"]),ClusterRole: (["as400rpc-operator-metrics-reader"]),
    • @@ -2591,28 +2997,28 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (200)
    can-operator-rhmpaws-event-sources-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -2625,47 +3031,99 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For can-operator.v0.0.6:

      +

      For aws-sources-operator.v0.3.0:

      -

    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" awseventsources.sources.triggermesh.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" cans.can.avanseus.com does not have a status descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "ERROR" podSecurityContext does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `size` in CAN/v1alpha1
    • +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" rbac does not have a spec descriptor
    • + +
    • "ERROR" adapters does not have a spec descriptor
    • + +
    • "ERROR" podAnnotations does not have a spec descriptor
    • + +
    • "ERROR" nameOverride does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" serviceAccount does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for podSecurityContext
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for affinity
    • + +
    • "WARNING" Add a spec descriptor for rbac
    • + +
    • "WARNING" Add a spec descriptor for adapters
    • + +
    • "WARNING" Add a spec descriptor for podAnnotations
    • + +
    • "WARNING" Add a spec descriptor for nameOverride
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add a spec descriptor for serviceAccount
    • + +
    • "WARNING" Add a spec descriptor for tolerations
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add CRD validation for AwsEventSources/v1alpha1
    • @@ -2676,27 +3134,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For can-operator.v0.0.6:

      +

      For aws-sources-operator.v0.3.0:

      -

    • "WARNING" (can-operator.v0.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (aws-sources-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cans.can.avanseus.com"]),ClusterRole: (["can-operator-metrics-reader"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -2706,13 +3164,13 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    kpow-io-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    @@ -2921,45 +3379,35 @@
    Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    timemachine-operator-rhmpt8c-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -2969,31 +3417,31 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For time-machine-operator4.v0.0.4:

      +

      For t8c-operator.v8.2.0:

      -

    • "ERROR" timemachines.tm.solution-soft.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" global does not have a spec descriptor
    • +
    • "ERROR" xls.charts.helm.k8s.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `size` in TimeMachine/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "WARNING" Add a spec descriptor for global
    • @@ -3004,27 +3452,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For time-machine-operator4.v0.0.4:

      +

      For t8c-operator.v8.2.0:

      -

    • "WARNING" (time-machine-operator4.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (t8c-operator.v8.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["timemachines.tm.solution-soft.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -3038,41 +3486,142 @@
      Grade
    cic-operator-with-crds-rhmpcortex-healthcare-hub-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      + + +
      +

      For cortex-healthcare-hub-operator.v0.0.25:

      + +

    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" hub does not have a spec descriptor
    • + +
    • "ERROR" hub-cronjob does not have a spec descriptor
    • + +
    • "ERROR" mongo-uri does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for hub
    • + +
    • "WARNING" Add a spec descriptor for hub-cronjob
    • + +
    • "WARNING" Add a spec descriptor for mongo-uri
    • + + + +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      + + +
      +

      For cortex-healthcare-hub-operator.v0.0.25:

      + + +

    • "WARNING" (cortex-healthcare-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + + +
    +

    NOT USED

    Grade D
    (200)
    hpe-csi-operator-rhmp +

    COMPLY

    +
    +

    COMPLY

    + +

    NOT USED

    @@ -3082,129 +3631,39 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-api-gateway-operator.v0.0.1:

      - -

    • "ERROR" citrixingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • - -
    • "ERROR" nsProtocol does not have a spec descriptor
    • - -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" nsVIP does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • - -
    • "ERROR" cic does not have a spec descriptor
    • - -
    • "ERROR" kubernetesURL does not have a spec descriptor
    • - -
    • "ERROR" nodeWatch does not have a spec descriptor
    • - -
    • "ERROR" nsIP does not have a spec descriptor
    • - -
    • "ERROR" nsNamespace does not have a spec descriptor
    • - -
    • "ERROR" nsPort does not have a spec descriptor
    • - -
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • - -
    • "ERROR" exporter does not have a spec descriptor
    • - -
    • "ERROR" ingressClass does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" loginFileName does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for nsProtocol
    • - -
    • "WARNING" Add a spec descriptor for logLevel
    • - -
    • "WARNING" Add a spec descriptor for nsVIP
    • - -
    • "WARNING" Add a spec descriptor for openshift
    • - -
    • "WARNING" Add a spec descriptor for cic
    • - -
    • "WARNING" Add a spec descriptor for kubernetesURL
    • - -
    • "WARNING" Add a spec descriptor for nodeWatch
    • - -
    • "WARNING" Add a spec descriptor for nsIP
    • - -
    • "WARNING" Add a spec descriptor for nsNamespace
    • - -
    • "WARNING" Add a spec descriptor for nsPort
    • - -
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • - -
    • "WARNING" Add a spec descriptor for exporter
    • - -
    • "WARNING" Add a spec descriptor for ingressClass
    • - -
    • "WARNING" Add a spec descriptor for license
    • - -
    • "WARNING" Add a spec descriptor for loginFileName
    • - -
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `loginFileName` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `cic` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • +

      For hpe-csi-operator.v2.0.0:

      -

    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixIngressController/v1alpha1
    • +
    • "ERROR" disable does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
    • +
    • "ERROR" kubeletRootDir does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
    • +
    • "ERROR" disableNodeGetVolumeStats does not have a spec descriptor
    • -
    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=authpolicy: provided API should have an example annotation
    • +
    • "ERROR" cspClientTimeout does not have a spec descriptor
    • -
    • "WARNING" Warning: Value citrix.com/v1alpha1, Kind=HTTPRoute: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value citrix.com/v1alpha1, Kind=Listener: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for disable
    • -
    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=ratelimit: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for kubeletRootDir
    • -
    • "WARNING" Warning: Value citrix.com/v1, Kind=vip: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for disableNodeGetVolumeStats
    • -
    • "WARNING" Warning: Value citrix.com/v1, Kind=rewritepolicy: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for cspClientTimeout
    • @@ -3213,72 +3672,42 @@
      Grade
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For citrix-api-gateway-operator.v0.0.1:

      - - -

    • "WARNING" (citrix-api-gateway-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    -

    NOT USED

    Grade D
    (200)
    Grade B
    (700)
    kubemq-operator-marketplace-rhmpivory-server-app-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -3291,11 +3720,11 @@
      Grade

    NOT USED

    @@ -3303,27 +3732,35 @@
    Grade

    NOT USED

    -

    ONLY ERRORS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For kubemq-operator.v1.4.0:

      +

      For ivory-server-operator.v1.0.0:

      -

    • "ERROR" error spec does not exist
    • +
    • "ERROR" ivoryservers.ivoryserver.gtsoftware.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" size does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for IvoryServer/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for size
    • @@ -3334,27 +3771,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For kubemq-operator.v1.4.0:

      +

      For ivory-server-operator.v1.0.0:

      -

    • "WARNING" (kubemq-operator.v1.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (ivory-server-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io" "kubemqconnectors.core.k8s.kubemq.io" "kubemqdashboards.core.k8s.kubemq.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -3364,137 +3801,197 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    as400rpc-operator-rhmppercona-xtradb-cluster-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For as400rpc-operator.v0.0.1:

      + +
      +

      For percona-xtradb-cluster-operator.v1.8.0:

      + +

    • "ERROR" perconaxtradbclusters.pxc.percona.com does not have a status descriptor
    • + +
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • + +
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" updateStrategy does not have a spec descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "ERROR" haproxy does not have a spec descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" logCollectorSecretName does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "ERROR" pmm does not have a spec descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" backup does not have a spec descriptor
    • -
    • "ERROR" autoscaling does not have a spec descriptor
    • +
    • "ERROR" sslInternalSecretName does not have a spec descriptor
    • -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    • "ERROR" upgradeOptions does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" secretsName does not have a spec descriptor
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "ERROR" sslSecretName does not have a spec descriptor
    • -
    • "ERROR" podSecurityContext does not have a spec descriptor
    • +
    • "ERROR" pxc does not have a spec descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" proxysql does not have a spec descriptor
    • -
    • "ERROR" as400rpcs.openlegacy.com does not have a status descriptor
    • +
    • "ERROR" logcollector does not have a spec descriptor
    • +
    • "ERROR" crVersion does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for As400rpc/v1alpha1
    • +
    • "ERROR" vaultSecretName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "ERROR" storageName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" storageName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "ERROR" backupName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "ERROR" storageName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for autoscaling
    • +
    • "ERROR" storageName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" backupName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "WARNING" Add a spec descriptor for podSecurityContext
    • +
    • "WARNING" Add a spec descriptor for updateStrategy
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add a spec descriptor for haproxy
    • + +
    • "WARNING" Add a spec descriptor for logCollectorSecretName
    • + +
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • + +
    • "WARNING" Add a spec descriptor for pmm
    • + +
    • "WARNING" Add a spec descriptor for backup
    • + +
    • "WARNING" Add a spec descriptor for sslInternalSecretName
    • + +
    • "WARNING" Add a spec descriptor for upgradeOptions
    • + +
    • "WARNING" Add a spec descriptor for secretsName
    • + +
    • "WARNING" Add a spec descriptor for sslSecretName
    • + +
    • "WARNING" Add a spec descriptor for pxc
    • + +
    • "WARNING" Add a spec descriptor for proxysql
    • + +
    • "WARNING" Add a spec descriptor for logcollector
    • + +
    • "WARNING" Add a spec descriptor for crVersion
    • + +
    • "WARNING" Add a spec descriptor for vaultSecretName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for backupName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for pxcCluster
    • + +
    • "WARNING" Add a spec descriptor for backupName
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBCluster/v1-8-0
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • + +
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • @@ -3505,27 +4002,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For as400rpc-operator.v0.0.1:

      +

      For percona-xtradb-cluster-operator.v1.8.0:

      -

    • "WARNING" (as400rpc-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (percona-xtradb-cluster-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),ClusterRole: (["as400rpc-operator-metrics-reader"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaxtradbbackups.pxc.percona.com" "perconaxtradbclusterbackups.pxc.percona.com" "perconaxtradbclusterrestores.pxc.percona.com" "perconaxtradbclusters.pxc.percona.com"])
    • @@ -3535,35 +4032,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    openunison-ocp-certified-rhmpruntime-component-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    @@ -3571,98 +4078,121 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For openunison.1.0.0:

      - -

    • "ERROR" openunisons.openunison.tremolo.io does not have a status descriptor
    • - -
    • "ERROR" key_store does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" enable_activemq does not have a spec descriptor
    • - -
    • "ERROR" secret_data does not have a spec descriptor
    • - -
    • "ERROR" hosts does not have a spec descriptor
    • - -
    • "ERROR" non_secret_data does not have a spec descriptor
    • - -
    • "ERROR" openunison_network_configuration does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • - -
    • "ERROR" dest_secret does not have a spec descriptor
    • - -
    • "ERROR" source_secret does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for key_store
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for enable_activemq
    • - -
    • "WARNING" Add a spec descriptor for secret_data
    • - -
    • "WARNING" Add a spec descriptor for hosts
    • +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for non_secret_data
    • -
    • "WARNING" Add a spec descriptor for openunison_network_configuration
    • +
      +

      For runtime-component-operator.v0.7.0:

      -

    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add a spec descriptor for dest_secret
    • +
    • "WARNING" (runtime-component-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for source_secret
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    +

    NOT USED

    Grade D
    (300)
    vfunction-server-operator-rhmp +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    PASS

    + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For openunison.1.0.0:

      - +

      For vfunction-server-operator.v2.2.469:

      -

    • "WARNING" (openunison.1.0.0) csv.metadata.Name openunison.1.0.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (vfunction-server-operator.v2.2.469) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -3672,32 +4202,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (800)
    stonebranch-universalagent-operator-certified-rhmpanaconda-team-edition-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -3706,59 +4236,89 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For universalagent-operator.v1.1.0:

      +

      For anaconda-team-edition.v6.1.3:

      -

    • "ERROR" stonebranches.agent.stonebranch.com does not have a status descriptor
    • +
    • "ERROR" anacondateameditions.anaconda.com does not have a status descriptor
    • + +
    • "ERROR" worker does not have a spec descriptor
    • + +
    • "ERROR" api does not have a spec descriptor
    • + +
    • "ERROR" dispatcher does not have a spec descriptor
    • + +
    • "ERROR" route does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" proxy does not have a spec descriptor
    • + +
    • "ERROR" redis does not have a spec descriptor
    • + +
    • "ERROR" storage does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" createSharedPersistentVolumeClaim does not have a spec descriptor
    • -
    • "ERROR" useExistingSharedStorage does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `route` in AnacondaTeamEdition/v1beta1
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in AnacondaTeamEdition/v1beta1
    • +
    • "WARNING" Add CRD validation for spec field `proxy` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add CRD validation for spec field `config` in Stonebranch/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `redis` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add CRD validation for spec field `createSharedPersistentVolumeClaim` in Stonebranch/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `storage` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add CRD validation for spec field `useExistingSharedStorage` in Stonebranch/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `worker` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for createSharedPersistentVolumeClaim
    • +
    • "WARNING" Add CRD validation for spec field `api` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for useExistingSharedStorage
    • +
    • "WARNING" Add CRD validation for spec field `dispatcher` in AnacondaTeamEdition/v1beta1
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "WARNING" Add a spec descriptor for worker
    • + +
    • "WARNING" Add a spec descriptor for api
    • + +
    • "WARNING" Add a spec descriptor for dispatcher
    • + +
    • "WARNING" Add a spec descriptor for route
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for proxy
    • + +
    • "WARNING" Add a spec descriptor for redis
    • + +
    • "WARNING" Add a spec descriptor for storage
    • @@ -3767,29 +4327,33 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For universalagent-operator.v1.1.0:

      +

      For anaconda-team-edition.v6.1.3:

      +

    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "WARNING" (universalagent-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" (anaconda-team-edition.v6.1.3) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" (anaconda-team-edition.v6.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -3799,35 +4363,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (0)
    traefikee-redhat-certified-rhmpcyberarmor-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -3837,31 +4411,89 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For traefikee-redhat-certified.v2.0.2:

      +

      For cyberarmor-operator.0.0.1:

      -

    • "ERROR" traefikees.containo.us does not have a status descriptor
    • +
    • "ERROR" cyberarmors.apm.cyberarmor.com does not have a status descriptor
    • -
    • "ERROR" cluster does not have a spec descriptor
    • +
    • "ERROR" cyberarmornamespaces.apm.cyberarmor.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for Traefikee/v1alpha1
    • +
    • "ERROR" caCustomerGuid does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cluster
    • +
    • "ERROR" caPostman does not have a spec descriptor
    • + +
    • "ERROR" caClusterGuid does not have a spec descriptor
    • + +
    • "ERROR" caMasterNotificationServerHost does not have a spec descriptor
    • + +
    • "ERROR" caK8sReportUrl does not have a spec descriptor
    • + +
    • "ERROR" caDashboardBackend does not have a spec descriptor
    • + +
    • "ERROR" caPortalBackend does not have a spec descriptor
    • + +
    • "ERROR" caClusterName does not have a spec descriptor
    • + +
    • "ERROR" caloginInfo does not have a spec descriptor
    • + +
    • "ERROR" cyberArmorNameSpace does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for caCustomerGuid
    • + +
    • "WARNING" Add a spec descriptor for caPostman
    • + +
    • "WARNING" Add a spec descriptor for caClusterGuid
    • + +
    • "WARNING" Add a spec descriptor for caMasterNotificationServerHost
    • + +
    • "WARNING" Add a spec descriptor for caK8sReportUrl
    • + +
    • "WARNING" Add a spec descriptor for caDashboardBackend
    • + +
    • "WARNING" Add a spec descriptor for caPortalBackend
    • + +
    • "WARNING" Add a spec descriptor for caClusterName
    • + +
    • "WARNING" Add a spec descriptor for caloginInfo
    • + +
    • "WARNING" Add a spec descriptor for cyberArmorNameSpace
    • + +
    • "WARNING" Add CRD validation for spec field `caK8sReportUrl` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caDashboardBackend` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caPortalBackend` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caCustomerGuid` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caloginInfo` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caPostman` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caClusterGuid` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caClusterName` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `caMasterNotificationServerHost` in Cyberarmor/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cyberArmorNameSpace` in Cyberarmornamespace/v1alpha1
    • @@ -3872,27 +4504,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For traefikee-redhat-certified.v2.0.2:

      +

      For cyberarmor-operator.0.0.1:

      -

    • "WARNING" (traefikee-redhat-certified.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cyberarmor-operator.0.0.1) csv.metadata.Name cyberarmor-operator.0.0.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -3902,133 +4534,69 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    yugabyte-platform-operator-bundle-rhmptraefikee-redhat-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For yugabyte-platform-operator.v0.0.5:

      - -

    • "ERROR" ybplatforms.yugabyte.com does not have a status descriptor
    • - -
    • "ERROR" helm2Legacy does not have a spec descriptor
    • - -
    • "ERROR" tls does not have a spec descriptor
    • - -
    • "ERROR" yugaware does not have a spec descriptor
    • - -
    • "ERROR" domainName does not have a spec descriptor
    • - -
    • "ERROR" helm does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" ip_version_support does not have a spec descriptor
    • - -
    • "ERROR" ocpCompatibility does not have a spec descriptor
    • - -
    • "ERROR" rbac does not have a spec descriptor
    • - -
    • "ERROR" securityContext does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `helm2Legacy` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `yugaware` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `securityContext` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `tls` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `domainName` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `helm` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ip_version_support` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `ocpCompatibility` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `rbac` in YBPlatform/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for helm2Legacy
    • - -
    • "WARNING" Add a spec descriptor for tls
    • - -
    • "WARNING" Add a spec descriptor for yugaware
    • - -
    • "WARNING" Add a spec descriptor for domainName
    • - -
    • "WARNING" Add a spec descriptor for helm
    • +

      For traefikee-redhat-certified.v2.0.2:

      -

    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" traefikees.containo.us does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for ip_version_support
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ocpCompatibility
    • -
    • "WARNING" Add a spec descriptor for rbac
    • +
    • "WARNING" Add CRD validation for Traefikee/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add a spec descriptor for cluster
    • @@ -4039,27 +4607,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For yugabyte-platform-operator.v0.0.5:

      +

      For traefikee-redhat-certified.v2.0.2:

      -

    • "WARNING" (yugabyte-platform-operator.v0.0.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (traefikee-redhat-certified.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ybplatforms.yugabyte.com"]),ClusterRole: (["yugabyte-platform-operator-metrics-reader"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -4069,32 +4637,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    citrix-ingress-controller-operator-rhmpcockroachdb-certified-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -4103,11 +4671,11 @@
    Grade

    NOT USED

    @@ -4117,137 +4685,40 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-ingress-controller-operator.v1.10.2:

      - -

    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" nsProtocol does not have a spec descriptor
    • - -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" ipam does not have a spec descriptor
    • - -
    • "ERROR" nodeWatch does not have a spec descriptor
    • - -
    • "ERROR" cicSettings does not have a spec descriptor
    • - -
    • "ERROR" nsPort does not have a spec descriptor
    • - -
    • "ERROR" namespaceLabels does not have a spec descriptor
    • - -
    • "ERROR" crds does not have a spec descriptor
    • - -
    • "ERROR" entityPrefix does not have a spec descriptor
    • - -
    • "ERROR" ingressClass does not have a spec descriptor
    • - -
    • "ERROR" logProxy does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" coeConfig does not have a spec descriptor
    • - -
    • "ERROR" nsIP does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • - -
    • "ERROR" updateIngressStatus does not have a spec descriptor
    • - -
    • "ERROR" pullPolicy does not have a spec descriptor
    • - -
    • "ERROR" adcCredentialSecret does not have a spec descriptor
    • - -
    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • - -
    • "ERROR" kubernetesURL does not have a spec descriptor
    • - -
    • "ERROR" exporter does not have a spec descriptor
    • - -
    • "ERROR" nsVIP does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" routeLabels does not have a spec descriptor
    • - -
    • "ERROR" serviceClass does not have a spec descriptor
    • +

      For cockroach-operator.v2.1.0:

      -

    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" citrixingresscontrollers.citrix.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for nsProtocol
    • - -
    • "WARNING" Add a spec descriptor for logLevel
    • - -
    • "WARNING" Add a spec descriptor for ipam
    • - -
    • "WARNING" Add a spec descriptor for nodeWatch
    • - -
    • "WARNING" Add a spec descriptor for cicSettings
    • - -
    • "WARNING" Add a spec descriptor for nsPort
    • - -
    • "WARNING" Add a spec descriptor for namespaceLabels
    • - -
    • "WARNING" Add a spec descriptor for crds
    • - -
    • "WARNING" Add a spec descriptor for entityPrefix
    • - -
    • "WARNING" Add a spec descriptor for ingressClass
    • - -
    • "WARNING" Add a spec descriptor for logProxy
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for coeConfig
    • - -
    • "WARNING" Add a spec descriptor for nsIP
    • - -
    • "WARNING" Add a spec descriptor for openshift
    • - -
    • "WARNING" Add a spec descriptor for updateIngressStatus
    • - -
    • "WARNING" Add a spec descriptor for pullPolicy
    • - -
    • "WARNING" Add a spec descriptor for adcCredentialSecret
    • - -
    • "WARNING" Add a spec descriptor for defaultSSLCertSecret
    • - -
    • "WARNING" Add a spec descriptor for kubernetesURL
    • -
    • "WARNING" Add a spec descriptor for exporter
    • +
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • -
    • "WARNING" Add a spec descriptor for nsVIP
    • -
    • "WARNING" Add a spec descriptor for license
    • +
      +

      For cockroach-operator.v2.1.0:

      -

    • "WARNING" Add a spec descriptor for routeLabels
    • +
    • "ERROR" cockroachDBVersion does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for serviceClass
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add CRD validation for CitrixIngressController/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cockroachDBVersion
    • @@ -4258,27 +4729,32 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-ingress-controller-operator.v1.10.2:

      +

      For cockroach-operator.v2.1.0:

      -

    • "WARNING" (citrix-ingress-controller-operator.v1.10.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),ClusterRole: (["citrix-ingress-controller-operator-metrics-reader"]),
    • + +
      +

      For cockroach-operator.v2.1.0:

      + + +

    • "WARNING" (cockroach-operator.v2.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -4288,32 +4764,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (600)
    cortex-fabric-operator-rhmpakka-cluster-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -4322,11 +4798,11 @@
    Grade

    NOT USED

    @@ -4334,58 +4810,140 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cortex-fabric-operator.v1.0.0:

      +

      For akka-cluster-operator-certified.v1.0.0:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `replicas` in AkkaCluster/v1alpha1
    • -
    • "ERROR" kongui does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `template` in AkkaCluster/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add a spec descriptor for kongui
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1
    • +
      +

      For akka-cluster-operator-certified.v1.0.0:

      -
      -

      For cortex-fabric-operator.v1.0.0:

      +

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "ERROR" kongui does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    db2-zos-db-operator-rhmp +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      + +
      +

      For db2-zos-db-operator.v0.0.2:

      -

    • "WARNING" Add a spec descriptor for ingress
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for kongui
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image` in Db2-zos-db/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for image
    • @@ -4396,32 +4954,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cortex-fabric-operator.v1.0.0:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - +

      For db2-zos-db-operator.v0.0.2:

      -
      -

      For cortex-fabric-operator.v1.0.0:

      +

    • "WARNING" (db2-zos-db-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -4435,41 +4988,31 @@
      Grade
    akka-cluster-operator-certified-rhmpkubeturbo-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    -

    NOT USED

    @@ -4477,29 +5020,37 @@
    Grade

    NOT USED

    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For akka-cluster-operator-certified.v1.0.0:

      +

      For kubeturbo-operator.v8.3.1:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `replicas` in AkkaCluster/v1alpha1
    • +
    • "ERROR" serverMeta does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `template` in AkkaCluster/v1alpha1
    • +
    • "ERROR" targetConfig does not have a spec descriptor
    • + +
    • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for serverMeta
    • + +
    • "WARNING" Add a spec descriptor for targetConfig
    • @@ -4510,25 +5061,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For akka-cluster-operator-certified.v1.0.0:

      +

      For kubeturbo-operator.v8.3.1:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (kubeturbo-operator.v8.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -4538,28 +5091,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    memql-certified-rhmpcloudhedge-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -4572,11 +5125,11 @@
      Grade

    NOT USED

    @@ -4584,66 +5137,42 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For memsql-operator.v1.2.1:

      - -

    • "ERROR" aggregatorSpec does not have a spec descriptor
    • - -
    • "ERROR" leafSpec does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for MemsqlCluster/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for aggregatorSpec
    • - -
    • "WARNING" Add a spec descriptor for leafSpec
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For memsql-operator.v1.2.1:

      +

      For cloudhedge.v1.0.6:

      -

    • "WARNING" (memsql-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cloudhedge.v1.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cloudhedgeappliances.cloudhedge.io"])
    • @@ -4653,32 +5182,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (300)
    nutanixcsioperator-rhmpstarburst-enterprise-helm-operator-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • beta
    • +
    • alpha
    @@ -4687,11 +5216,11 @@
    Grade

    NOT USED

    @@ -4701,175 +5230,336 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For nutanixcsioperator.v0.1.3:

      + +
      +

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

      + +

    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • + +
    • "ERROR" starburstenterprises.charts.starburstdata.com does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • + +
    • "ERROR" envFrom does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" registryCredentials does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • + +
    • "ERROR" env does not have a spec descriptor
    • + +
    • "ERROR" extraArguments does not have a spec descriptor
    • + +
    • "ERROR" heapSizePercentage does not have a spec descriptor
    • + +
    • "ERROR" initFile does not have a spec descriptor
    • + +
    • "ERROR" objectStorage does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" database does not have a spec descriptor
    • + +
    • "ERROR" hdfs does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" podAnnotations does not have a spec descriptor
    • + +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • + +
    • "ERROR" expose does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" catalogs does not have a spec descriptor
    • + +
    • "ERROR" extraArguments does not have a spec descriptor
    • + +
    • "ERROR" userDatabase does not have a spec descriptor
    • + +
    • "ERROR" worker does not have a spec descriptor
    • + +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • + +
    • "ERROR" extraSecret does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" initFile does not have a spec descriptor
    • + +
    • "ERROR" livenessProbe does not have a spec descriptor
    • + +
    • "ERROR" prometheus does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" cache does not have a spec descriptor
    • + +
    • "ERROR" coordinator does not have a spec descriptor
    • + +
    • "ERROR" externalSecrets does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" initImage does not have a spec descriptor
    • + +
    • "ERROR" internal does not have a spec descriptor
    • + +
    • "ERROR" sharedSecret does not have a spec descriptor
    • + +
    • "ERROR" usageMetrics does not have a spec descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + +
    • "ERROR" expose does not have a spec descriptor
    • + +
    • "ERROR" query does not have a spec descriptor
    • + +
    • "ERROR" readinessProbe does not have a spec descriptor
    • + +
    • "ERROR" registryCredentials does not have a spec descriptor
    • + +
    • "ERROR" spilling does not have a spec descriptor
    • + +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `initImage` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `cache` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `spilling` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `worker` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `internal` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstEnterprise/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" nutanixcsistorages.crd.nutanix.com does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" scc does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" sidecars does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" node does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstEnterprise/v1alpha1
    • -
    • "ERROR" provisioner does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `query` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `scc` in NutanixCsiStorage/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `sidecars` in NutanixCsiStorage/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `environment` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in NutanixCsiStorage/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `node` in NutanixCsiStorage/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • -
    • "WARNING" Add CRD validation for spec field `provisioner` in NutanixCsiStorage/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for envFrom
    • -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for sidecars
    • +
    • "WARNING" Add a spec descriptor for registryCredentials
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add a spec descriptor for node
    • +
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • -
    • "WARNING" Add a spec descriptor for provisioner
    • +
    • "WARNING" Add a spec descriptor for env
    • +
    • "WARNING" Add a spec descriptor for extraArguments
    • +
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for initFile
    • +
    • "WARNING" Add a spec descriptor for objectStorage
    • -
      -

      For nutanixcsioperator.v0.1.3:

      +

    • "WARNING" Add a spec descriptor for affinity
    • +
    • "WARNING" Add a spec descriptor for database
    • -
    • "WARNING" (nutanixcsioperator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for hdfs
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for podAnnotations
    • + +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • + +
    • "WARNING" Add a spec descriptor for expose
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for catalogs
    • + +
    • "WARNING" Add a spec descriptor for extraArguments
    • + +
    • "WARNING" Add a spec descriptor for userDatabase
    • + +
    • "WARNING" Add a spec descriptor for worker
    • + +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • + +
    • "WARNING" Add a spec descriptor for extraSecret
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for initFile
    • + +
    • "WARNING" Add a spec descriptor for livenessProbe
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add a spec descriptor for cache
    • + +
    • "WARNING" Add a spec descriptor for coordinator
    • + +
    • "WARNING" Add a spec descriptor for externalSecrets
    • + +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • + +
    • "WARNING" Add a spec descriptor for initImage
    • + +
    • "WARNING" Add a spec descriptor for internal
    • + +
    • "WARNING" Add a spec descriptor for sharedSecret
    • + +
    • "WARNING" Add a spec descriptor for usageMetrics
    • + +
    • "WARNING" Add a spec descriptor for environment
    • + +
    • "WARNING" Add a spec descriptor for expose
    • + +
    • "WARNING" Add a spec descriptor for query
    • + +
    • "WARNING" Add a spec descriptor for readinessProbe
    • + +
    • "WARNING" Add a spec descriptor for registryCredentials
    • + +
    • "WARNING" Add a spec descriptor for spilling
    • + +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    -

    NOT USED

    Grade B
    (600)
    rapidbiz-operator-certified-rhmp -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For rapidbiz-operator.v0.0.1:

      +

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (starburst-enterprise-helm-operator.v354.0.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["starburstenterprises.charts.starburstdata.com" "starbursthives.charts.starburstdata.com"])
    • @@ -4879,28 +5569,28 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    jtrac-app-operator-rhmpcic-operator-with-crds-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -4913,135 +5603,143 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For jtrac-app-operator.v0.0.1:

      +

      For citrix-api-gateway-operator.v0.0.1:

      -

    • "ERROR" jtracs.example.com does not have a status descriptor
    • +
    • "ERROR" citrixingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" nsProtocol does not have a spec descriptor
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "ERROR" podSecurityContext does not have a spec descriptor
    • +
    • "ERROR" nsVIP does not have a spec descriptor
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    • "ERROR" cic does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" kubernetesURL does not have a spec descriptor
    • + +
    • "ERROR" nodeWatch does not have a spec descriptor
    • + +
    • "ERROR" nsIP does not have a spec descriptor
    • + +
    • "ERROR" nsNamespace does not have a spec descriptor
    • + +
    • "ERROR" nsPort does not have a spec descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" exporter does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "ERROR" loginFileName does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" autoscaling does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for nsProtocol
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for logLevel
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for nsVIP
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cic
    • -
    • "WARNING" Add CRD validation for spec field `podSecurityContext` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for kubernetesURL
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeWatch
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nsIP
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nsNamespace
    • -
    • "WARNING" Add CRD validation for spec field `service` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nsPort
    • -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for exporter
    • -
    • "WARNING" Add CRD validation for spec field `autoscaling` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingressClass
    • -
    • "WARNING" Add CRD validation for spec field `image` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for license
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in jtrac/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for loginFileName
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in jtrac/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `logLevel` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `securityContext` in jtrac/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `loginFileName` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nameOverride` in jtrac/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `resources` in jtrac/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `kubernetesURL` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `tolerations` in jtrac/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nsVIP` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "WARNING" Add CRD validation for spec field `cic` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for podSecurityContext
    • +
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "WARNING" Add CRD validation for spec field `license` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add CRD validation for spec field `nsIP` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "WARNING" Add CRD validation for spec field `nodeWatch` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "WARNING" Add CRD validation for spec field `nsPort` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add CRD validation for spec field `nsProtocol` in CitrixIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=authpolicy: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "WARNING" Warning: Value citrix.com/v1alpha1, Kind=HTTPRoute: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for autoscaling
    • +
    • "WARNING" Warning: Value citrix.com/v1alpha1, Kind=Listener: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Warning: Value citrix.com/v1beta1, Kind=ratelimit: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Warning: Value citrix.com/v1, Kind=vip: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "WARNING" Warning: Value citrix.com/v1, Kind=rewritepolicy: provided API should have an example annotation
    • @@ -5052,27 +5750,39 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For jtrac-app-operator.v0.0.1:

      +

      For citrix-api-gateway-operator.v0.0.1:

      -

    • "WARNING" (jtrac-app-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (citrix-api-gateway-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were 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: (["jtrac-app-operator-metrics-reader"]),CRD: (["jtracs.example.com"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -5082,22 +5792,22 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    percona-xtradb-cluster-operator-certified-rhmpaci-containers-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -5106,11 +5816,11 @@
    Grade

    NOT USED

    @@ -5120,159 +5830,206 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For percona-xtradb-cluster-operator.v1.8.0:

      - -

    • "ERROR" perconaxtradbclusters.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbbackups.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaxtradbclusterrestores.pxc.percona.com does not have a status descriptor
    • - -
    • "ERROR" updateStrategy does not have a spec descriptor
    • - -
    • "ERROR" haproxy does not have a spec descriptor
    • - -
    • "ERROR" logCollectorSecretName does not have a spec descriptor
    • - -
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • - -
    • "ERROR" pmm does not have a spec descriptor
    • - -
    • "ERROR" backup does not have a spec descriptor
    • - -
    • "ERROR" sslInternalSecretName does not have a spec descriptor
    • - -
    • "ERROR" upgradeOptions does not have a spec descriptor
    • - -
    • "ERROR" secretsName does not have a spec descriptor
    • +

      For aci-containers-operator.v1.0.0:

      -

    • "ERROR" sslSecretName does not have a spec descriptor
    • +
    • "ERROR" acicontainersoperators.aci.ctrl does not have a status descriptor
    • -
    • "ERROR" pxc does not have a spec descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" proxysql does not have a spec descriptor
    • -
    • "ERROR" logcollector does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for AciContainersOperator/v1alpha1
    • -
    • "ERROR" crVersion does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "ERROR" vaultSecretName does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "ERROR" storageName does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "ERROR" storageName does not have a spec descriptor
    • +
      +

      For aci-containers-operator.v1.0.0:

      -

    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "ERROR" backupName does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • -
    • "ERROR" storageName does not have a spec descriptor
    • -
    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    cloudbees-ci-rhmp +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" storageName does not have a spec descriptor
    • + +
      +

      For cloudbees-ci.v3.34.1:

      -

    • "ERROR" pxcCluster does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" backupName does not have a spec descriptor
    • +
    • "ERROR" cloudbeescis.charts.cloudbees.com does not have a status descriptor
    • +
    • "ERROR" rbac does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for updateStrategy
    • +
    • "ERROR" sidecarinjector does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for haproxy
    • +
    • "ERROR" Master does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for logCollectorSecretName
    • +
    • "ERROR" NetworkPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • +
    • "ERROR" Persistence does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pmm
    • +
    • "ERROR" PodSecurityPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for backup
    • +
    • "ERROR" ingress-nginx does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for sslInternalSecretName
    • +
    • "ERROR" Agents does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for upgradeOptions
    • +
    • "ERROR" Hibernation does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for secretsName
    • +
    • "ERROR" OperationsCenter does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for sslSecretName
    • +
    • "ERROR" Subdomain does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pxc
    • +
    • "ERROR" nginx-ingress does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for proxysql
    • -
    • "WARNING" Add a spec descriptor for logcollector
    • +
    • "WARNING" Add a spec descriptor for rbac
    • -
    • "WARNING" Add a spec descriptor for crVersion
    • +
    • "WARNING" Add a spec descriptor for sidecarinjector
    • -
    • "WARNING" Add a spec descriptor for vaultSecretName
    • +
    • "WARNING" Add a spec descriptor for Master
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add a spec descriptor for NetworkPolicy
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "WARNING" Add a spec descriptor for Persistence
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add a spec descriptor for PodSecurityPolicy
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "WARNING" Add a spec descriptor for ingress-nginx
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add a spec descriptor for Agents
    • -
    • "WARNING" Add a spec descriptor for backupName
    • +
    • "WARNING" Add a spec descriptor for Hibernation
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add a spec descriptor for OperationsCenter
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "WARNING" Add a spec descriptor for Subdomain
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add a spec descriptor for nginx-ingress
    • -
    • "WARNING" Add a spec descriptor for storageName
    • +
    • "WARNING" Add CRD validation for spec field `rbac` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for pxcCluster
    • +
    • "WARNING" Add CRD validation for spec field `Persistence` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for backupName
    • +
    • "WARNING" Add CRD validation for spec field `PodSecurityPolicy` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBCluster/v1-8-0
    • +
    • "WARNING" Add CRD validation for spec field `ingress-nginx` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • +
    • "WARNING" Add CRD validation for spec field `nginx-ingress` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `sidecarinjector` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • +
    • "WARNING" Add CRD validation for spec field `Agents` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterBackup/v1
    • +
    • "WARNING" Add CRD validation for spec field `Hibernation` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBBackup/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `Master` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for PerconaXtraDBClusterRestore/v1
    • +
    • "WARNING" Add CRD validation for spec field `NetworkPolicy` in CloudBeesCI/v1alpha1
    • @@ -5283,27 +6040,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For percona-xtradb-cluster-operator.v1.8.0:

      - +

      For cloudbees-ci.v3.34.1:

      -

    • "WARNING" (percona-xtradb-cluster-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaxtradbbackups.pxc.percona.com" "perconaxtradbclusterbackups.pxc.percona.com" "perconaxtradbclusterrestores.pxc.percona.com" "perconaxtradbclusters.pxc.percona.com"])
    • +
    • "WARNING" (cloudbees-ci.v3.34.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -5313,28 +6068,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (600)
    cert-manager-operator-rhmpgrowth-stack-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -5347,11 +6102,11 @@
      Grade

    NOT USED

    @@ -5361,40 +6116,191 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For cert-manager-operator.v1.1.0:

      + +
      +

      For growth-stack-operator.v2.0.1:

      + +

    • "ERROR" airgapped does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" segment_key does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" airgapped does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" airgapped does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" segment_key does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • + +
    • "ERROR" image_pull_secret does not have a spec descriptor
    • + +
    • "ERROR" postgres does not have a spec descriptor
    • + +
    • "ERROR" segment_key does not have a spec descriptor
    • + +
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" airgappeddeployments.growth-stack.operator.com does not have a status descriptor
    • + +
    • "ERROR" analyticsproxies.growth-stack.operator.com does not have a status descriptor
    • + +
    • "ERROR" deleteclusters.growth-stack.operator.com does not have a status descriptor
    • + +
    • "ERROR" fulldeployments.growth-stack.operator.com does not have a status descriptor
    • + +
    • "ERROR" generatekeys.growth-stack.operator.com does not have a status descriptor
    • + +
    • "ERROR" storeforwardmetrics.growth-stack.operator.com does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for airgapped
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for segment_key
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for airgapped
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for airgapped
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for segment_key
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • + +
    • "WARNING" Add a spec descriptor for image_pull_secret
    • + +
    • "WARNING" Add a spec descriptor for postgres
    • + +
    • "WARNING" Add a spec descriptor for segment_key
    • + +
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add CRD validation for spec field `airgapped` in AirgappedDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AirgappedDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AirgappedDeployment/v1alpha1
    • -
    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in AirgappedDeployment/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `airgapped` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AnalyticsProxy/v1alpha1
    • -
    • "WARNING" Add CRD validation for CertManager/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AnalyticsProxy/v1alpha1
    • -
      -

      For cert-manager-operator.v1.1.0:

      +

    • "WARNING" Add CRD validation for spec field `segment_key` in AnalyticsProxy/v1alpha1
    • -
    • "ERROR" certmanagers.operator.cert-manager.io does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `postgres` in AnalyticsProxy/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in DeleteCluster/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in FullDeployment/v1alpha1
    • -
    • "WARNING" Add CRD validation for CertManager/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `airgapped` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `segment_key` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `postgres` in FullDeployment/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in GenerateKey/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `version` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `postgres` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `segment_key` in StoreForwardMetric/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • @@ -5405,36 +6311,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cert-manager-operator.v1.1.0:

      - - -

    • "WARNING" (cert-manager-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For cert-manager-operator.v1.1.0:

      +

      For growth-stack-operator.v2.0.1:

      -

    • "WARNING" (cert-manager-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (growth-stack-operator.v2.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -5444,32 +6341,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    data-explorer-operator-certified-rhmpinstana-agent-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -5478,43 +6375,55 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For data-explorer-operator.v0.1.3:

      +

      For instana-agent-operator.v1.0.4:

      -

    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" config.files does not have a spec descriptor
    • +
    • "ERROR" agent.env does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "ERROR" cluster.name does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `resources` in DashboardWithJupyterHub/v1alpha1
    • +
    • "ERROR" agents.instana.io does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for config.files
    • + +
    • "WARNING" Add a spec descriptor for agent.env
    • + +
    • "WARNING" Add a spec descriptor for cluster.name
    • + +
    • "WARNING" Add CRD validation for InstanaAgent/v1beta1
    • @@ -5525,27 +6434,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For data-explorer-operator.v0.1.3:

      - +

      For instana-agent-operator.v1.0.4:

      -

    • "WARNING" (data-explorer-operator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -5555,239 +6462,169 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    growth-stack-operator-certified-rhmpjtrac-app-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - +Info -
    -
      - - -
      -

      For growth-stack-operator.v2.0.1:

      - -

    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" segment_key does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" airgapped does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" segment_key does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" event_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" ibmproxyurl does not have a spec descriptor
    • - -
    • "ERROR" image_pull_secret does not have a spec descriptor
    • - -
    • "ERROR" postgres does not have a spec descriptor
    • - -
    • "ERROR" segment_key does not have a spec descriptor
    • - -
    • "ERROR" prometheus_scheduler_frequency does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" airgappeddeployments.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" analyticsproxies.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" deleteclusters.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" fulldeployments.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" generatekeys.growth-stack.operator.com does not have a status descriptor
    • - -
    • "ERROR" storeforwardmetrics.growth-stack.operator.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for airgapped
    • + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • + +
      +

      For jtrac-app-operator.v0.0.1:

      -

    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" jtracs.example.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • +
    • "ERROR" podAnnotations does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" podSecurityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for segment_key
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for airgapped
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • +
    • "ERROR" service does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • +
    • "ERROR" tolerations does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" autoscaling does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for segment_key
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "ERROR" securityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for event_scheduler_frequency
    • -
    • "WARNING" Add a spec descriptor for ibmproxyurl
    • +
    • "WARNING" Add CRD validation for spec field `podAnnotations` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for image_pull_secret
    • +
    • "WARNING" Add CRD validation for spec field `podSecurityContext` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for postgres
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for segment_key
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for prometheus_scheduler_frequency
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in jtrac/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add CRD validation for spec field `service` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `airgapped` in AirgappedDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AirgappedDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `affinity` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AirgappedDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `autoscaling` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in AirgappedDeployment/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `airgapped` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `securityContext` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `segment_key` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `resources` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in AnalyticsProxy/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `tolerations` in jtrac/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in DeleteCluster/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "WARNING" Add CRD validation for spec field `airgapped` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for podSecurityContext
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `segment_key` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in FullDeployment/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in GenerateKey/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Add CRD validation for spec field `version` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • -
    • "WARNING" Add CRD validation for spec field `event_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for service
    • -
    • "WARNING" Add CRD validation for spec field `ibmproxyurl` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add CRD validation for spec field `image_pull_secret` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for autoscaling
    • -
    • "WARNING" Add CRD validation for spec field `postgres` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add CRD validation for spec field `segment_key` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for securityContext
    • -
    • "WARNING" Add CRD validation for spec field `prometheus_scheduler_frequency` in StoreForwardMetric/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nameOverride
    • @@ -5798,27 +6635,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For growth-stack-operator.v2.0.1:

      +

      For jtrac-app-operator.v0.0.1:

      -

    • "WARNING" (growth-stack-operator.v2.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (jtrac-app-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were 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: (["jtrac-app-operator-metrics-reader"]),CRD: (["jtracs.example.com"]),
    • @@ -5832,41 +6669,31 @@
      Grade
    orca-rhmpmongodb-enterprise-advanced-ibm-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    -
    -

    NOT USED

    @@ -5874,51 +6701,97 @@
    Grade

    NOT USED

    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For orca-operator.v1.0.197:

      +

      For mongodb-enterprise-advanced-ibm.v1.6.3:

      + +

    • "ERROR" mongodbusers.mongodb.com does not have a status descriptor
    • +
    • "ERROR" opsmanagers.mongodb.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `project` in Orca/v1alpha1
    • +
    • "ERROR" shardCount does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `components` in Orca/v1alpha1
    • +
    • "ERROR" mongodsPerShardCount does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `domain` in Orca/v1alpha1
    • +
    • "ERROR" mongosCount does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `endpoints` in Orca/v1alpha1
    • +
    • "ERROR" persistent does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ignored_config_maps` in Orca/v1alpha1
    • +
    • "ERROR" configServerCount does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `images` in Orca/v1alpha1
    • +
    • "ERROR" db does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `kube_platform` in Orca/v1alpha1
    • +
    • "ERROR" mongodbResourceRef does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `namespace` in Orca/v1alpha1
    • +
    • "ERROR" roles does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for status field `phase` in Orca/v1alpha1
    • +
    • "ERROR" username does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `mode` in Policy/v1
    • +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" adminCredentials does not have a spec descriptor
    • + +
    • "ERROR" configuration does not have a spec descriptor
    • + +
    • "ERROR" externalConnectivity does not have a spec descriptor
    • + +
    • "ERROR" applicationDatabase does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `members` in MongoDB/v1
    • + +
    • "WARNING" Add CRD validation for status field `phase` in MongoDB/v1
    • + +
    • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
    • + +
    • "WARNING" Add CRD validation for status field `phase` in MongoDB/v1
    • + +
    • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
    • + +
    • "WARNING" Add CRD validation for status field `phase` in MongoDBUser/v1
    • + +
    • "WARNING" Add a spec descriptor for shardCount
    • + +
    • "WARNING" Add a spec descriptor for mongodsPerShardCount
    • + +
    • "WARNING" Add a spec descriptor for mongosCount
    • + +
    • "WARNING" Add a spec descriptor for persistent
    • + +
    • "WARNING" Add a spec descriptor for configServerCount
    • + +
    • "WARNING" Add a spec descriptor for db
    • + +
    • "WARNING" Add a spec descriptor for mongodbResourceRef
    • + +
    • "WARNING" Add a spec descriptor for roles
    • + +
    • "WARNING" Add a spec descriptor for username
    • + +
    • "WARNING" Add a spec descriptor for version
    • + +
    • "WARNING" Add a spec descriptor for adminCredentials
    • -
    • "WARNING" Add CRD validation for spec field `networkPolicyAllowAll` in Policy/v1
    • +
    • "WARNING" Add a spec descriptor for configuration
    • -
    • "WARNING" Add CRD validation for spec field `rules` in Policy/v1
    • +
    • "WARNING" Add a spec descriptor for externalConnectivity
    • -
    • "WARNING" Add CRD validation for status field `phase` in Policy/v1
    • +
    • "WARNING" Add a spec descriptor for applicationDatabase
    • @@ -5929,25 +6802,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For orca-operator.v1.0.197:

      +

      For mongodb-enterprise-advanced-ibm.v1.6.3:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -5957,22 +6830,22 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    aci-containers-operatorrobin-storage-trial-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -5981,11 +6854,11 @@
    Grade

    NOT USED

    @@ -5993,62 +6866,40 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For aci-containers-operator.v1.0.0:

      - -

    • "ERROR" acicontainersoperators.aci.ctrl does not have a status descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for AciContainersOperator/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for config
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For aci-containers-operator.v1.0.0:

      +

      For robin-storage-trial.v5.3.4-156-3:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -6058,459 +6909,376 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (400)
    entando-k8s-operator-rhmpyugabyte-platform-operator-bundle-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    • beta
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - +Info -
    -
      - - -
      -

      For entando-k8s-operator.v6.3.2:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" details does not have a spec descriptor
    • - -
    • "ERROR" dbms does not have a spec descriptor
    • - -
    • "ERROR" databaseName does not have a spec descriptor
    • - -
    • "ERROR" createDeployment does not have a spec descriptor
    • - -
    • "ERROR" environmentVariables does not have a spec descriptor
    • - -
    • "ERROR" standardImage does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" environmentVariables does not have a spec descriptor
    • - -
    • "ERROR" securityLevel does not have a spec descriptor
    • - -
    • "ERROR" dbms does not have a spec descriptor
    • - -
    • "ERROR" healthCheckPath does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" ingressHostName does not have a spec descriptor
    • - -
    • "ERROR" ingressPath does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" ingressHostName does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" standardServerImage does not have a spec descriptor
    • - -
    • "ERROR" dbms does not have a spec descriptor
    • - -
    • "ERROR" environmentVariables does not have a spec descriptor
    • - -
    • "ERROR" entandoAppName does not have a spec descriptor
    • - -
    • "ERROR" entandoPluginName does not have a spec descriptor
    • - -
    • "ERROR" dbmsOverride does not have a spec descriptor
    • - -
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • - -
    • "ERROR" components does not have a spec descriptor
    • - -
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for details
    • - -
    • "WARNING" Add a spec descriptor for dbms
    • - -
    • "WARNING" Add a spec descriptor for databaseName
    • - -
    • "WARNING" Add a spec descriptor for createDeployment
    • - -
    • "WARNING" Add a spec descriptor for environmentVariables
    • - -
    • "WARNING" Add a spec descriptor for standardImage
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for environmentVariables
    • - -
    • "WARNING" Add a spec descriptor for securityLevel
    • - -
    • "WARNING" Add a spec descriptor for dbms
    • - -
    • "WARNING" Add a spec descriptor for healthCheckPath
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for ingressHostName
    • - -
    • "WARNING" Add a spec descriptor for ingressPath
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for ingressHostName
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for standardServerImage
    • - -
    • "WARNING" Add a spec descriptor for dbms
    • - -
    • "WARNING" Add a spec descriptor for environmentVariables
    • - -
    • "WARNING" Add a spec descriptor for entandoAppName
    • - -
    • "WARNING" Add a spec descriptor for entandoPluginName
    • - -
    • "WARNING" Add a spec descriptor for dbmsOverride
    • - -
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • - -
    • "WARNING" Add a spec descriptor for components
    • - + +Info +
      +

      Following the channels names which does not comply. For further information see Channel Naming doc.

      +
        + +
      • alpha
      • + +
      +
      + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For entando-k8s-operator.v6.3.2-pr3:

      - -

    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • - -
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • - -
    • "ERROR" details does not have a spec descriptor
    • - -
    • "ERROR" dbms does not have a spec descriptor
    • - -
    • "ERROR" databaseName does not have a spec descriptor
    • - -
    • "ERROR" createDeployment does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • +

      For yugabyte-platform-operator.v0.0.5:

      -

    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "ERROR" ybplatforms.yugabyte.com does not have a status descriptor
    • -
    • "ERROR" standardImage does not have a spec descriptor
    • +
    • "ERROR" helm2Legacy does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "ERROR" yugaware does not have a spec descriptor
    • -
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "ERROR" domainName does not have a spec descriptor
    • -
    • "ERROR" healthCheckPath does not have a spec descriptor
    • +
    • "ERROR" helm does not have a spec descriptor
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" ingressHostName does not have a spec descriptor
    • - -
    • "ERROR" ingressPath does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" securityLevel does not have a spec descriptor
    • +
    • "ERROR" ip_version_support does not have a spec descriptor
    • -
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "ERROR" ocpCompatibility does not have a spec descriptor
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "ERROR" rbac does not have a spec descriptor
    • -
    • "ERROR" ingressHostName does not have a spec descriptor
    • +
    • "ERROR" securityContext does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" standardServerImage does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `helm2Legacy` in YBPlatform/v1alpha1
    • -
    • "ERROR" entandoAppName does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `image` in YBPlatform/v1alpha1
    • -
    • "ERROR" entandoPluginName does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `yugaware` in YBPlatform/v1alpha1
    • -
    • "ERROR" dbmsOverride does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `securityContext` in YBPlatform/v1alpha1
    • -
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `tls` in YBPlatform/v1alpha1
    • -
    • "ERROR" components does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `domainName` in YBPlatform/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `helm` in YBPlatform/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `ip_version_support` in YBPlatform/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for details
    • +
    • "WARNING" Add CRD validation for spec field `ocpCompatibility` in YBPlatform/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add CRD validation for spec field `rbac` in YBPlatform/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for databaseName
    • +
    • "WARNING" Add a spec descriptor for helm2Legacy
    • -
    • "WARNING" Add a spec descriptor for createDeployment
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for yugaware
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for domainName
    • -
    • "WARNING" Add a spec descriptor for standardImage
    • +
    • "WARNING" Add a spec descriptor for helm
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for ip_version_support
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for ocpCompatibility
    • -
    • "WARNING" Add a spec descriptor for healthCheckPath
    • +
    • "WARNING" Add a spec descriptor for rbac
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for securityContext
    • -
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "WARNING" Add a spec descriptor for ingressPath
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for roles
    • -
    • "WARNING" Add a spec descriptor for securityLevel
    • +
      +

      For yugabyte-platform-operator.v0.0.5:

      -

    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" (yugabyte-platform-operator.v0.0.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ybplatforms.yugabyte.com"]),ClusterRole: (["yugabyte-platform-operator-metrics-reader"]),
    • -
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for standardServerImage
    • -
    • "WARNING" Add a spec descriptor for entandoAppName
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    citrix-cpx-with-ingress-controller-operator-rhmp +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for entandoPluginName
    • + +
      +

      For citrix-cpx-with-ingress-controller-operator.v1.10.2:

      -

    • "WARNING" Add a spec descriptor for dbmsOverride
    • +
    • "ERROR" citrixcpxwithingresscontrollers.citrix.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for components
    • +
    • "ERROR" coeConfig does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • +
    • "ERROR" mgmtHttpsPort does not have a spec descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
      -

      For entando-k8s-operator.v6.3.2-pr3:

      +

    • "ERROR" exporter does not have a spec descriptor
    • -
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • +
    • "ERROR" mgmtHttpPort does not have a spec descriptor
    • -
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • +
    • "ERROR" namespaceLabels does not have a spec descriptor
    • -
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • +
    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • -
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • +
    • "ERROR" nsGateway does not have a spec descriptor
    • -
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • +
    • "ERROR" cic does not have a spec descriptor
    • -
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • +
    • "ERROR" nsProtocol does not have a spec descriptor
    • -
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • +
    • "ERROR" entityPrefix does not have a spec descriptor
    • -
    • "ERROR" details does not have a spec descriptor
    • +
    • "ERROR" serviceType does not have a spec descriptor
    • -
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "ERROR" crds does not have a spec descriptor
    • -
    • "ERROR" databaseName does not have a spec descriptor
    • +
    • "ERROR" cpxBgpRouter does not have a spec descriptor
    • -
    • "ERROR" createDeployment does not have a spec descriptor
    • +
    • "ERROR" bgpSettings does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "ERROR" aws does not have a spec descriptor
    • -
    • "ERROR" standardImage does not have a spec descriptor
    • +
    • "ERROR" kubernetesURL does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "ERROR" routeLabels does not have a spec descriptor
    • -
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "ERROR" ingressIP does not have a spec descriptor
    • -
    • "ERROR" healthCheckPath does not have a spec descriptor
    • +
    • "ERROR" serviceAnnotations does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "ERROR" ingressHostName does not have a spec descriptor
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "ERROR" ingressPath does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" ADMSettings does not have a spec descriptor
    • -
    • "ERROR" roles does not have a spec descriptor
    • +
    • "ERROR" nsIP does not have a spec descriptor
    • -
    • "ERROR" securityLevel does not have a spec descriptor
    • +
    • "ERROR" cicSettings does not have a spec descriptor
    • -
    • "ERROR" dbms does not have a spec descriptor
    • +
    • "ERROR" pullPolicy does not have a spec descriptor
    • -
    • "ERROR" environmentVariables does not have a spec descriptor
    • +
    • "ERROR" ipam does not have a spec descriptor
    • -
    • "ERROR" ingressHostName does not have a spec descriptor
    • +
    • "ERROR" logProxy does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" sslCertManagedByAWS does not have a spec descriptor
    • -
    • "ERROR" standardServerImage does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" entandoAppName does not have a spec descriptor
    • -
    • "ERROR" entandoPluginName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for coeConfig
    • -
    • "ERROR" dbmsOverride does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for mgmtHttpsPort
    • -
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "ERROR" components does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for exporter
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for mgmtHttpPort
    • +
    • "WARNING" Add a spec descriptor for namespaceLabels
    • -
    • "WARNING" Add a spec descriptor for details
    • +
    • "WARNING" Add a spec descriptor for defaultSSLCertSecret
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for nsGateway
    • -
    • "WARNING" Add a spec descriptor for databaseName
    • +
    • "WARNING" Add a spec descriptor for cic
    • -
    • "WARNING" Add a spec descriptor for createDeployment
    • +
    • "WARNING" Add a spec descriptor for nsProtocol
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for entityPrefix
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for serviceType
    • -
    • "WARNING" Add a spec descriptor for standardImage
    • +
    • "WARNING" Add a spec descriptor for crds
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for cpxBgpRouter
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for bgpSettings
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for license
    • -
    • "WARNING" Add a spec descriptor for healthCheckPath
    • +
    • "WARNING" Add a spec descriptor for aws
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for kubernetesURL
    • -
    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add a spec descriptor for ingressPath
    • +
    • "WARNING" Add a spec descriptor for routeLabels
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for ingressIP
    • -
    • "WARNING" Add a spec descriptor for roles
    • +
    • "WARNING" Add a spec descriptor for serviceAnnotations
    • -
    • "WARNING" Add a spec descriptor for securityLevel
    • +
    • "WARNING" Add a spec descriptor for ingressClass
    • -
    • "WARNING" Add a spec descriptor for dbms
    • +
    • "WARNING" Add a spec descriptor for logLevel
    • -
    • "WARNING" Add a spec descriptor for environmentVariables
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add a spec descriptor for ingressHostName
    • +
    • "WARNING" Add a spec descriptor for ADMSettings
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for nsIP
    • -
    • "WARNING" Add a spec descriptor for standardServerImage
    • +
    • "WARNING" Add a spec descriptor for cicSettings
    • -
    • "WARNING" Add a spec descriptor for entandoAppName
    • +
    • "WARNING" Add a spec descriptor for pullPolicy
    • -
    • "WARNING" Add a spec descriptor for entandoPluginName
    • +
    • "WARNING" Add a spec descriptor for ipam
    • -
    • "WARNING" Add a spec descriptor for dbmsOverride
    • +
    • "WARNING" Add a spec descriptor for logProxy
    • -
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • +
    • "WARNING" Add a spec descriptor for sslCertManagedByAWS
    • -
    • "WARNING" Add a spec descriptor for components
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • +
    • "WARNING" Add CRD validation for CitrixCpxWithIngressController/v1alpha1
    • @@ -6519,41 +7287,29 @@
      Grade
    -

    ONLY ERRORS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For entando-k8s-operator.v6.3.2:

      - -

    • "ERROR" (entando-k8s-operator.v6.3.2) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • - - - -
      -

      For entando-k8s-operator.v6.3.2-pr3:

      - -

    • "ERROR" (entando-k8s-operator.v6.3.2-pr3) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • - - +

      For citrix-cpx-with-ingress-controller-operator.v1.10.2:

      -
      -

      For entando-k8s-operator.v6.3.2-pr3:

      -

    • "ERROR" (entando-k8s-operator.v6.3.2-pr3) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • +
    • "WARNING" (citrix-cpx-with-ingress-controller-operator.v1.10.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were 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: (["citrix-cpx-with-ingress-controller-operator-metrics-reader"]),CRD: (["citrixcpxwithingresscontrollers.citrix.com"]),
    • @@ -6563,28 +7319,28 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    open-enterprise-spinnaker-rhmpcpx-cic-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -6597,11 +7353,11 @@
      Grade

    NOT USED

    @@ -6611,93 +7367,93 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For open-enterprise-spinnaker.v1.21.2:

      +

      For cpx-cic-operator.v130.47.103:

      -

    • "ERROR" dockerRegistries does not have a spec descriptor
    • +
    • "ERROR" citrixcpxingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • -
    • "ERROR" gcs does not have a spec descriptor
    • +
    • "ERROR" cpx does not have a spec descriptor
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "ERROR" minio does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" spinnakerFeatureFlags does not have a spec descriptor
    • +
    • "ERROR" lsIP does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" lsPort does not have a spec descriptor
    • -
    • "ERROR" azs does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "ERROR" ingressGate does not have a spec descriptor
    • +
    • "ERROR" platform does not have a spec descriptor
    • -
    • "ERROR" kubeConfig does not have a spec descriptor
    • +
    • "ERROR" cic does not have a spec descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • -
    • "ERROR" redis does not have a spec descriptor
    • +
    • "ERROR" exporter does not have a spec descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" nsNamespace does not have a spec descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" halyard does not have a spec descriptor
    • -
    • "ERROR" s3 does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for cpx
    • -
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ingressClass
    • -
    • "ERROR" openenterprisespinnakeroperators.charts.helm.k8s.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for license
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for lsIP
    • +
    • "WARNING" Add a spec descriptor for lsPort
    • -
    • "WARNING" Add a spec descriptor for dockerRegistries
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add a spec descriptor for gcs
    • +
    • "WARNING" Add a spec descriptor for platform
    • -
    • "WARNING" Add a spec descriptor for ingress
    • +
    • "WARNING" Add a spec descriptor for cic
    • -
    • "WARNING" Add a spec descriptor for minio
    • +
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • -
    • "WARNING" Add a spec descriptor for spinnakerFeatureFlags
    • +
    • "WARNING" Add a spec descriptor for exporter
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "WARNING" Add a spec descriptor for nsNamespace
    • -
    • "WARNING" Add a spec descriptor for azs
    • +
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for ingressGate
    • +
    • "WARNING" Add CRD validation for spec field `license` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kubeConfig
    • +
    • "WARNING" Add CRD validation for spec field `lsIP` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add CRD validation for spec field `lsPort` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for redis
    • +
    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add CRD validation for spec field `platform` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add CRD validation for spec field `cic` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for halyard
    • +
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for s3
    • +
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for rbac
    • +
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for OpenEnterpriseSpinnakerOperator/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `cpx` in CitrixCPXIngressController/v1alpha1
    • @@ -6708,27 +7464,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For open-enterprise-spinnaker.v1.21.2:

      +

      For cpx-cic-operator.v130.47.103:

      -

    • "WARNING" (open-enterprise-spinnaker.v1.21.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cpx-cic-operator.v130.47.103) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["openenterprisespinnakeroperators.charts.helm.k8s.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixcpxingresscontrollers.charts.helm.k8s.io"])
    • @@ -6738,13 +7494,13 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    kubeplus-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    @@ -6867,45 +7623,35 @@
    Grade

    NOT USED

    Grade D
    (100)
    Grade D
    (0)
    portshift-controller-operator-rhmpopenunison-ocp-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -6915,35 +7661,65 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For portshift-operator.v0.1.6:

      +

      For openunison.1.0.0:

      -

    • "ERROR" managementUrl does not have a spec descriptor
    • +
    • "ERROR" openunisons.openunison.tremolo.io does not have a status descriptor
    • -
    • "ERROR" portshiftClusterId does not have a spec descriptor
    • +
    • "ERROR" key_store does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" portshiftinstallers.portshift.io does not have a status descriptor
    • +
    • "ERROR" enable_activemq does not have a spec descriptor
    • + +
    • "ERROR" secret_data does not have a spec descriptor
    • +
    • "ERROR" hosts does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for managementUrl
    • +
    • "ERROR" non_secret_data does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for portshiftClusterId
    • +
    • "ERROR" openunison_network_configuration does not have a spec descriptor
    • + +
    • "ERROR" openshift does not have a spec descriptor
    • + +
    • "ERROR" dest_secret does not have a spec descriptor
    • + +
    • "ERROR" source_secret does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for key_store
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for enable_activemq
    • + +
    • "WARNING" Add a spec descriptor for secret_data
    • + +
    • "WARNING" Add a spec descriptor for hosts
    • + +
    • "WARNING" Add a spec descriptor for non_secret_data
    • + +
    • "WARNING" Add a spec descriptor for openunison_network_configuration
    • + +
    • "WARNING" Add a spec descriptor for openshift
    • + +
    • "WARNING" Add a spec descriptor for dest_secret
    • + +
    • "WARNING" Add a spec descriptor for source_secret
    • @@ -6954,27 +7730,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For portshift-operator.v0.1.6:

      +

      For openunison.1.0.0:

      -

    • "WARNING" (portshift-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (openunison.1.0.0) csv.metadata.Name openunison.1.0.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -6988,28 +7764,28 @@
      Grade
    zabbix-operator-certified-rhmpxcrypt-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • lts
    • +
    • alpha
    @@ -7018,11 +7794,11 @@
    Grade

    NOT USED

    @@ -7032,151 +7808,144 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For zabbix-operator-certified.v0.0.2:

      - -

    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • - -
    • "ERROR" hostname does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" proxy does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" proxy does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" hostname does not have a spec descriptor
    • - -
    • "ERROR" tlscipherpsk13 does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" proxy does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" proxy does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - -
    • "ERROR" java_gateway does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" web does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • - -
    • "WARNING" Add a spec descriptor for hostname
    • - -
    • "WARNING" Add a spec descriptor for java_gateway
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for web
    • - -
    • "WARNING" Add a spec descriptor for java_gateway
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for web
    • - -
    • "WARNING" Add a spec descriptor for java_gateway
    • - -
    • "WARNING" Add a spec descriptor for proxy
    • - -
    • "WARNING" Add a spec descriptor for java_gateway
    • - -
    • "WARNING" Add a spec descriptor for proxy
    • +

      For zts-xcrypt-operator.v0.0.14:

      -

    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "ERROR" status does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "ERROR" xcrypts.xcrypt.zettaset.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for hostname
    • -
    • "WARNING" Add a spec descriptor for tlscipherpsk13
    • +
    • "WARNING" Add a spec descriptor for status
    • -
    • "WARNING" Add a spec descriptor for web
    • +
    • "WARNING" Add CRD validation for spec field `status` in XCrypt/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • -
    • "WARNING" Add a spec descriptor for server
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for proxy
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
      +

      For zts-xcrypt-operator.v0.0.14:

      -

    • "WARNING" Add a spec descriptor for proxy
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • +
    • "WARNING" (zts-xcrypt-operator.v0.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xcrypts.xcrypt.zettaset.com"])
    • -
    • "WARNING" Add a spec descriptor for web
    • -
    • "WARNING" Add a spec descriptor for java_gateway
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    data-explorer-operator-certified-rhmp +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for web
    • + +
      +

      For data-explorer-operator.v0.1.3:

      -

    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `tlscipherpsk13` in ZabbixAgent/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add CRD validation for spec field `hostname` in ZabbixAgent/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `resources` in DashboardWithJupyterHub/v1alpha1
    • @@ -7187,27 +7956,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For zabbix-operator-certified.v0.0.2:

      +

      For data-explorer-operator.v0.1.3:

      -

    • "WARNING" (zabbix-operator-certified.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (data-explorer-operator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -7221,24 +7990,24 @@
      Grade
    vprotect-operator-rhmphazelcast-enterprise-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -7251,11 +8020,11 @@
      Grade

    NOT USED

    @@ -7265,61 +8034,37 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For vprotect-operator.v0.0.1:

      - -

    • "ERROR" vprotectdbservernodes.vprotect.storware.com does not have a status descriptor
    • - -
    • "ERROR" imagePullSecretsName does not have a spec descriptor
    • - -
    • "ERROR" initcontainerimage does not have a spec descriptor
    • - -
    • "ERROR" mariadb does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" node does not have a spec descriptor
    • - -
    • "ERROR" useImagePullSecret does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `node` in VProtectDBServerNode/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `useImagePullSecret` in VProtectDBServerNode/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imagePullSecretsName` in VProtectDBServerNode/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `initcontainerimage` in VProtectDBServerNode/v1alpha1
    • +

      For hazelcast-enterprise-operator.v0.3.7:

      -

    • "WARNING" Add CRD validation for spec field `mariadb` in VProtectDBServerNode/v1alpha1
    • +
    • "ERROR" hazelcastenterprises.hazelcast.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `server` in VProtectDBServerNode/v1alpha1
    • +
    • "ERROR" hazelcast does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecretsName
    • +
    • "ERROR" securityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for initcontainerimage
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for mariadb
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add CRD validation for HazelcastEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for node
    • +
    • "WARNING" Add a spec descriptor for hazelcast
    • -
    • "WARNING" Add a spec descriptor for useImagePullSecret
    • +
    • "WARNING" Add a spec descriptor for securityContext
    • @@ -7330,27 +8075,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For vprotect-operator.v0.0.1:

      +

      For hazelcast-enterprise-operator.v0.3.7:

      -

    • "WARNING" (vprotect-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (hazelcast-enterprise-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -7360,35 +8105,45 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    anzograph-operator-rhmponeagent-certified-rhmp -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -7396,40 +8151,56 @@
    Grade

    USED

    -

    PASS

    +

    ONLY ERRORS

    + +Info +
    +
      + + +
      +

      For dynatrace-monitoring.v0.10.1:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For anzograph-operator.v2.0.102:

      +

      For dynatrace-monitoring.v0.10.1:

      -

    • "WARNING" (anzograph-operator.v2.0.102) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -7439,35 +8210,45 @@
      Grade

    NOT USED

    Grade A
    (900)
    Grade D
    (200)
    minio-operator-rhmpaikit-operator-rhmp

    COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -7477,49 +8258,45 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For minio-operator.v4.1.2:

      - -

    • "ERROR" tenants.minio.min.io does not have a status descriptor
    • - -
    • "ERROR" s3 does not have a spec descriptor
    • +

      For aikit-operator.2021.2.0:

      -

    • "ERROR" podManagementPolicy does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" console does not have a spec descriptor
    • +
    • "ERROR" aikitoperators.aikit.intel does not have a status descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" imagestream does not have a spec descriptor
    • -
    • "ERROR" pools does not have a spec descriptor
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for s3
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in AIKitOperator/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for podManagementPolicy
    • +
    • "WARNING" Add CRD validation for spec field `imagestream` in AIKitOperator/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for console
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in AIKitOperator/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for imagestream
    • -
    • "WARNING" Add a spec descriptor for pools
    • +
    • "WARNING" Add a spec descriptor for nameOverride
    • @@ -7528,42 +8305,58 @@
      Grade
    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For aikit-operator.2021.2.0:

      + + +

    • "WARNING" (aikit-operator.2021.2.0) csv.metadata.Name aikit-operator.2021.2.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + + + +
    +
    +

    NOT USED

    Grade B
    (700)
    Grade C
    (500)
    op-svc-jenkins-rhmpkong-offline-operator-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -7576,81 +8369,59 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For op-svc-jenkins.v0.8.0:

      - -

    • "ERROR" jenkins.operator-service.com does not have a status descriptor
    • - -
    • "ERROR" jenkinsconfigurationascodes.operator-service.com does not have a status descriptor
    • - -
    • "ERROR" jenkinsgroovyscripts.operator-service.com does not have a status descriptor
    • - -
    • "ERROR" jenkinskubernetesagents.operator-service.com does not have a status descriptor
    • - -
    • "ERROR" jenkinsseedjobs.operator-service.com does not have a status descriptor
    • - -
    • "ERROR" authorizationStrategy does not have a spec descriptor
    • - -
    • "ERROR" disableCSRFProtection does not have a spec descriptor
    • - -
    • "ERROR" podSpec does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • +

      For kong.v0.3.0:

      -

    • "ERROR" data does not have a spec descriptor
    • +
    • "ERROR" proxy does not have a spec descriptor
    • -
    • "ERROR" data does not have a spec descriptor
    • +
    • "ERROR" env does not have a spec descriptor
    • -
    • "ERROR" podSpec does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" repository does not have a spec descriptor
    • +
    • "ERROR" ingressController does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" kongs.charts.helm.k8s.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for authorizationStrategy
    • - -
    • "WARNING" Add a spec descriptor for disableCSRFProtection
    • - -
    • "WARNING" Add a spec descriptor for podSpec
    • -
    • "WARNING" Add a spec descriptor for roles
    • +
    • "WARNING" Add a spec descriptor for proxy
    • -
    • "WARNING" Add a spec descriptor for data
    • +
    • "WARNING" Add a spec descriptor for env
    • -
    • "WARNING" Add a spec descriptor for data
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for podSpec
    • +
    • "WARNING" Add a spec descriptor for ingressController
    • -
    • "WARNING" Add a spec descriptor for repository
    • +
    • "WARNING" Add CRD validation for Kong/v1alpha1
    • @@ -7661,25 +8432,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For op-svc-jenkins.v0.8.0:

      +

      For kong.v0.3.0:

      -

    • "WARNING" (op-svc-jenkins.v0.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (kong.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kongs.charts.helm.k8s.io"])
    • @@ -7689,35 +8462,45 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    mongodb-enterprise-advanced-ibm-rhmpnode-red-operator-rhm-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -7727,124 +8510,185 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For mongodb-enterprise-advanced-ibm.v1.6.3:

      - -

    • "ERROR" mongodbusers.mongodb.com does not have a status descriptor
    • - -
    • "ERROR" opsmanagers.mongodb.com does not have a status descriptor
    • +

      For node-red-operator.v1.0.0:

      -

    • "ERROR" shardCount does not have a spec descriptor
    • +
    • "ERROR" noderedbackups.nodered.com does not have a status descriptor
    • -
    • "ERROR" mongodsPerShardCount does not have a spec descriptor
    • +
    • "ERROR" noderedrestores.nodered.com does not have a status descriptor
    • -
    • "ERROR" mongosCount does not have a spec descriptor
    • +
    • "ERROR" persistentvolume does not have a spec descriptor
    • -
    • "ERROR" persistent does not have a spec descriptor
    • +
    • "ERROR" secretkey does not have a spec descriptor
    • -
    • "ERROR" configServerCount does not have a spec descriptor
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "ERROR" db does not have a spec descriptor
    • +
    • "ERROR" adminpassword does not have a spec descriptor
    • -
    • "ERROR" mongodbResourceRef does not have a spec descriptor
    • +
    • "ERROR" backup does not have a spec descriptor
    • -
    • "ERROR" roles does not have a spec descriptor
    • +
    • "ERROR" ibm_s3 does not have a spec descriptor
    • -
    • "ERROR" username does not have a spec descriptor
    • +
    • "ERROR" ibm_s3 does not have a spec descriptor
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "ERROR" restore_file_name does not have a spec descriptor
    • -
    • "ERROR" adminCredentials does not have a spec descriptor
    • -
    • "ERROR" configuration does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `secretkey` in NodeRed/v1alpha1
    • -
    • "ERROR" externalConnectivity does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `size` in NodeRed/v1alpha1
    • -
    • "ERROR" applicationDatabase does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `adminpassword` in NodeRed/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `persistentvolume` in NodeRed/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `members` in MongoDB/v1
    • +
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedBackup/v1alpha1
    • -
    • "WARNING" Add CRD validation for status field `phase` in MongoDB/v1
    • +
    • "WARNING" Add CRD validation for spec field `backup` in NodeRedBackup/v1alpha1
    • -
    • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
    • +
    • "WARNING" Add CRD validation for spec field `restore_file_name` in NodeRedRestore/v1alpha1
    • -
    • "WARNING" Add CRD validation for status field `phase` in MongoDB/v1
    • +
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedRestore/v1alpha1
    • -
    • "WARNING" Add CRD validation for status field `type` in MongoDB/v1
    • +
    • "WARNING" Add a spec descriptor for persistentvolume
    • -
    • "WARNING" Add CRD validation for status field `phase` in MongoDBUser/v1
    • +
    • "WARNING" Add a spec descriptor for secretkey
    • -
    • "WARNING" Add a spec descriptor for shardCount
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add a spec descriptor for mongodsPerShardCount
    • +
    • "WARNING" Add a spec descriptor for adminpassword
    • -
    • "WARNING" Add a spec descriptor for mongosCount
    • +
    • "WARNING" Add a spec descriptor for backup
    • -
    • "WARNING" Add a spec descriptor for persistent
    • +
    • "WARNING" Add a spec descriptor for ibm_s3
    • -
    • "WARNING" Add a spec descriptor for configServerCount
    • +
    • "WARNING" Add a spec descriptor for ibm_s3
    • -
    • "WARNING" Add a spec descriptor for db
    • +
    • "WARNING" Add a spec descriptor for restore_file_name
    • -
    • "WARNING" Add a spec descriptor for mongodbResourceRef
    • -
    • "WARNING" Add a spec descriptor for roles
    • -
    • "WARNING" Add a spec descriptor for username
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for version
    • -
    • "WARNING" Add a spec descriptor for adminCredentials
    • +
      +

      For node-red-operator.v1.0.0:

      -

    • "WARNING" Add a spec descriptor for configuration
    • -
    • "WARNING" Add a spec descriptor for externalConnectivity
    • +
    • "WARNING" (node-red-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for applicationDatabase
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["noderedbackups.nodered.com" "noderedrestores.nodered.com" "nodereds.nodered.com"])
    +

    NOT USED

    Grade D
    (100)
    anzograph-operator-rhmp +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    PASS

    + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For mongodb-enterprise-advanced-ibm.v1.6.3:

      +

      For anzograph-operator.v2.0.102:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (anzograph-operator.v2.0.102) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -7854,132 +8698,97 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade A
    (900)
    mongodb-enterprise-rhmpcortex-certifai-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • beta
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For mongodb-enterprise.v1.10.0:

      - -

    • "ERROR" persistent does not have a spec descriptor
    • - -
    • "ERROR" persistent does not have a spec descriptor
    • - -
    • "ERROR" persistent does not have a spec descriptor
    • - -
    • "ERROR" mongodbstandalones.mongodb.com does not have a status descriptor
    • - -
    • "ERROR" mongodbreplicasets.mongodb.com does not have a status descriptor
    • - -
    • "ERROR" mongodbshardedclusters.mongodb.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for persistent
    • - -
    • "WARNING" Add a spec descriptor for persistent
    • - -
    • "WARNING" Add a spec descriptor for persistent
    • - -
    • "WARNING" Add CRD validation for spec field `persistent` in MongoDbStandalone/v1
    • - -
    • "WARNING" Add CRD validation for spec field `project` in MongoDbStandalone/v1
    • - -
    • "WARNING" Add CRD validation for spec field `credentials` in MongoDbStandalone/v1
    • - -
    • "WARNING" Add CRD validation for spec field `version` in MongoDbStandalone/v1
    • - -
    • "WARNING" Add CRD validation for spec field `credentials` in MongoDbReplicaSet/v1
    • - -
    • "WARNING" Add CRD validation for spec field `version` in MongoDbReplicaSet/v1
    • - -
    • "WARNING" Add CRD validation for spec field `persistent` in MongoDbReplicaSet/v1
    • - -
    • "WARNING" Add CRD validation for spec field `project` in MongoDbReplicaSet/v1
    • - -
    • "WARNING" Add CRD validation for spec field `project` in MongoDbShardedCluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `credentials` in MongoDbShardedCluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `version` in MongoDbShardedCluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `persistent` in MongoDbShardedCluster/v1
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For mongodb-enterprise.v1.10.0:

      +

      For cortex-certifai-operator.v1.3.10:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (cortex-certifai-operator.v1.3.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For cortex-certifai-operator.v1.3.11-rc.4:

      + + +

    • "WARNING" (cortex-certifai-operator.v1.3.11-rc.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -7989,22 +8798,22 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (400)
    cass-operator-rhmpperceptilabs-operator-package-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -8013,11 +8822,11 @@
    Grade

    NOT USED

    @@ -8025,27 +8834,51 @@
    Grade

    NOT USED

    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cass-operator.v1.5.0:

      +

      For perceptilabs-operator.v1.0.21:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `config` in CassandraDatacenter/v1beta1
    • +
    • "ERROR" corePvc does not have a spec descriptor
    • + +
    • "ERROR" ryggPvc does not have a spec descriptor
    • + +
    • "ERROR" coreGpus does not have a spec descriptor
    • + +
    • "ERROR" license_name does not have a spec descriptor
    • + +
    • "ERROR" license_value does not have a spec descriptor
    • + +
    • "ERROR" perceptilabs.perceptilabs.com does not have a status descriptor
    • + + +
    • "WARNING" Add CRD validation for PerceptiLabs/v1
    • + +
    • "WARNING" Add a spec descriptor for corePvc
    • + +
    • "WARNING" Add a spec descriptor for ryggPvc
    • + +
    • "WARNING" Add a spec descriptor for coreGpus
    • + +
    • "WARNING" Add a spec descriptor for license_name
    • + +
    • "WARNING" Add a spec descriptor for license_value
    • @@ -8056,25 +8889,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cass-operator.v1.5.0:

      +

      For perceptilabs-operator.v1.0.21:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (perceptilabs-operator.v1.0.21) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -8084,28 +8919,28 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    joget-dx-operator-rhmpcnvrg-operator-marketplace-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -8118,11 +8953,11 @@
      Grade

    NOT USED

    @@ -8132,33 +8967,107 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For joget-dx-openshift-operator.v0.0.12:

      +

      For cnvrg-operator.v0.352.0:

      + +

    • "ERROR" cnvrgapps.mlops.cnvrg.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "ERROR" clusterDomain does not have a spec descriptor
    • -
    • "ERROR" jogetdx.app.joget.com does not have a status descriptor
    • +
    • "ERROR" ingressType does not have a spec descriptor
    • +
    • "ERROR" prometheus does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "ERROR" redis does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for JogetDX/v1alpha1
    • +
    • "ERROR" es does not have a spec descriptor
    • + +
    • "ERROR" kibana does not have a spec descriptor
    • + +
    • "ERROR" cnvrgApp does not have a spec descriptor
    • + +
    • "ERROR" istio does not have a spec descriptor
    • + +
    • "ERROR" nvidiadp does not have a spec descriptor
    • + +
    • "ERROR" fluentd does not have a spec descriptor
    • + +
    • "ERROR" securityMode does not have a spec descriptor
    • + +
    • "ERROR" seeder does not have a spec descriptor
    • + +
    • "ERROR" pg does not have a spec descriptor
    • + +
    • "ERROR" minio does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `seeder` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `pg` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `minio` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `kibana` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `fluentd` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `ingressType` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `securityMode` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `es` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `istio` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `prometheus` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `nvidiadp` in CnvrgApp/v1
    • + +
    • "WARNING" Add CRD validation for spec field `redis` in CnvrgApp/v1
    • + +
    • "WARNING" Add a spec descriptor for clusterDomain
    • + +
    • "WARNING" Add a spec descriptor for ingressType
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for redis
    • + +
    • "WARNING" Add a spec descriptor for es
    • + +
    • "WARNING" Add a spec descriptor for kibana
    • + +
    • "WARNING" Add a spec descriptor for cnvrgApp
    • + +
    • "WARNING" Add a spec descriptor for istio
    • + +
    • "WARNING" Add a spec descriptor for nvidiadp
    • + +
    • "WARNING" Add a spec descriptor for fluentd
    • + +
    • "WARNING" Add a spec descriptor for securityMode
    • + +
    • "WARNING" Add a spec descriptor for seeder
    • + +
    • "WARNING" Add a spec descriptor for pg
    • + +
    • "WARNING" Add a spec descriptor for minio
    • @@ -8169,27 +9078,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For joget-dx-openshift-operator.v0.0.12:

      +

      For cnvrg-operator.v0.352.0:

      -

    • "WARNING" (joget-dx-openshift-operator.v0.0.12) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cnvrg-operator.v0.352.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jogetdx.app.joget.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -8199,28 +9108,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    ovms-operator-rhmpenterprise-operator-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -8233,205 +9142,119 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For openvino-operator.v0.0.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" modelservers.intel.com does not have a status descriptor
    • - -
    • "ERROR" notebooks.intel.com does not have a status descriptor
    • - -
    • "ERROR" batch_size does not have a spec descriptor
    • - -
    • "ERROR" models_volume_claim does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" aws_access_key_id does not have a spec descriptor
    • - -
    • "ERROR" grpc_port does not have a spec descriptor
    • - -
    • "ERROR" model_path does not have a spec descriptor
    • - -
    • "ERROR" models_host_path does not have a spec descriptor
    • - -
    • "ERROR" service_type does not have a spec descriptor
    • - -
    • "ERROR" gcp_creds_secret_name does not have a spec descriptor
    • - -
    • "ERROR" plugin_config does not have a spec descriptor
    • - -
    • "ERROR" log_level does not have a spec descriptor
    • - -
    • "ERROR" model_version_policy does not have a spec descriptor
    • - -
    • "ERROR" aws_secret_access_key does not have a spec descriptor
    • - -
    • "ERROR" rest_port does not have a spec descriptor
    • - -
    • "ERROR" target_device does not have a spec descriptor
    • - -
    • "ERROR" annotations does not have a spec descriptor
    • - -
    • "ERROR" aws_region does not have a spec descriptor
    • - -
    • "ERROR" file_system_poll_wait_seconds does not have a spec descriptor
    • - -
    • "ERROR" image_name does not have a spec descriptor
    • - -
    • "ERROR" shape does not have a spec descriptor
    • - -
    • "ERROR" s3_compat_api_endpoint does not have a spec descriptor
    • - -
    • "ERROR" security_context does not have a spec descriptor
    • - -
    • "ERROR" config_configmap_name does not have a spec descriptor
    • - -
    • "ERROR" https_proxy does not have a spec descriptor
    • - -
    • "ERROR" model_name does not have a spec descriptor
    • - -
    • "ERROR" nireq does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `resources` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `rest_port` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `s3_compat_api_endpoint` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `https_proxy` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `log_level` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `models_volume_claim` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `annotations` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `config_configmap_name` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `model_version_policy` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `model_path` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `shape` in ModelServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `aws_secret_access_key` in ModelServer/v1alpha1
    • +

      For enterprise-operator.v0.1.5:

      -

    • "WARNING" Add CRD validation for spec field `models_host_path` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreenterprises.anchore.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `plugin_config` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreSimpleQueue does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `aws_access_key_id` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreApi does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `batch_size` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreAnalyzer does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `gcp_creds_secret_name` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreEngineUpgradeJob does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nireq` in ModelServer/v1alpha1
    • +
    • "ERROR" postgresql does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `replicas` in ModelServer/v1alpha1
    • +
    • "ERROR" anchore-feeds-db does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `security_context` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreCatalog does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `aws_region` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreEnterpriseEngineUpgradeJob does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `file_system_poll_wait_seconds` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreEnterpriseFeeds does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image_name` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreEnterpriseNotifications does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `grpc_port` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreEnterpriseRbac does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `service_type` in ModelServer/v1alpha1
    • +
    • "ERROR" anchoreEnterpriseUi does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `target_device` in ModelServer/v1alpha1
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `model_name` in ModelServer/v1alpha1
    • +
    • "ERROR" anchore-ui-redis does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for batch_size
    • +
    • "ERROR" anchoreEnterpriseGlobal does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for models_volume_claim
    • +
    • "ERROR" anchoreEnterpriseReports does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "ERROR" anchoreGlobal does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for aws_access_key_id
    • +
    • "ERROR" anchorePolicyEngine does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for grpc_port
    • +
    • "ERROR" anchoreEnterpriseFeedsUpgradeJob does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for model_path
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for models_host_path
    • -
    • "WARNING" Add a spec descriptor for service_type
    • +
    • "WARNING" Add CRD validation for AnchoreEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for gcp_creds_secret_name
    • +
    • "WARNING" Add a spec descriptor for anchoreSimpleQueue
    • -
    • "WARNING" Add a spec descriptor for plugin_config
    • +
    • "WARNING" Add a spec descriptor for anchoreApi
    • -
    • "WARNING" Add a spec descriptor for log_level
    • +
    • "WARNING" Add a spec descriptor for anchoreAnalyzer
    • -
    • "WARNING" Add a spec descriptor for model_version_policy
    • +
    • "WARNING" Add a spec descriptor for anchoreEngineUpgradeJob
    • -
    • "WARNING" Add a spec descriptor for aws_secret_access_key
    • +
    • "WARNING" Add a spec descriptor for postgresql
    • -
    • "WARNING" Add a spec descriptor for rest_port
    • +
    • "WARNING" Add a spec descriptor for anchore-feeds-db
    • -
    • "WARNING" Add a spec descriptor for target_device
    • +
    • "WARNING" Add a spec descriptor for anchoreCatalog
    • -
    • "WARNING" Add a spec descriptor for annotations
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseEngineUpgradeJob
    • -
    • "WARNING" Add a spec descriptor for aws_region
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseFeeds
    • -
    • "WARNING" Add a spec descriptor for file_system_poll_wait_seconds
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseNotifications
    • -
    • "WARNING" Add a spec descriptor for image_name
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseRbac
    • -
    • "WARNING" Add a spec descriptor for shape
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseUi
    • -
    • "WARNING" Add a spec descriptor for s3_compat_api_endpoint
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add a spec descriptor for security_context
    • +
    • "WARNING" Add a spec descriptor for anchore-ui-redis
    • -
    • "WARNING" Add a spec descriptor for config_configmap_name
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseGlobal
    • -
    • "WARNING" Add a spec descriptor for https_proxy
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseReports
    • -
    • "WARNING" Add a spec descriptor for model_name
    • +
    • "WARNING" Add a spec descriptor for anchoreGlobal
    • -
    • "WARNING" Add a spec descriptor for nireq
    • +
    • "WARNING" Add a spec descriptor for anchorePolicyEngine
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for anchoreEnterpriseFeedsUpgradeJob
    • @@ -8442,25 +9265,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For openvino-operator.v0.0.1:

      +

      For enterprise-operator.v0.1.5:

      -

    • "WARNING" (openvino-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (enterprise-operator.v0.1.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anchoreenterprises.anchore.com"])
    • @@ -8470,35 +9295,45 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    perceptilabs-operator-package-rhmpmemql-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -8508,49 +9343,33 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For perceptilabs-operator.v1.0.21:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" corePvc does not have a spec descriptor
    • - -
    • "ERROR" ryggPvc does not have a spec descriptor
    • - -
    • "ERROR" coreGpus does not have a spec descriptor
    • - -
    • "ERROR" license_name does not have a spec descriptor
    • - -
    • "ERROR" license_value does not have a spec descriptor
    • - -
    • "ERROR" perceptilabs.perceptilabs.com does not have a status descriptor
    • - +

      For memsql-operator.v1.2.1:

      -

    • "WARNING" Add CRD validation for PerceptiLabs/v1
    • +
    • "ERROR" aggregatorSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for corePvc
    • +
    • "ERROR" leafSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ryggPvc
    • -
    • "WARNING" Add a spec descriptor for coreGpus
    • +
    • "WARNING" Add CRD validation for MemsqlCluster/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for license_name
    • +
    • "WARNING" Add a spec descriptor for aggregatorSpec
    • -
    • "WARNING" Add a spec descriptor for license_value
    • +
    • "WARNING" Add a spec descriptor for leafSpec
    • @@ -8561,27 +9380,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For perceptilabs-operator.v1.0.21:

      +

      For memsql-operator.v1.2.1:

      -

    • "WARNING" (perceptilabs-operator.v1.0.21) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (memsql-operator.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -8591,28 +9410,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    starburst-enterprise-helm-operator-rhmpop-svc-jenkins-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -8625,11 +9444,11 @@
      Grade

    NOT USED

    @@ -8639,692 +9458,669 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

      - -

    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • - -
    • "ERROR" starburstenterprises.charts.starburstdata.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • - -
    • "ERROR" envFrom does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" registryCredentials does not have a spec descriptor
    • - -
    • "ERROR" tolerations does not have a spec descriptor
    • - -
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • - -
    • "ERROR" env does not have a spec descriptor
    • - -
    • "ERROR" extraArguments does not have a spec descriptor
    • - -
    • "ERROR" heapSizePercentage does not have a spec descriptor
    • - -
    • "ERROR" initFile does not have a spec descriptor
    • - -
    • "ERROR" objectStorage does not have a spec descriptor
    • - -
    • "ERROR" affinity does not have a spec descriptor
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" hdfs does not have a spec descriptor
    • - -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • - -
    • "ERROR" podAnnotations does not have a spec descriptor
    • - -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • - -
    • "ERROR" expose does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" catalogs does not have a spec descriptor
    • - -
    • "ERROR" extraArguments does not have a spec descriptor
    • - -
    • "ERROR" userDatabase does not have a spec descriptor
    • - -
    • "ERROR" worker does not have a spec descriptor
    • - -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • - -
    • "ERROR" extraSecret does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" initFile does not have a spec descriptor
    • - -
    • "ERROR" livenessProbe does not have a spec descriptor
    • - -
    • "ERROR" prometheus does not have a spec descriptor
    • - -
    • "ERROR" securityContext does not have a spec descriptor
    • - -
    • "ERROR" cache does not have a spec descriptor
    • - -
    • "ERROR" coordinator does not have a spec descriptor
    • - -
    • "ERROR" externalSecrets does not have a spec descriptor
    • - -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • - -
    • "ERROR" initImage does not have a spec descriptor
    • - -
    • "ERROR" internal does not have a spec descriptor
    • - -
    • "ERROR" sharedSecret does not have a spec descriptor
    • - -
    • "ERROR" usageMetrics does not have a spec descriptor
    • - -
    • "ERROR" environment does not have a spec descriptor
    • - -
    • "ERROR" expose does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • + +
      +

      For op-svc-jenkins.v0.8.0:

      -

    • "ERROR" readinessProbe does not have a spec descriptor
    • +
    • "ERROR" jenkins.operator-service.com does not have a status descriptor
    • -
    • "ERROR" registryCredentials does not have a spec descriptor
    • +
    • "ERROR" jenkinsconfigurationascodes.operator-service.com does not have a status descriptor
    • -
    • "ERROR" spilling does not have a spec descriptor
    • +
    • "ERROR" jenkinsgroovyscripts.operator-service.com does not have a status descriptor
    • -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • +
    • "ERROR" jenkinskubernetesagents.operator-service.com does not have a status descriptor
    • +
    • "ERROR" jenkinsseedjobs.operator-service.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • +
    • "ERROR" authorizationStrategy does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • +
    • "ERROR" disableCSRFProtection does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • +
    • "ERROR" podSpec does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • +
    • "ERROR" roles does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • +
    • "ERROR" data does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • +
    • "ERROR" data does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • +
    • "ERROR" podSpec does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • +
    • "ERROR" repository does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for authorizationStrategy
    • -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for disableCSRFProtection
    • -
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for podSpec
    • -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for roles
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for data
    • -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for data
    • -
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for podSpec
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for repository
    • -
    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image` in StarburstEnterprise/v1alpha1
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `initImage` in StarburstEnterprise/v1alpha1
    • +
      +

      For op-svc-jenkins.v0.8.0:

      -

    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `cache` in StarburstEnterprise/v1alpha1
    • +
    • "WARNING" (op-svc-jenkins.v0.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstEnterprise/v1alpha1
    • +
    +
    + +

    NOT USED

    Grade B
    (600)
    entando-k8s-operator-rhmp +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstEnterprise/v1alpha1
    • + +
      +

      For entando-k8s-operator.v6.3.2-pr3:

      -

    • "WARNING" Add CRD validation for spec field `spilling` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `worker` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `internal` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" details does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" databaseName does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" createDeployment does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `query` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" standardImage does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `environment` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstEnterprise/v1alpha1
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for additionalVolumes
    • +
    • "ERROR" healthCheckPath does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for envFrom
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for registryCredentials
    • +
    • "ERROR" ingressPath does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • +
    • "ERROR" roles does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for env
    • +
    • "ERROR" securityLevel does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for extraArguments
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for initFile
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for objectStorage
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "ERROR" standardServerImage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for database
    • +
    • "ERROR" entandoAppName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for hdfs
    • +
    • "ERROR" entandoPluginName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" dbmsOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • +
    • "ERROR" components does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for expose
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for details
    • -
    • "WARNING" Add a spec descriptor for catalogs
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add a spec descriptor for extraArguments
    • +
    • "WARNING" Add a spec descriptor for databaseName
    • -
    • "WARNING" Add a spec descriptor for userDatabase
    • +
    • "WARNING" Add a spec descriptor for createDeployment
    • -
    • "WARNING" Add a spec descriptor for worker
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for additionalVolumes
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add a spec descriptor for extraSecret
    • +
    • "WARNING" Add a spec descriptor for standardImage
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for initFile
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add a spec descriptor for livenessProbe
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "WARNING" Add a spec descriptor for healthCheckPath
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for cache
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "WARNING" Add a spec descriptor for coordinator
    • +
    • "WARNING" Add a spec descriptor for ingressPath
    • -
    • "WARNING" Add a spec descriptor for externalSecrets
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "WARNING" Add a spec descriptor for roles
    • -
    • "WARNING" Add a spec descriptor for initImage
    • +
    • "WARNING" Add a spec descriptor for securityLevel
    • -
    • "WARNING" Add a spec descriptor for internal
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add a spec descriptor for sharedSecret
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add a spec descriptor for usageMetrics
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add a spec descriptor for expose
    • +
    • "WARNING" Add a spec descriptor for standardServerImage
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" Add a spec descriptor for entandoAppName
    • -
    • "WARNING" Add a spec descriptor for readinessProbe
    • +
    • "WARNING" Add a spec descriptor for entandoPluginName
    • -
    • "WARNING" Add a spec descriptor for registryCredentials
    • +
    • "WARNING" Add a spec descriptor for dbmsOverride
    • -
    • "WARNING" Add a spec descriptor for spilling
    • +
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • +
    • "WARNING" Add a spec descriptor for components
    • +
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For entando-k8s-operator.v6.3.2-pr3:

      +

    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • -
      -

      For starburst-enterprise-helm-operator.v354.0.0-ubi:

      +

    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • +
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • -
    • "WARNING" (starburst-enterprise-helm-operator.v354.0.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["starburstenterprises.charts.starburstdata.com" "starbursthives.charts.starburstdata.com"])
    • +
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • +
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • +
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    presto-operator-rhmp -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" details does not have a spec descriptor
    • - -
      -

      For starburst-presto-helm-operator.v350.1.1-ubi:

      +

    • "ERROR" dbms does not have a spec descriptor
    • -
    • "ERROR" heapSizePercentage does not have a spec descriptor
    • +
    • "ERROR" databaseName does not have a spec descriptor
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "ERROR" createDeployment does not have a spec descriptor
    • -
    • "ERROR" env does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" expose does not have a spec descriptor
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "ERROR" extraArguments does not have a spec descriptor
    • +
    • "ERROR" standardImage does not have a spec descriptor
    • -
    • "ERROR" registryCredentials does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "ERROR" hdfs does not have a spec descriptor
    • +
    • "ERROR" healthCheckPath does not have a spec descriptor
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" initFile does not have a spec descriptor
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "ERROR" objectStorage does not have a spec descriptor
    • +
    • "ERROR" ingressPath does not have a spec descriptor
    • -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "ERROR" roles does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "ERROR" securityLevel does not have a spec descriptor
    • -
    • "ERROR" database does not have a spec descriptor
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "ERROR" envFrom does not have a spec descriptor
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" standardServerImage does not have a spec descriptor
    • -
    • "ERROR" expose does not have a spec descriptor
    • +
    • "ERROR" entandoAppName does not have a spec descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "ERROR" entandoPluginName does not have a spec descriptor
    • -
    • "ERROR" query does not have a spec descriptor
    • +
    • "ERROR" dbmsOverride does not have a spec descriptor
    • -
    • "ERROR" additionalVolumes does not have a spec descriptor
    • +
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • -
    • "ERROR" catalogs does not have a spec descriptor
    • +
    • "ERROR" components does not have a spec descriptor
    • -
    • "ERROR" spilling does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • -
    • "ERROR" usageMetrics does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for details
    • -
    • "ERROR" userDatabase does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "ERROR" externalSecrets does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for databaseName
    • -
    • "ERROR" livenessProbe does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for createDeployment
    • -
    • "ERROR" registryCredentials does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" sharedSecret does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "ERROR" worker does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for standardImage
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" initImage does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "ERROR" environment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "ERROR" extraArguments does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for healthCheckPath
    • -
    • "ERROR" extraSecret does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "ERROR" initFile does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "ERROR" internal does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ingressPath
    • -
    • "ERROR" prometheus does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" cache does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for roles
    • -
    • "ERROR" coordinator does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for securityLevel
    • -
    • "ERROR" readinessProbe does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "ERROR" starburstprestoes.charts.starburstdata.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for standardServerImage
    • +
    • "WARNING" Add a spec descriptor for entandoAppName
    • -
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • +
    • "WARNING" Add a spec descriptor for entandoPluginName
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "WARNING" Add a spec descriptor for dbmsOverride
    • -
    • "WARNING" Add a spec descriptor for env
    • +
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • -
    • "WARNING" Add a spec descriptor for expose
    • +
    • "WARNING" Add a spec descriptor for components
    • -
    • "WARNING" Add a spec descriptor for extraArguments
    • +
    • "WARNING" Add CRD validation for spec field `databaseName` in EntandoDatabaseService/v1
    • -
    • "WARNING" Add a spec descriptor for registryCredentials
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
      +

      For entando-k8s-operator.v6.3.2:

      -

    • "WARNING" Add a spec descriptor for additionalVolumes
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for hdfs
    • +
    • "ERROR" details does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for initFile
    • +
    • "ERROR" databaseName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for objectStorage
    • +
    • "ERROR" createDeployment does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "ERROR" standardImage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for database
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for envFrom
    • +
    • "ERROR" securityLevel does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" healthCheckPath does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for expose
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "ERROR" ingressPath does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for additionalVolumes
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for catalogs
    • +
    • "ERROR" roles does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for spilling
    • +
    • "ERROR" ingressHostName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for usageMetrics
    • +
    • "ERROR" standardServerImage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for userDatabase
    • +
    • "ERROR" dbms does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for externalSecrets
    • +
    • "ERROR" environmentVariables does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for livenessProbe
    • +
    • "ERROR" entandoAppName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for registryCredentials
    • +
    • "ERROR" entandoPluginName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for sharedSecret
    • +
    • "ERROR" dbmsOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for worker
    • +
    • "ERROR" ingressHostNameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" components does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for initImage
    • +
    • "ERROR" entandodebundles.entando.org does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for environment
    • +
    • "ERROR" entandodatabaseservices.entando.org does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for extraArguments
    • +
    • "ERROR" entandokeycloakservers.entando.org does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for extraSecret
    • +
    • "ERROR" entandoclusterinfrastructures.entando.org does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for initFile
    • +
    • "ERROR" entandoplugins.entando.org does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for internal
    • +
    • "ERROR" entandoapps.entando.org does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "ERROR" entandoapppluginlinks.entando.org does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for cache
    • -
    • "WARNING" Add a spec descriptor for coordinator
    • +
    • "WARNING" Add a spec descriptor for details
    • -
    • "WARNING" Add a spec descriptor for readinessProbe
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add a spec descriptor for databaseName
    • -
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for createDeployment
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for standardImage
    • -
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for securityLevel
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for healthCheckPath
    • -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingressPath
    • -
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for roles
    • -
    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingressHostName
    • -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicas
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for standardServerImage
    • -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for dbms
    • -
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for environmentVariables
    • -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for entandoAppName
    • -
    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for entandoPluginName
    • -
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for dbmsOverride
    • -
    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingressHostNameOverride
    • -
    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for components
    • -
    • "WARNING" Add CRD validation for spec field `cache` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstPresto/v1alpha1
    • +
    +
    + +
    +

    ONLY ERRORS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `worker` in StarburstPresto/v1alpha1
    • +
      +

      For entando-k8s-operator.v6.3.2-pr3:

      -

    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstPresto/v1alpha1
    • +
    • "ERROR" (entando-k8s-operator.v6.3.2-pr3) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • -
    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `image` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstPresto/v1alpha1
    • +
      +

      For entando-k8s-operator.v6.3.2-pr3:

      -

    • "WARNING" Add CRD validation for spec field `internal` in StarburstPresto/v1alpha1
    • +
    • "ERROR" (entando-k8s-operator.v6.3.2-pr3) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • -
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstPresto/v1alpha1
    • +
      +

      For entando-k8s-operator.v6.3.2:

      -

    • "WARNING" Add CRD validation for spec field `environment` in StarburstPresto/v1alpha1
    • +
    • "ERROR" (entando-k8s-operator.v6.3.2) csv.Metadata.Annotations["categories"] value Development Tools is not in the set of default categories
    • -
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `spilling` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `query` in StarburstPresto/v1alpha1
    • +
    +
    + +

    NOT USED

    Grade C
    (400)
    iomesh-operator-rhmp +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for spec field `expose` in StarburstPresto/v1alpha1
    • + +
      +

      For iomesh-operator.v0.0.1:

      -

    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstPresto/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `initImage` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Warning: Value : (iomesh-operator.v0.0.1) example annotations not found
    • @@ -9333,29 +10129,31 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For starburst-presto-helm-operator.v350.1.1-ubi:

      +

      For iomesh-operator.v0.0.1:

      +

    • "ERROR" (iomesh-operator.v0.0.1) csv.Spec.Icon elements should contain both data and mediatype
    • -
    • "WARNING" (starburst-presto-helm-operator.v350.1.1-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (iomesh-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" (iomesh-operator.v0.0.1) example annotations not found
    • @@ -9365,135 +10163,109 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (500)
    ccm-node-agent-operator-rhmpsysdig-certified-rhmp -

    COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    + } +

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ccm-node-agent-operator.v0.0.1:

      +

      For sysdig-operator.v1.8.3:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ccmJoinToken does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" nameOverride does not have a spec descriptor
    • - -
    • "ERROR" podAnnotations does not have a spec descriptor
    • - -
    • "ERROR" replicaCount does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • - -
    • "ERROR" log does not have a spec descriptor
    • - -
    • "ERROR" ports does not have a spec descriptor
    • +
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • -
    • "ERROR" ccmnodeagents.charts.operatorhub.io does not have a status descriptor
    • +
    • "ERROR" daemonset does not have a spec descriptor
    • +
    • "ERROR" scc does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ccmJoinToken
    • +
    • "ERROR" sysdig does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" ebpf does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "ERROR" daemonset does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "ERROR" scc does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "ERROR" sysdig does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • -
    • "WARNING" Add a spec descriptor for log
    • +
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • -
    • "WARNING" Add a spec descriptor for ports
    • +
    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • +
    • "WARNING" Add CRD validation for spec field `ebpf` in SysdigAgent/v1
    • -
    • "WARNING" Add CRD validation for spec field `ccmJoinToken` in CcmNodeAgent/v1
    • +
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • -
    • "WARNING" Add CRD validation for spec field `image` in CcmNodeAgent/v1
    • +
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in CcmNodeAgent/v1
    • +
    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • -
    • "WARNING" Add CRD validation for spec field `ports` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for daemonset
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for scc
    • -
    • "WARNING" Add CRD validation for spec field `resources` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for sysdig
    • -
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for ebpf
    • -
    • "WARNING" Add CRD validation for spec field `log` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for daemonset
    • -
    • "WARNING" Add CRD validation for spec field `nameOverride` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for scc
    • -
    • "WARNING" Add CRD validation for spec field `podAnnotations` in CcmNodeAgent/v1
    • +
    • "WARNING" Add a spec descriptor for sysdig
    • @@ -9504,25 +10276,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ccm-node-agent-operator.v0.0.1:

      +

      For sysdig-operator.v1.8.3:

      -

    • "WARNING" (ccm-node-agent-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (sysdig-operator.v1.8.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sysdigagents.sysdig.com"])
    • @@ -9532,28 +10306,28 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (200)
    cyberarmor-operator-certified-rhmpjoget-openshift-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -9564,105 +10338,59 @@
      Grade
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • joget-openshift-operator.v0.0.4
    • + +
    +
    +

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cyberarmor-operator.0.0.1:

      +

      For joget-openshift-operator.v0.0.4:

      -

    • "ERROR" cyberarmors.apm.cyberarmor.com does not have a status descriptor
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "ERROR" cyberarmornamespaces.apm.cyberarmor.com does not have a status descriptor
    • +
    • "ERROR" joget.app.joget.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" caCustomerGuid does not have a spec descriptor
    • - -
    • "ERROR" caPostman does not have a spec descriptor
    • - -
    • "ERROR" caClusterGuid does not have a spec descriptor
    • - -
    • "ERROR" caMasterNotificationServerHost does not have a spec descriptor
    • - -
    • "ERROR" caK8sReportUrl does not have a spec descriptor
    • - -
    • "ERROR" caDashboardBackend does not have a spec descriptor
    • - -
    • "ERROR" caPortalBackend does not have a spec descriptor
    • - -
    • "ERROR" caClusterName does not have a spec descriptor
    • - -
    • "ERROR" caloginInfo does not have a spec descriptor
    • - -
    • "ERROR" cyberArmorNameSpace does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for caCustomerGuid
    • - -
    • "WARNING" Add a spec descriptor for caPostman
    • - -
    • "WARNING" Add a spec descriptor for caClusterGuid
    • - -
    • "WARNING" Add a spec descriptor for caMasterNotificationServerHost
    • - -
    • "WARNING" Add a spec descriptor for caK8sReportUrl
    • - -
    • "WARNING" Add a spec descriptor for caDashboardBackend
    • - -
    • "WARNING" Add a spec descriptor for caPortalBackend
    • - -
    • "WARNING" Add a spec descriptor for caClusterName
    • - -
    • "WARNING" Add a spec descriptor for caloginInfo
    • - -
    • "WARNING" Add a spec descriptor for cyberArmorNameSpace
    • - -
    • "WARNING" Add CRD validation for spec field `caK8sReportUrl` in Cyberarmor/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `caDashboardBackend` in Cyberarmor/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `caPortalBackend` in Cyberarmor/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `caCustomerGuid` in Cyberarmor/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `caloginInfo` in Cyberarmor/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `caPostman` in Cyberarmor/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `caClusterGuid` in Cyberarmor/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `caClusterName` in Cyberarmor/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `caMasterNotificationServerHost` in Cyberarmor/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add CRD validation for spec field `cyberArmorNameSpace` in Cyberarmornamespace/v1alpha1
    • +
    • "WARNING" Add CRD validation for Joget/v1alpha1
    • @@ -9673,27 +10401,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cyberarmor-operator.0.0.1:

      +

      For joget-openshift-operator.v0.0.4:

      -

    • "WARNING" (cyberarmor-operator.0.0.1) csv.metadata.Name cyberarmor-operator.0.0.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (joget-openshift-operator.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -9703,32 +10431,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    eddi-operator-certified-rhmporca-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -9737,11 +10465,11 @@
    Grade

    NOT USED

    @@ -9751,25 +10479,49 @@
    Grade

    ONLY WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For eddi-operator.v1.0.2:

      + +
      +

      For orca-operator.v1.0.197:

      + + +

    • "WARNING" Add CRD validation for spec field `project` in Orca/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `components` in Orca/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `domain` in Orca/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `endpoints` in Orca/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `ignored_config_maps` in Orca/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `images` in Orca/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `kube_platform` in Orca/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `namespace` in Orca/v1alpha1
    • +
    • "WARNING" Add CRD validation for status field `phase` in Orca/v1alpha1
    • -
    • "WARNING" Add CRD validation for Eddioperator/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `mode` in Policy/v1
    • + +
    • "WARNING" Add CRD validation for spec field `networkPolicyAllowAll` in Policy/v1
    • + +
    • "WARNING" Add CRD validation for spec field `rules` in Policy/v1
    • + +
    • "WARNING" Add CRD validation for status field `phase` in Policy/v1
    • @@ -9780,27 +10532,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For eddi-operator.v1.0.2:

      - +

      For orca-operator.v1.0.197:

      -

    • "WARNING" (eddi-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -9810,35 +10560,45 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    fep-ansible-operatorpresto-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -9848,333 +10608,305 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For fujitsu-enterprise-operator.v2.0.0:

      +

      For starburst-presto-helm-operator.v350.1.1-ubi:

      + +

    • "ERROR" heapSizePercentage does not have a spec descriptor
    • + +
    • "ERROR" podAnnotations does not have a spec descriptor
    • + +
    • "ERROR" env does not have a spec descriptor
    • + +
    • "ERROR" expose does not have a spec descriptor
    • + +
    • "ERROR" extraArguments does not have a spec descriptor
    • + +
    • "ERROR" registryCredentials does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • + +
    • "ERROR" hdfs does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" initFile does not have a spec descriptor
    • + +
    • "ERROR" objectStorage does not have a spec descriptor
    • + +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • + +
    • "ERROR" tolerations does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" database does not have a spec descriptor
    • + +
    • "ERROR" deploymentAnnotations does not have a spec descriptor
    • + +
    • "ERROR" envFrom does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" expose does not have a spec descriptor
    • + +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • + +
    • "ERROR" query does not have a spec descriptor
    • + +
    • "ERROR" additionalVolumes does not have a spec descriptor
    • + +
    • "ERROR" catalogs does not have a spec descriptor
    • + +
    • "ERROR" spilling does not have a spec descriptor
    • + +
    • "ERROR" starburst-charts-common does not have a spec descriptor
    • + +
    • "ERROR" usageMetrics does not have a spec descriptor
    • + +
    • "ERROR" userDatabase does not have a spec descriptor
    • + +
    • "ERROR" externalSecrets does not have a spec descriptor
    • + +
    • "ERROR" livenessProbe does not have a spec descriptor
    • + +
    • "ERROR" registryCredentials does not have a spec descriptor
    • + +
    • "ERROR" sharedSecret does not have a spec descriptor
    • + +
    • "ERROR" worker does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" initImage does not have a spec descriptor
    • + +
    • "ERROR" environment does not have a spec descriptor
    • + +
    • "ERROR" extraArguments does not have a spec descriptor
    • + +
    • "ERROR" extraSecret does not have a spec descriptor
    • + +
    • "ERROR" initFile does not have a spec descriptor
    • + +
    • "ERROR" internal does not have a spec descriptor
    • + +
    • "ERROR" prometheus does not have a spec descriptor
    • + +
    • "ERROR" cache does not have a spec descriptor
    • + +
    • "ERROR" coordinator does not have a spec descriptor
    • + +
    • "ERROR" readinessProbe does not have a spec descriptor
    • + +
    • "ERROR" securityContext does not have a spec descriptor
    • + +
    • "ERROR" starbursthives.charts.starburstdata.com does not have a status descriptor
    • + +
    • "ERROR" starburstprestoes.charts.starburstdata.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" fepclusters.fep.fujitsu.io does not have a status descriptor
    • -
    • "ERROR" fepactions.fep.fujitsu.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for heapSizePercentage
    • -
    • "ERROR" feppgpool2s.fep.fujitsu.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "ERROR" feprestores.fep.fujitsu.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for env
    • -
    • "ERROR" fep does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for expose
    • -
    • "ERROR" startupValues does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for extraArguments
    • -
    • "ERROR" sysExtraLogging does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for registryCredentials
    • -
    • "ERROR" targetClusterName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "ERROR" fepAction does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • -
    • "ERROR" fepclustername does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for hdfs
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for initFile
    • -
    • "ERROR" fromFEPcluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for objectStorage
    • -
    • "ERROR" toFEPcluster does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • -
    • "ERROR" restoretype does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for tolerations
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPPgpool2Cert: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for database
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPConfig: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for deploymentAnnotations
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPVolume: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for envFrom
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPCert: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPUser: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Warning: Value fep.fujitsu.io/v1, Kind=FEPBackup: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for expose
    • -
    • "WARNING" Add a spec descriptor for fep
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "WARNING" Add a spec descriptor for startupValues
    • +
    • "WARNING" Add a spec descriptor for query
    • -
    • "WARNING" Add a spec descriptor for sysExtraLogging
    • +
    • "WARNING" Add a spec descriptor for additionalVolumes
    • -
    • "WARNING" Add a spec descriptor for targetClusterName
    • +
    • "WARNING" Add a spec descriptor for catalogs
    • -
    • "WARNING" Add a spec descriptor for fepAction
    • +
    • "WARNING" Add a spec descriptor for spilling
    • -
    • "WARNING" Add a spec descriptor for fepclustername
    • +
    • "WARNING" Add a spec descriptor for starburst-charts-common
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for usageMetrics
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for userDatabase
    • -
    • "WARNING" Add a spec descriptor for fromFEPcluster
    • +
    • "WARNING" Add a spec descriptor for externalSecrets
    • -
    • "WARNING" Add a spec descriptor for toFEPcluster
    • +
    • "WARNING" Add a spec descriptor for livenessProbe
    • -
    • "WARNING" Add a spec descriptor for restoretype
    • +
    • "WARNING" Add a spec descriptor for registryCredentials
    • -
    • "WARNING" Add CRD validation for FEPCluster/v2
    • +
    • "WARNING" Add a spec descriptor for sharedSecret
    • -
    • "WARNING" Add CRD validation for FEPAction/v1
    • +
    • "WARNING" Add a spec descriptor for worker
    • -
    • "WARNING" Add CRD validation for spec field `fepclustername` in FEPPgpool2/v1
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPPgpool2/v1
    • +
    • "WARNING" Add a spec descriptor for initImage
    • -
    • "WARNING" Add CRD validation for spec field `fromFEPcluster` in FEPRestore/v1
    • +
    • "WARNING" Add a spec descriptor for environment
    • + +
    • "WARNING" Add a spec descriptor for extraArguments
    • + +
    • "WARNING" Add a spec descriptor for extraSecret
    • + +
    • "WARNING" Add a spec descriptor for initFile
    • + +
    • "WARNING" Add a spec descriptor for internal
    • + +
    • "WARNING" Add a spec descriptor for prometheus
    • + +
    • "WARNING" Add a spec descriptor for cache
    • + +
    • "WARNING" Add a spec descriptor for coordinator
    • + +
    • "WARNING" Add a spec descriptor for readinessProbe
    • + +
    • "WARNING" Add a spec descriptor for securityContext
    • + +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `affinity` in StarburstHive/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `heapSizePercentage` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `toFEPcluster` in FEPRestore/v1
    • +
    • "WARNING" Add CRD validation for spec field `image` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `restoretype` in FEPRestore/v1
    • +
    • "WARNING" Add CRD validation for spec field `envFrom` in StarburstHive/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in FEPRestore/v1
    • +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `hdfs` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstHive/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `tolerations` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstHive/v1alpha1
    • -
      -

      For fujitsu-enterprise-operator.v2.0.0:

      +

    • "WARNING" Add CRD validation for spec field `database` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `env` in StarburstHive/v1alpha1
    • -
    • "WARNING" (fujitsu-enterprise-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstHive/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `resources` in StarburstHive/v1alpha1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `deploymentAnnotations` in StarburstHive/v1alpha1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstHive/v1alpha1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in StarburstHive/v1alpha1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstHive/v1alpha1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `objectStorage` in StarburstHive/v1alpha1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `podAnnotations` in StarburstHive/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `extraSecret` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `initFile` in StarburstPresto/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade C
    (400)
    snyk-operator-marketplace-rhmp -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `readinessProbe` in StarburstPresto/v1alpha1
    • - -
      -

      For snyk-operator-marketplace.v1.41.0:

      +

    • "WARNING" Add CRD validation for spec field `securityContext` in StarburstPresto/v1alpha1
    • -
    • "ERROR" pvc does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `cache` in StarburstPresto/v1alpha1
    • -
    • "ERROR" snykmonitors.charts.snyk.io does not have a status descriptor
    • +
    • "WARNING" Add CRD validation for spec field `catalogs` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `coordinator` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for pvc
    • +
    • "WARNING" Add CRD validation for spec field `extraArguments` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `worker` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `starburst-charts-common` in StarburstPresto/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `userDatabase` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image` in StarburstPresto/v1alpha1
    • -
      -

      For snyk-operator-marketplace.v1.41.0:

      +

    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `internal` in StarburstPresto/v1alpha1
    • -
    • "WARNING" (snyk-operator-marketplace.v1.41.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `sharedSecret` in StarburstPresto/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • +
    • "WARNING" Add CRD validation for spec field `usageMetrics` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `additionalVolumes` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `environment` in StarburstPresto/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade C
    (400)
    ako-operator-rhmp -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `registryCredentials` in StarburstPresto/v1alpha1
    • - -
      -

      For ako-operator.v1.4.2:

      +

    • "WARNING" Add CRD validation for spec field `spilling` in StarburstPresto/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `prometheus` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=AviInfraSetting: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `query` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HostRule: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `expose` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Warning: Value ako.vmware.com/v1alpha1, Kind=HTTPRule: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `externalSecrets` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=GatewayClass: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `initImage` in StarburstPresto/v1alpha1
    • -
    • "WARNING" Warning: Value networking.x-k8s.io/v1alpha1, Kind=Gateway: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `livenessProbe` in StarburstPresto/v1alpha1
    • @@ -10183,41 +10915,29 @@
      Grade
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - - +Info -
    -
      - - -
      -

      For ako-operator.v1.4.2:

      - -

    • "ERROR" (ako-operator.v1.4.2) csv.Spec.Maintainers email https://github.com/vmware/load-balancer-and-ingress-services-for-kubernetes is invalid: mail: missing '@' or angle-addr
    • - - -
    • "WARNING" (ako-operator.v1.4.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • + } + + + +Info +
      +
        -
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
        +

        For starburst-presto-helm-operator.v350.1.1-ubi:

        -

      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" (starburst-presto-helm-operator.v350.1.1-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • @@ -10227,76 +10947,120 @@
        Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    anzo-operator-rhmpinsightedge-enterprise-operator2-rhmp -

    COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    USED

    NOT USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For insightedge-enterprise-operator.v15.0.1:

      + +

    • "ERROR" zeppelin does not have a spec descriptor
    • + +
    • "ERROR" manager does not have a spec descriptor
    • + +
    • "ERROR" pu does not have a spec descriptor
    • + +
    • "ERROR" insightedges.insightedge.gigaspaces.com does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for zeppelin
    • + +
    • "WARNING" Add a spec descriptor for manager
    • + +
    • "WARNING" Add a spec descriptor for pu
    • + +
    • "WARNING" Add CRD validation for Insightedge/v1alpha1
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For anzo-operator.v2.0.101:

      +

      For insightedge-enterprise-operator.v15.0.1:

      -

    • "WARNING" (anzo-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (insightedge-enterprise-operator.v15.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -10306,106 +11070,67 @@
      Grade

    NOT USED

    Grade A
    (900)
    Grade D
    (100)
    crunchy-postgres-operator-rhmpsnyk-operator-marketplace-rhmp -

    COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • v5
    • - -
    -
    -

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For postgresoperator.v4.6.2:

      - -

    • "ERROR" ReplicaStorage does not have a spec descriptor
    • - -
    • "ERROR" podAntiAffinity does not have a spec descriptor
    • - -
    • "ERROR" namespace does not have a spec descriptor
    • - -
    • "ERROR" BackrestStorage does not have a spec descriptor
    • - -
    • "ERROR" user does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `namespace` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `ReplicaStorage` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `podAntiAffinity` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `BackrestStorage` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `user` in Pgcluster/v1
    • - -
    • "WARNING" Add a spec descriptor for ReplicaStorage
    • - -
    • "WARNING" Add a spec descriptor for podAntiAffinity
    • - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for BackrestStorage
    • +

      For snyk-operator-marketplace.v1.41.0:

      -

    • "WARNING" Add a spec descriptor for user
    • +
    • "ERROR" pvc does not have a spec descriptor
    • +
    • "ERROR" snykmonitors.charts.snyk.io does not have a status descriptor
    • -
      -

      For postgresoperator.v5.0.2:

      +

    • "WARNING" Add a spec descriptor for pvc
    • @@ -10416,30 +11141,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For postgresoperator.v4.6.2:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +

      For snyk-operator-marketplace.v1.41.0:

      -
      -

      For postgresoperator.v5.0.2:

      +

    • "WARNING" (snyk-operator-marketplace.v1.41.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"]),
    • @@ -10449,73 +11171,81 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (300)
    kubeturbo-certified-rhmpcan-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For kubeturbo-operator.v8.3.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • +

      For can-operator.v0.0.6:

      -

    • "ERROR" serverMeta does not have a spec descriptor
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "ERROR" targetConfig does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" cans.can.avanseus.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for serverMeta
    • +
    • "WARNING" Add a spec descriptor for size
    • -
    • "WARNING" Add a spec descriptor for targetConfig
    • +
    • "WARNING" Add CRD validation for spec field `size` in CAN/v1alpha1
    • @@ -10526,27 +11256,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For kubeturbo-operator.v8.3.1:

      +

      For can-operator.v0.0.6:

      -

    • "WARNING" (kubeturbo-operator.v8.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (can-operator.v0.0.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["cans.can.avanseus.com"]),ClusterRole: (["can-operator-metrics-reader"]),
    • @@ -10556,22 +11286,22 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    model-builder-for-vision-certified-rhmpcass-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -10580,59 +11310,39 @@
    Grade

    NOT USED

    USED

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-modelbuilder-for-vision.v1.0.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" metadata_storage does not have a spec descriptor
    • - -
    • "ERROR" photo_storage does not have a spec descriptor
    • - -
    • "ERROR" in_memory_storage does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" backup_storage does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for metadata_storage
    • - -
    • "WARNING" Add a spec descriptor for photo_storage
    • - -
    • "WARNING" Add a spec descriptor for in_memory_storage
    • +

      For cass-operator.v1.5.0:

      -

    • "WARNING" Add a spec descriptor for license
    • -
    • "WARNING" Add a spec descriptor for backup_storage
    • +
    • "WARNING" Add CRD validation for spec field `config` in CassandraDatacenter/v1beta1
    • @@ -10643,27 +11353,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ibm-modelbuilder-for-vision.v1.0.0:

      - +

      For cass-operator.v1.5.0:

      -

    • "WARNING" (ibm-modelbuilder-for-vision.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -10673,28 +11381,28 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (300)
    seldon-operator-certified-rhmpk10-kasten-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -10707,11 +11415,11 @@
      Grade

    NOT USED

    @@ -10719,126 +11427,306 @@
    Grade

    USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    -
      + +Info +
      +
        + + +
        +

        For k10-helm-operator.2.5.18:

        + +

      • "ERROR" scc does not have a spec descriptor
      • + +
      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for scc
      • + +
      • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
      • + + +
        +

        For k10-kasten-operator.4.0.6000:

        + +

      • "ERROR" Owned CRDs do not have resources specified
      • + +
      • "ERROR" cluster does not have a spec descriptor
      • + +
      • "ERROR" service does not have a spec descriptor
      • + +
      • "ERROR" ambassadorImage does not have a spec descriptor
      • + +
      • "ERROR" cacertconfigmap does not have a spec descriptor
      • + +
      • "ERROR" kanister does not have a spec descriptor
      • + +
      • "ERROR" networkPolicy does not have a spec descriptor
      • + +
      • "ERROR" prometheus does not have a spec descriptor
      • + +
      • "ERROR" services does not have a spec descriptor
      • + +
      • "ERROR" global does not have a spec descriptor
      • + +
      • "ERROR" image does not have a spec descriptor
      • + +
      • "ERROR" logLevel does not have a spec descriptor
      • + +
      • "ERROR" resources does not have a spec descriptor
      • + +
      • "ERROR" serviceAccount does not have a spec descriptor
      • + +
      • "ERROR" jaeger does not have a spec descriptor
      • + +
      • "ERROR" license does not have a spec descriptor
      • + +
      • "ERROR" externalGateway does not have a spec descriptor
      • + +
      • "ERROR" genericVolumeSnapshot does not have a spec descriptor
      • + +
      • "ERROR" injectKanisterSidecar does not have a spec descriptor
      • + +
      • "ERROR" limiter does not have a spec descriptor
      • + +
      • "ERROR" apiservices does not have a spec descriptor
      • + +
      • "ERROR" clusterName does not have a spec descriptor
      • + +
      • "ERROR" kanisterPodCustomAnnotations does not have a spec descriptor
      • + +
      • "ERROR" metering does not have a spec descriptor
      • + +
      • "ERROR" secrets does not have a spec descriptor
      • + +
      • "ERROR" apigateway does not have a spec descriptor
      • + +
      • "ERROR" gateway does not have a spec descriptor
      • + +
      • "ERROR" executorReplicas does not have a spec descriptor
      • + +
      • "ERROR" kanisterPodCustomLabels does not have a spec descriptor
      • + +
      • "ERROR" rbac does not have a spec descriptor
      • + +
      • "ERROR" route does not have a spec descriptor
      • + +
      • "ERROR" scc does not have a spec descriptor
      • + +
      • "ERROR" toolsImage does not have a spec descriptor
      • + +
      • "ERROR" auth does not have a spec descriptor
      • + +
      • "ERROR" dexImage does not have a spec descriptor
      • + +
      • "ERROR" kanisterToolsImage does not have a spec descriptor
      • + +
      • "ERROR" eula does not have a spec descriptor
      • + +
      • "ERROR" ingress does not have a spec descriptor
      • + +
      • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
      • + + +
      • "WARNING" Add a spec descriptor for cluster
      • + +
      • "WARNING" Add a spec descriptor for service
      • + +
      • "WARNING" Add a spec descriptor for ambassadorImage
      • + +
      • "WARNING" Add a spec descriptor for cacertconfigmap
      • + +
      • "WARNING" Add a spec descriptor for kanister
      • + +
      • "WARNING" Add a spec descriptor for networkPolicy
      • + +
      • "WARNING" Add a spec descriptor for prometheus
      • + +
      • "WARNING" Add a spec descriptor for services
      • + +
      • "WARNING" Add a spec descriptor for global
      • + +
      • "WARNING" Add a spec descriptor for image
      • + +
      • "WARNING" Add a spec descriptor for logLevel
      • + +
      • "WARNING" Add a spec descriptor for resources
      • + +
      • "WARNING" Add a spec descriptor for serviceAccount
      • + +
      • "WARNING" Add a spec descriptor for jaeger
      • + +
      • "WARNING" Add a spec descriptor for license
      • + +
      • "WARNING" Add a spec descriptor for externalGateway
      • + +
      • "WARNING" Add a spec descriptor for genericVolumeSnapshot
      • + +
      • "WARNING" Add a spec descriptor for injectKanisterSidecar
      • + +
      • "WARNING" Add a spec descriptor for limiter
      • + +
      • "WARNING" Add a spec descriptor for apiservices
      • + +
      • "WARNING" Add a spec descriptor for clusterName
      • + +
      • "WARNING" Add a spec descriptor for kanisterPodCustomAnnotations
      • + +
      • "WARNING" Add a spec descriptor for metering
      • + +
      • "WARNING" Add a spec descriptor for secrets
      • + +
      • "WARNING" Add a spec descriptor for apigateway
      • + +
      • "WARNING" Add a spec descriptor for gateway
      • + +
      • "WARNING" Add a spec descriptor for executorReplicas
      • + +
      • "WARNING" Add a spec descriptor for kanisterPodCustomLabels
      • + +
      • "WARNING" Add a spec descriptor for rbac
      • + +
      • "WARNING" Add a spec descriptor for route
      • + +
      • "WARNING" Add a spec descriptor for scc
      • +
      • "WARNING" Add a spec descriptor for toolsImage
      • -
        -

        For seldon-operator.v1.6.0:

        +

      • "WARNING" Add a spec descriptor for auth
      • +
      • "WARNING" Add a spec descriptor for dexImage
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" Add a spec descriptor for kanisterToolsImage
      • +
      • "WARNING" Add a spec descriptor for eula
      • -
        -

        For seldon-operator.v1.2.2:

        +

      • "WARNING" Add a spec descriptor for ingress
      • +
      • "WARNING" Add CRD validation for spec field `kanisterPodCustomLabels` in K10/v1alpha1
      • -
      • "WARNING" this bundle is using APIs which were deprecated 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"])
      • +
      • "WARNING" Add CRD validation for spec field `metering` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `genericVolumeSnapshot` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `kanister` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `kanisterPodCustomAnnotations` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `toolsImage` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `global` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `executorReplicas` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `license` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `limiter` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `rbac` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `resources` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `service` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `eula` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `kanisterToolsImage` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `networkPolicy` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `clusterName` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `cacertconfigmap` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `dexImage` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `image` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `prometheus` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `route` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `secrets` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `ambassadorImage` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `apiservices` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `auth` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `jaeger` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `serviceAccount` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `apigateway` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `externalGateway` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `gateway` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `ingress` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `injectKanisterSidecar` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `logLevel` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `services` in K10/v1alpha1
      • + +
      • "WARNING" Add CRD validation for spec field `cluster` in K10/v1alpha1
      -

    NOT USED

    Grade C
    (500)
    anzounstructured-operator-rhmp -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    PASS

    - -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For anzounstructured-operator.v2.0.101:

      +

      For k10-helm-operator.2.5.18:

      -

    • "WARNING" (anzounstructured-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (k10-helm-operator.2.5.18) csv.metadata.Name k10-helm-operator.2.5.18 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For k10-kasten-operator.4.0.6000:

      + + +

    • "WARNING" (k10-kasten-operator.4.0.6000) csv.metadata.Name k10-kasten-operator.4.0.6000 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -10848,28 +11736,28 @@
      Grade

    NOT USED

    Grade A
    (900)
    Grade D
    (200)
    atomicorp-helm-operator-certified-rhmpmf-cics-tg-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -10882,69 +11770,45 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For atomicorp-helm-operator.v0.0.1:

      - -

    • "ERROR" atomicorps.atomicorp.com does not have a status descriptor
    • - -
    • "ERROR" routes does not have a spec descriptor
    • - -
    • "ERROR" service does not have a spec descriptor
    • +

      For mf-cics-tg-operator.v0.0.1:

    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for routes
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for service
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add CRD validation for spec field `image` in Atomicorp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in Atomicorp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in Atomicorp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `routes` in Atomicorp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `service` in Atomicorp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-tg/v1alpha1
    • @@ -10955,27 +11819,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For atomicorp-helm-operator.v0.0.1:

      +

      For mf-cics-tg-operator.v0.0.1:

      -

    • "WARNING" (atomicorp-helm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (mf-cics-tg-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -10989,18 +11853,18 @@
      Grade
    cortex-healthcare-hub-operator-rhmpmodel-builder-for-vision-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -11009,53 +11873,59 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For cortex-healthcare-hub-operator.v0.0.25:

      + +
      +

      For ibm-modelbuilder-for-vision.v1.0.0:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" metadata_storage does not have a spec descriptor
    • -
    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • +
    • "ERROR" photo_storage does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" in_memory_storage does not have a spec descriptor
    • -
    • "ERROR" hub does not have a spec descriptor
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "ERROR" hub-cronjob does not have a spec descriptor
    • +
    • "ERROR" backup_storage does not have a spec descriptor
    • -
    • "ERROR" mongo-uri does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for metadata_storage
    • -
    • "WARNING" Add a spec descriptor for hub
    • +
    • "WARNING" Add a spec descriptor for photo_storage
    • -
    • "WARNING" Add a spec descriptor for hub-cronjob
    • +
    • "WARNING" Add a spec descriptor for in_memory_storage
    • -
    • "WARNING" Add a spec descriptor for mongo-uri
    • +
    • "WARNING" Add a spec descriptor for license
    • + +
    • "WARNING" Add a spec descriptor for backup_storage
    • @@ -11066,27 +11936,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cortex-healthcare-hub-operator.v0.0.25:

      +

      For ibm-modelbuilder-for-vision.v1.0.0:

      -

    • "WARNING" (cortex-healthcare-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (ibm-modelbuilder-for-vision.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -11102,7 +11972,7 @@
      Grade
    neuvector-certified-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    @@ -11267,22 +12137,22 @@
    Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    cortex-hub-operator-rhmprobin-storage-enterprise-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -11291,11 +12161,11 @@
    Grade

    NOT USED

    @@ -11303,72 +12173,40 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For cortex-hub-operator.v0.0.25:

      - -

    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • - -
    • "ERROR" hub does not have a spec descriptor
    • - -
    • "ERROR" hub-cronjob does not have a spec descriptor
    • - -
    • "ERROR" mongo-uri does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for hub
    • - -
    • "WARNING" Add a spec descriptor for hub-cronjob
    • - -
    • "WARNING" Add a spec descriptor for mongo-uri
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cortex-hub-operator.v0.0.25:

      - +

      For robin-storage-enterprise.v5.3.4-156-3:

      -

    • "WARNING" (cortex-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -11378,22 +12216,22 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (400)
    percona-server-mongodb-operator-certified-rhmprobin-storage-express-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -11402,11 +12240,11 @@
    Grade

    NOT USED

    @@ -11414,132 +12252,40 @@
    Grade

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For percona-server-mongodb-operator.v1.8.0:

      - -

    • "ERROR" updateStrategy does not have a spec descriptor
    • - -
    • "ERROR" pmm does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • - -
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • - -
    • "ERROR" upgradeOptions does not have a spec descriptor
    • - -
    • "ERROR" secrets does not have a spec descriptor
    • - -
    • "ERROR" replsets does not have a spec descriptor
    • - -
    • "ERROR" sharding does not have a spec descriptor
    • - -
    • "ERROR" mongod does not have a spec descriptor
    • - -
    • "ERROR" crVersion does not have a spec descriptor
    • - -
    • "ERROR" backup does not have a spec descriptor
    • - -
    • "ERROR" psmdbCluster does not have a spec descriptor
    • - -
    • "ERROR" storageName does not have a spec descriptor
    • - -
    • "ERROR" backupName does not have a spec descriptor
    • - -
    • "ERROR" clusterName does not have a spec descriptor
    • - -
    • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
    • - - -
    • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-8-0
    • - -
    • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
    • - -
    • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
    • - -
    • "WARNING" Add a spec descriptor for updateStrategy
    • - -
    • "WARNING" Add a spec descriptor for pmm
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • - -
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • - -
    • "WARNING" Add a spec descriptor for upgradeOptions
    • - -
    • "WARNING" Add a spec descriptor for secrets
    • - -
    • "WARNING" Add a spec descriptor for replsets
    • - -
    • "WARNING" Add a spec descriptor for sharding
    • - -
    • "WARNING" Add a spec descriptor for mongod
    • - -
    • "WARNING" Add a spec descriptor for crVersion
    • - -
    • "WARNING" Add a spec descriptor for backup
    • - -
    • "WARNING" Add a spec descriptor for psmdbCluster
    • - -
    • "WARNING" Add a spec descriptor for storageName
    • - -
    • "WARNING" Add a spec descriptor for backupName
    • - -
    • "WARNING" Add a spec descriptor for clusterName
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For percona-server-mongodb-operator.v1.8.0:

      - +

      For robin-storage-express.v5.3.4-156-3:

      -

    • "WARNING" (percona-server-mongodb-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -11549,112 +12295,76 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (400)
    ivory-server-app-rhmpanzounstructured-operator-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For ivory-server-operator.v1.0.0:

      - -

    • "ERROR" ivoryservers.ivoryserver.gtsoftware.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" size does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for IvoryServer/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for size
    • - - - -
    -
    -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ivory-server-operator.v1.0.0:

      - +

      For anzounstructured-operator.v2.0.101:

      -

    • "WARNING" (ivory-server-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (anzounstructured-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -11664,31 +12374,33 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade A
    (900)
    cpx-cic-operator-rhmpaqua-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      +
    • latest
    • +
    • alpha
    @@ -11698,11 +12410,11 @@
    Grade

    NOT USED

    @@ -11712,592 +12424,480 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cpx-cic-operator.v130.47.103:

      +

      For aqua-operator.v1.0.4:

      -

    • "ERROR" citrixcpxingresscontrollers.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "ERROR" cpx does not have a spec descriptor
    • +
    • "ERROR" database does not have a spec descriptor
    • -
    • "ERROR" ingressClass does not have a spec descriptor
    • +
    • "ERROR" gateway does not have a spec descriptor
    • -
    • "ERROR" license does not have a spec descriptor
    • +
    • "ERROR" route does not have a spec descriptor
    • -
    • "ERROR" lsIP does not have a spec descriptor
    • +
    • "ERROR" adminPassword does not have a spec descriptor
    • -
    • "ERROR" lsPort does not have a spec descriptor
    • +
    • "ERROR" licenseToken does not have a spec descriptor
    • -
    • "ERROR" openshift does not have a spec descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "ERROR" platform does not have a spec descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "ERROR" cic does not have a spec descriptor
    • +
    • "ERROR" enforcer does not have a spec descriptor
    • -
    • "ERROR" defaultSSLCert does not have a spec descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "ERROR" exporter does not have a spec descriptor
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    • "ERROR" nsNamespace does not have a spec descriptor
    • +
    • "ERROR" diskSize does not have a spec descriptor
    • + +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • + +
    • "ERROR" gateway does not have a spec descriptor
    • + +
    • "ERROR" token does not have a spec descriptor
    • + +
    • "ERROR" infra does not have a spec descriptor
    • + +
    • "ERROR" infra does not have a spec descriptor
    • + +
    • "ERROR" common does not have a spec descriptor
    • + +
    • "ERROR" externalDb does not have a spec descriptor
    • + +
    • "ERROR" deploy does not have a spec descriptor
    • + +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • + +
    • "ERROR" infra does not have a spec descriptor
    • + +
    • "ERROR" deploy does not have a spec descriptor
    • + +
    • "ERROR" login does not have a spec descriptor
    • + +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • + +
    • "ERROR" infra does not have a spec descriptor
    • + +
    • "ERROR" common does not have a spec descriptor
    • + +
    • "ERROR" externalDb does not have a spec descriptor
    • + +
    • "ERROR" deploy does not have a spec descriptor
    • + +
    • "ERROR" adminPassword does not have a spec descriptor
    • + +
    • "ERROR" licenseToken does not have a spec descriptor
    • + +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for cpx
    • +
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for ingressClass
    • +
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for license
    • +
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for lsIP
    • +
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for lsPort
    • +
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add a spec descriptor for platform
    • +
    • "WARNING" Add a spec descriptor for infra
    • + +
    • "WARNING" Add a spec descriptor for database
    • + +
    • "WARNING" Add a spec descriptor for gateway
    • + +
    • "WARNING" Add a spec descriptor for route
    • + +
    • "WARNING" Add a spec descriptor for adminPassword
    • + +
    • "WARNING" Add a spec descriptor for licenseToken
    • + +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for enforcer
    • + +
    • "WARNING" Add a spec descriptor for infra
    • + +
    • "WARNING" Add a spec descriptor for deploy
    • + +
    • "WARNING" Add a spec descriptor for diskSize
    • + +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • + +
    • "WARNING" Add a spec descriptor for gateway
    • + +
    • "WARNING" Add a spec descriptor for token
    • + +
    • "WARNING" Add a spec descriptor for infra
    • + +
    • "WARNING" Add a spec descriptor for infra
    • + +
    • "WARNING" Add a spec descriptor for common
    • + +
    • "WARNING" Add a spec descriptor for externalDb
    • + +
    • "WARNING" Add a spec descriptor for deploy
    • + +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • + +
    • "WARNING" Add a spec descriptor for infra
    • + +
    • "WARNING" Add a spec descriptor for deploy
    • + +
    • "WARNING" Add a spec descriptor for login
    • + +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • + +
    • "WARNING" Add a spec descriptor for infra
    • + +
    • "WARNING" Add a spec descriptor for common
    • + +
    • "WARNING" Add a spec descriptor for externalDb
    • + +
    • "WARNING" Add a spec descriptor for deploy
    • + +
    • "WARNING" Add a spec descriptor for adminPassword
    • + +
    • "WARNING" Add a spec descriptor for licenseToken
    • + +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • + +
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for cic
    • +
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for defaultSSLCert
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for exporter
    • +
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for nsNamespace
    • +
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `defaultSSLCert` in CitrixCPXIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `license` in CitrixCPXIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `lsIP` in CitrixCPXIngressController/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `lsPort` in CitrixCPXIngressController/v1alpha1
    • +
      +

      For aqua-operator.v5.0.0:

      -

    • "WARNING" Add CRD validation for spec field `nsNamespace` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" enforcer does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `platform` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" licenseToken does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `cic` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `exporter` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ingressClass` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" database does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `openshift` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" gateway does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `cpx` in CitrixCPXIngressController/v1alpha1
    • +
    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" route does not have a spec descriptor
    • +
    • "ERROR" adminPassword does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
      -

      For cpx-cic-operator.v130.47.103:

      +

    • "ERROR" diskSize does not have a spec descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" (cpx-cic-operator.v130.47.103) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["citrixcpxingresscontrollers.charts.helm.k8s.io"])
    • +
    • "ERROR" gateway does not have a spec descriptor
    • +
    • "ERROR" token does not have a spec descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    hazelcast-jet-enterprise-operator-rhmp -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" common does not have a spec descriptor
    • - -
      -

      For hazelcast-jet-enterprise-operator.v0.2.0:

      +

    • "ERROR" externalDb does not have a spec descriptor
    • -
    • "ERROR" hazelcastjetenterprises.hazelcast.com does not have a status descriptor
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    • "ERROR" cluster does not have a spec descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "ERROR" jet does not have a spec descriptor
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" deploy does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" login does not have a spec descriptor
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cluster
    • +
    • "ERROR" licenseToken does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for jet
    • +
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "ERROR" infra does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `jet` in HazelcastJetEnterprise/v1alpha1
    • +
    • "ERROR" common does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJetEnterprise/v1alpha1
    • +
    • "ERROR" externalDb does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJetEnterprise/v1alpha1
    • +
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" adminPassword does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • -
      -

      For hazelcast-jet-enterprise-operator.v0.2.0:

      +

    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" (hazelcast-jet-enterprise-operator.v0.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" aquaservers.operator.aquasec.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for enforcer
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    node-red-operator-rhm-certified-rhmp -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for licenseToken
    • - -
      -

      For node-red-operator.v1.0.0:

      +

    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "ERROR" noderedbackups.nodered.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "ERROR" noderedrestores.nodered.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for database
    • -
    • "ERROR" persistentvolume does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for gateway
    • -
    • "ERROR" secretkey does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for server
    • -
    • "ERROR" size does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for route
    • -
    • "ERROR" adminpassword does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for adminPassword
    • -
    • "ERROR" backup does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "ERROR" ibm_s3 does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "ERROR" ibm_s3 does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for diskSize
    • -
    • "ERROR" restore_file_name does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add CRD validation for spec field `secretkey` in NodeRed/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for gateway
    • -
    • "WARNING" Add CRD validation for spec field `size` in NodeRed/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for token
    • -
    • "WARNING" Add CRD validation for spec field `adminpassword` in NodeRed/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add CRD validation for spec field `persistentvolume` in NodeRed/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for common
    • -
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedBackup/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for externalDb
    • -
    • "WARNING" Add CRD validation for spec field `backup` in NodeRedBackup/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "WARNING" Add CRD validation for spec field `restore_file_name` in NodeRedRestore/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" Add CRD validation for spec field `ibm_s3` in NodeRedRestore/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add a spec descriptor for persistentvolume
    • +
    • "WARNING" Add a spec descriptor for deploy
    • -
    • "WARNING" Add a spec descriptor for secretkey
    • +
    • "WARNING" Add a spec descriptor for login
    • -
    • "WARNING" Add a spec descriptor for size
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" Add a spec descriptor for adminpassword
    • +
    • "WARNING" Add a spec descriptor for licenseToken
    • -
    • "WARNING" Add a spec descriptor for backup
    • +
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • -
    • "WARNING" Add a spec descriptor for ibm_s3
    • +
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add a spec descriptor for ibm_s3
    • +
    • "WARNING" Add a spec descriptor for common
    • -
    • "WARNING" Add a spec descriptor for restore_file_name
    • +
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add a spec descriptor for adminPassword
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • -
      -

      For node-red-operator.v1.0.0:

      +

    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • -
    • "WARNING" (node-red-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["noderedbackups.nodered.com" "noderedrestores.nodered.com" "nodereds.nodered.com"])
    • +
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    oneagent-certified-rhmp -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • - -
      -

      For dynatrace-monitoring.v0.10.1:

      +

    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • -
      -

      For dynatrace-monitoring.v0.10.1:

      +

    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade D
    (300)
    vfunction-server-operator-rhmp -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - +
  • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
  • + +
  • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
  • + + + + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For vfunction-server-operator.v2.2.469:

      +

      For aqua-operator.v1.0.4:

      -

    • "WARNING" (vfunction-server-operator.v2.2.469) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (aqua-operator.v1.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For aqua-operator.v5.0.0:

      + + +

    • "WARNING" (aqua-operator.v5.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12307,28 +12907,28 @@
      Grade

    NOT USED

    Grade B
    (800)
    Grade D
    (100)
    citrix-cpx-with-ingress-controller-operator-rhmphazelcast-jet-enterprise-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -12341,175 +12941,59 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-cpx-with-ingress-controller-operator.v1.10.2:

      - -

    • "ERROR" citrixcpxwithingresscontrollers.citrix.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" coeConfig does not have a spec descriptor
    • - -
    • "ERROR" mgmtHttpsPort does not have a spec descriptor
    • - -
    • "ERROR" serviceAccount does not have a spec descriptor
    • - -
    • "ERROR" exporter does not have a spec descriptor
    • - -
    • "ERROR" mgmtHttpPort does not have a spec descriptor
    • - -
    • "ERROR" namespaceLabels does not have a spec descriptor
    • - -
    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • - -
    • "ERROR" nsGateway does not have a spec descriptor
    • - -
    • "ERROR" cic does not have a spec descriptor
    • - -
    • "ERROR" nsProtocol does not have a spec descriptor
    • - -
    • "ERROR" entityPrefix does not have a spec descriptor
    • - -
    • "ERROR" serviceType does not have a spec descriptor
    • - -
    • "ERROR" crds does not have a spec descriptor
    • - -
    • "ERROR" cpxBgpRouter does not have a spec descriptor
    • - -
    • "ERROR" bgpSettings does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" aws does not have a spec descriptor
    • - -
    • "ERROR" kubernetesURL does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • - -
    • "ERROR" routeLabels does not have a spec descriptor
    • - -
    • "ERROR" ingressIP does not have a spec descriptor
    • - -
    • "ERROR" serviceAnnotations does not have a spec descriptor
    • - -
    • "ERROR" ingressClass does not have a spec descriptor
    • - -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" ADMSettings does not have a spec descriptor
    • - -
    • "ERROR" nsIP does not have a spec descriptor
    • - -
    • "ERROR" cicSettings does not have a spec descriptor
    • - -
    • "ERROR" pullPolicy does not have a spec descriptor
    • - -
    • "ERROR" ipam does not have a spec descriptor
    • - -
    • "ERROR" logProxy does not have a spec descriptor
    • - -
    • "ERROR" sslCertManagedByAWS does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for coeConfig
    • - -
    • "WARNING" Add a spec descriptor for mgmtHttpsPort
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for exporter
    • - -
    • "WARNING" Add a spec descriptor for mgmtHttpPort
    • - -
    • "WARNING" Add a spec descriptor for namespaceLabels
    • - -
    • "WARNING" Add a spec descriptor for defaultSSLCertSecret
    • - -
    • "WARNING" Add a spec descriptor for nsGateway
    • - -
    • "WARNING" Add a spec descriptor for cic
    • - -
    • "WARNING" Add a spec descriptor for nsProtocol
    • - -
    • "WARNING" Add a spec descriptor for entityPrefix
    • - -
    • "WARNING" Add a spec descriptor for serviceType
    • - -
    • "WARNING" Add a spec descriptor for crds
    • - -
    • "WARNING" Add a spec descriptor for cpxBgpRouter
    • - -
    • "WARNING" Add a spec descriptor for bgpSettings
    • - -
    • "WARNING" Add a spec descriptor for license
    • - -
    • "WARNING" Add a spec descriptor for aws
    • - -
    • "WARNING" Add a spec descriptor for kubernetesURL
    • - -
    • "WARNING" Add a spec descriptor for openshift
    • - -
    • "WARNING" Add a spec descriptor for routeLabels
    • - -
    • "WARNING" Add a spec descriptor for ingressIP
    • - -
    • "WARNING" Add a spec descriptor for serviceAnnotations
    • +

      For hazelcast-jet-enterprise-operator.v0.2.0:

      -

    • "WARNING" Add a spec descriptor for ingressClass
    • +
    • "ERROR" hazelcastjetenterprises.hazelcast.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • +
    • "ERROR" cluster does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" jet does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ADMSettings
    • +
    • "ERROR" securityContext does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nsIP
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for cicSettings
    • -
    • "WARNING" Add a spec descriptor for pullPolicy
    • +
    • "WARNING" Add a spec descriptor for cluster
    • -
    • "WARNING" Add a spec descriptor for ipam
    • +
    • "WARNING" Add a spec descriptor for jet
    • -
    • "WARNING" Add a spec descriptor for logProxy
    • +
    • "WARNING" Add a spec descriptor for securityContext
    • -
    • "WARNING" Add a spec descriptor for sslCertManagedByAWS
    • +
    • "WARNING" Add CRD validation for spec field `jet` in HazelcastJetEnterprise/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add CRD validation for spec field `securityContext` in HazelcastJetEnterprise/v1alpha1
    • -
    • "WARNING" Add CRD validation for CitrixCpxWithIngressController/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `cluster` in HazelcastJetEnterprise/v1alpha1
    • @@ -12520,27 +13004,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For citrix-cpx-with-ingress-controller-operator.v1.10.2:

      +

      For hazelcast-jet-enterprise-operator.v0.2.0:

      -

    • "WARNING" (citrix-cpx-with-ingress-controller-operator.v1.10.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (hazelcast-jet-enterprise-operator.v0.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were 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: (["citrix-cpx-with-ingress-controller-operator-metrics-reader"]),CRD: (["citrixcpxwithingresscontrollers.citrix.com"]),
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12550,28 +13034,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    mf-cics-ts-operator-rhmpportshift-controller-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -12584,45 +13068,49 @@
      Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For mf-cics-ts-operator.v0.0.1:

      +

      For portshift-operator.v0.1.6:

      + +

    • "ERROR" managementUrl does not have a spec descriptor
    • + +
    • "ERROR" portshiftClusterId does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" portshiftinstallers.portshift.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-ts/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for managementUrl
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add a spec descriptor for portshiftClusterId
    • @@ -12633,27 +13121,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For mf-cics-ts-operator.v0.0.1:

      +

      For portshift-operator.v0.1.6:

      -

    • "WARNING" (mf-cics-ts-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (portshift-operator.v0.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12663,28 +13151,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    linstor-operator-rhmprapidbiz-operator-certified-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -12697,11 +13185,11 @@
      Grade

    NOT USED

    @@ -12711,11 +13199,11 @@
    Grade

    PASS

    @@ -12724,32 +13212,25 @@
    Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For linstor-operator.v1.5.1:

      - - -

    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - - -
      -

      For linstor-operator.v1.5.1:

      +

      For rapidbiz-operator.v0.0.1:

      -

    • "WARNING" (linstor-operator.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12759,32 +13240,32 @@
      Grade

    NOT USED

    Grade B
    (700)
    Grade D
    (300)
    appranix-cps-rhmpredis-enterprise-operator-cert-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • deprecated
    • +
    • preview
    @@ -12793,60 +13274,57 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For appranix-operator.v2.5.0:

      - -

    • "ERROR" objectStorage does not have a spec descriptor
    • - -
    • "ERROR" backupstoragelocations.aps.appranix.com does not have a status descriptor
    • +

      For redis-enterprise-operator-preview.v6.0.20-4:

      +

    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for objectStorage
    • +
    • "ERROR" persistentSpec does not have a spec descriptor
    • +
    • "ERROR" uiServiceType does not have a spec descriptor
    • -
      -

      For appranix.v2.3.0:

      +

    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • -
    • "ERROR" objectStorage does not have a spec descriptor
    • +
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • -
    • "ERROR" backupstoragelocations.aps.appranix.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" volumesnapshotlocations.aps.appranix.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • -
    • "WARNING" Add CRD validation for BackupStorageLocation/v1
    • +
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add CRD validation for VolumeSnapshotLocation/v1
    • +
    • "WARNING" Add a spec descriptor for uiServiceType
    • -
    • "WARNING" Add a spec descriptor for objectStorage
    • +
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • @@ -12857,36 +13335,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For appranix-operator.v2.5.0:

      - - -

    • "WARNING" (appranix-operator.v2.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For appranix.v2.3.0:

      +

      For redis-enterprise-operator-preview.v6.0.20-4:

      -

    • "WARNING" (appranix.v2.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (redis-enterprise-operator-preview.v6.0.20-4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -12896,32 +13365,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    redis-enterprise-operator-cert-rhmptimemachine-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • preview
    • +
    • alpha
    @@ -12930,11 +13399,11 @@
    Grade

    NOT USED

    @@ -12944,43 +13413,31 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For redis-enterprise-operator-preview.v6.0.20-4:

      - -

    • "ERROR" redisEnterpriseImageSpec does not have a spec descriptor
    • - -
    • "ERROR" persistentSpec does not have a spec descriptor
    • - -
    • "ERROR" uiServiceType does not have a spec descriptor
    • - -
    • "ERROR" redisEnterpriseCluster does not have a spec descriptor
    • - -
    • "ERROR" redisenterprisedatabases.app.redislabs.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • +

      For time-machine-operator4.v0.0.4:

      +

    • "ERROR" timemachines.tm.solution-soft.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • +
    • "ERROR" size does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for persistentSpec
    • -
    • "WARNING" Add a spec descriptor for uiServiceType
    • +
    • "WARNING" Add CRD validation for spec field `size` in TimeMachine/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for redisEnterpriseCluster
    • +
    • "WARNING" Add a spec descriptor for size
    • @@ -12991,27 +13448,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For redis-enterprise-operator-preview.v6.0.20-4:

      +

      For time-machine-operator4.v0.0.4:

      -

    • "WARNING" (redis-enterprise-operator-preview.v6.0.20-4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (time-machine-operator4.v0.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["timemachines.tm.solution-soft.com"])
    • @@ -13021,35 +13478,45 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    robin-storage-trial-rhmpkubemq-operator-marketplace-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -13057,40 +13524,58 @@
    Grade

    NOT USED

    -

    PASS

    +

    ONLY ERRORS

    + +Info +
    +
      + + +
      +

      For kubemq-operator.v1.4.0:

      + +

    • "ERROR" error spec does not exist
    • + + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For robin-storage-trial.v5.3.4-156-3:

      +

      For kubemq-operator.v1.4.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (kubemq-operator.v1.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kubemqclusters.core.k8s.kubemq.io" "kubemqconnectors.core.k8s.kubemq.io" "kubemqdashboards.core.k8s.kubemq.io"])
    • @@ -13100,33 +13585,31 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    aqua-operator-certified-rhmpovms-operator-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • latest
    • -
    • alpha
    @@ -13136,454 +13619,205 @@
    Grade

    NOT USED

    - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For aqua-operator.v1.0.4:

      - -

    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" gateway does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" adminPassword does not have a spec descriptor
    • - -
    • "ERROR" licenseToken does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" enforcer does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" diskSize does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" gateway does not have a spec descriptor
    • - -
    • "ERROR" token does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" common does not have a spec descriptor
    • - -
    • "ERROR" externalDb does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" login does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" common does not have a spec descriptor
    • - -
    • "ERROR" externalDb does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" adminPassword does not have a spec descriptor
    • - -
    • "ERROR" licenseToken does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • - -
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for database
    • - -
    • "WARNING" Add a spec descriptor for gateway
    • - -
    • "WARNING" Add a spec descriptor for route
    • - -
    • "WARNING" Add a spec descriptor for adminPassword
    • - -
    • "WARNING" Add a spec descriptor for licenseToken
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for enforcer
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for diskSize
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for gateway
    • - -
    • "WARNING" Add a spec descriptor for token
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for common
    • - -
    • "WARNING" Add a spec descriptor for externalDb
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for login
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add a spec descriptor for infra
    • - -
    • "WARNING" Add a spec descriptor for common
    • - -
    • "WARNING" Add a spec descriptor for externalDb
    • - -
    • "WARNING" Add a spec descriptor for deploy
    • - -
    • "WARNING" Add a spec descriptor for adminPassword
    • - -
    • "WARNING" Add a spec descriptor for licenseToken
    • - -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • - -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • - + #disco-showovms-operator-rhmp:target { + display: block; + } + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      +
      -

      For aqua-operator.v5.0.0:

      - -

    • "ERROR" enforcer does not have a spec descriptor
    • - -
    • "ERROR" licenseToken does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" gateway does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" adminPassword does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" deploy does not have a spec descriptor
    • - -
    • "ERROR" diskSize does not have a spec descriptor
    • - -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" gateway does not have a spec descriptor
    • - -
    • "ERROR" token does not have a spec descriptor
    • - -
    • "ERROR" infra does not have a spec descriptor
    • - -
    • "ERROR" common does not have a spec descriptor
    • - -
    • "ERROR" externalDb does not have a spec descriptor
    • +

      For openvino-operator.v0.0.1:

      -

    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "ERROR" modelservers.intel.com does not have a status descriptor
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" notebooks.intel.com does not have a status descriptor
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" batch_size does not have a spec descriptor
    • -
    • "ERROR" login does not have a spec descriptor
    • +
    • "ERROR" models_volume_claim does not have a spec descriptor
    • -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" licenseToken does not have a spec descriptor
    • +
    • "ERROR" aws_access_key_id does not have a spec descriptor
    • -
    • "ERROR" runAsNonRoot does not have a spec descriptor
    • +
    • "ERROR" grpc_port does not have a spec descriptor
    • -
    • "ERROR" infra does not have a spec descriptor
    • +
    • "ERROR" model_path does not have a spec descriptor
    • -
    • "ERROR" common does not have a spec descriptor
    • +
    • "ERROR" models_host_path does not have a spec descriptor
    • -
    • "ERROR" externalDb does not have a spec descriptor
    • +
    • "ERROR" service_type does not have a spec descriptor
    • -
    • "ERROR" deploy does not have a spec descriptor
    • +
    • "ERROR" gcp_creds_secret_name does not have a spec descriptor
    • -
    • "ERROR" adminPassword does not have a spec descriptor
    • +
    • "ERROR" plugin_config does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" log_level does not have a spec descriptor
    • -
    • "ERROR" aquacsps.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" model_version_policy does not have a spec descriptor
    • -
    • "ERROR" aquadatabases.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aws_secret_access_key does not have a spec descriptor
    • -
    • "ERROR" aquaenforcers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" rest_port does not have a spec descriptor
    • -
    • "ERROR" aquagateways.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" target_device does not have a spec descriptor
    • -
    • "ERROR" aquascanners.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" annotations does not have a spec descriptor
    • -
    • "ERROR" aquaservers.operator.aquasec.com does not have a status descriptor
    • +
    • "ERROR" aws_region does not have a spec descriptor
    • +
    • "ERROR" file_system_poll_wait_seconds does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for enforcer
    • +
    • "ERROR" image_name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for licenseToken
    • +
    • "ERROR" shape does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "ERROR" s3_compat_api_endpoint does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "ERROR" security_context does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for database
    • +
    • "ERROR" config_configmap_name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for gateway
    • +
    • "ERROR" https_proxy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "ERROR" model_name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for route
    • +
    • "ERROR" nireq does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for adminPassword
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for infra
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add CRD validation for spec field `resources` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for diskSize
    • +
    • "WARNING" Add CRD validation for spec field `rest_port` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add CRD validation for spec field `s3_compat_api_endpoint` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add CRD validation for spec field `https_proxy` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for gateway
    • +
    • "WARNING" Add CRD validation for spec field `log_level` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for token
    • +
    • "WARNING" Add CRD validation for spec field `models_volume_claim` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add CRD validation for spec field `annotations` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "WARNING" Add CRD validation for spec field `config_configmap_name` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "WARNING" Add CRD validation for spec field `model_version_policy` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add CRD validation for spec field `model_path` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add CRD validation for spec field `shape` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add CRD validation for spec field `aws_secret_access_key` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add CRD validation for spec field `models_host_path` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for login
    • +
    • "WARNING" Add CRD validation for spec field `plugin_config` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add CRD validation for spec field `aws_access_key_id` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for licenseToken
    • +
    • "WARNING" Add CRD validation for spec field `batch_size` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for runAsNonRoot
    • +
    • "WARNING" Add CRD validation for spec field `gcp_creds_secret_name` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for infra
    • +
    • "WARNING" Add CRD validation for spec field `nireq` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for common
    • +
    • "WARNING" Add CRD validation for spec field `replicas` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for externalDb
    • +
    • "WARNING" Add CRD validation for spec field `security_context` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for deploy
    • +
    • "WARNING" Add CRD validation for spec field `aws_region` in ModelServer/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for adminPassword
    • +
    • "WARNING" Add CRD validation for spec field `file_system_poll_wait_seconds` in ModelServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `image_name` in ModelServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `database` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `grpc_port` in ModelServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `service_type` in ModelServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `server` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `target_device` in ModelServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `route` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `model_name` in ModelServer/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for batch_size
    • -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for models_volume_claim
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add CRD validation for spec field `enforcer` in AquaCsp/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for aws_access_key_id
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for grpc_port
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for model_path
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for models_host_path
    • -
    • "WARNING" Add CRD validation for spec field `diskSize` in AquaDatabase/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for service_type
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for gcp_creds_secret_name
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for plugin_config
    • -
    • "WARNING" Add CRD validation for spec field `token` in AquaEnforcer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for log_level
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for model_version_policy
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for aws_secret_access_key
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for rest_port
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for target_device
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaGateway/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for annotations
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for aws_region
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for file_system_poll_wait_seconds
    • -
    • "WARNING" Add CRD validation for spec field `login` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image_name
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaScanner/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for shape
    • -
    • "WARNING" Add CRD validation for spec field `common` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for s3_compat_api_endpoint
    • -
    • "WARNING" Add CRD validation for spec field `externalDb` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for security_context
    • -
    • "WARNING" Add CRD validation for spec field `deploy` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for config_configmap_name
    • -
    • "WARNING" Add CRD validation for spec field `adminPassword` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for https_proxy
    • -
    • "WARNING" Add CRD validation for spec field `licenseToken` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for model_name
    • -
    • "WARNING" Add CRD validation for spec field `runAsNonRoot` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nireq
    • -
    • "WARNING" Add CRD validation for spec field `infra` in AquaServer/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for replicas
    • @@ -13594,36 +13828,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For aqua-operator.v1.0.4:

      - - -

    • "WARNING" (aqua-operator.v1.0.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For aqua-operator.v5.0.0:

      - +

      For openvino-operator.v0.0.1:

      -

    • "WARNING" (aqua-operator.v5.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" (openvino-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -13633,32 +13856,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade B
    (600)
    aws-event-sources-operator-certified-rhmprocketchat-operator-certified -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -13667,11 +13890,11 @@
    Grade

    NOT USED

    @@ -13681,116 +13904,185 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For aws-sources-operator.v0.3.0:

      - -

    • "ERROR" awseventsources.sources.triggermesh.com does not have a status descriptor
    • +

      For rocketchat-operator.v0.1.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" fullnameOverride does not have a spec descriptor
    • +
    • "ERROR" mongodbSecretName does not have a spec descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" rocketchatReplicas does not have a spec descriptor
    • -
    • "ERROR" podSecurityContext does not have a spec descriptor
    • +
    • "ERROR" volumeCapacity does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" labels does not have a spec descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • +
    • "ERROR" memoryLimit does not have a spec descriptor
    • -
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "ERROR" mongodbDatabase does not have a spec descriptor
    • -
    • "ERROR" adapters does not have a spec descriptor
    • +
    • "ERROR" mongodbReplicaName does not have a spec descriptor
    • -
    • "ERROR" podAnnotations does not have a spec descriptor
    • +
    • "ERROR" mongodbReplicas does not have a spec descriptor
    • -
    • "ERROR" nameOverride does not have a spec descriptor
    • +
    • "ERROR" rocketchats.open.rocket.chat does not have a status descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `volumeCapacity` in RocketChat/v1alpha1
    • -
    • "ERROR" serviceAccount does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `labels` in RocketChat/v1alpha1
    • -
    • "ERROR" tolerations does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `memoryLimit` in RocketChat/v1alpha1
    • -
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • +
    • "WARNING" Add CRD validation for spec field `mongodbDatabase` in RocketChat/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `mongodbReplicaName` in RocketChat/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for fullnameOverride
    • +
    • "WARNING" Add CRD validation for spec field `mongodbReplicas` in RocketChat/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add CRD validation for spec field `mongodbSecretName` in RocketChat/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for podSecurityContext
    • +
    • "WARNING" Add CRD validation for spec field `rocketchatReplicas` in RocketChat/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add a spec descriptor for mongodbSecretName
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "WARNING" Add a spec descriptor for rocketchatReplicas
    • -
    • "WARNING" Add a spec descriptor for rbac
    • +
    • "WARNING" Add a spec descriptor for volumeCapacity
    • -
    • "WARNING" Add a spec descriptor for adapters
    • +
    • "WARNING" Add a spec descriptor for labels
    • -
    • "WARNING" Add a spec descriptor for podAnnotations
    • +
    • "WARNING" Add a spec descriptor for memoryLimit
    • -
    • "WARNING" Add a spec descriptor for nameOverride
    • +
    • "WARNING" Add a spec descriptor for mongodbDatabase
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add a spec descriptor for mongodbReplicaName
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "WARNING" Add a spec descriptor for mongodbReplicas
    • -
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add a spec descriptor for tolerations
    • -
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add CRD validation for AwsEventSources/v1alpha1
    • + +
      +

      For rocketchat-operator.v0.1.0:

      + + +

    • "WARNING" (rocketchat-operator.v0.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    +

    NOT USED

    Grade D
    (100)
    anzo-operator-rhmp +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    PASS

    + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For aws-sources-operator.v0.3.0:

      - +

      For anzo-operator.v2.0.101:

      -

    • "WARNING" (aws-sources-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (anzo-operator.v2.0.101) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -13800,95 +14092,103 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade A
    (900)
    gpu-operator-certified-rhmpatomicorp-helm-operator-certified-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • v1.8
    • +
    • alpha
    -

    USED

    +

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For gpu-operator-certified.v1.8.0:

      +

      For atomicorp-helm-operator.v0.0.1:

      -

    • "ERROR" validator does not have a spec descriptor
    • +
    • "ERROR" atomicorps.atomicorp.com does not have a status descriptor
    • -
    • "ERROR" migManager does not have a spec descriptor
    • +
    • "ERROR" routes does not have a spec descriptor
    • -
    • "ERROR" nodeStatusExporter does not have a spec descriptor
    • +
    • "ERROR" service does not have a spec descriptor
    • -
    • "ERROR" mig does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" dcgm does not have a spec descriptor
    • +
    • "ERROR" imagePullSecrets does not have a spec descriptor
    • -
    • "ERROR" daemonsets does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for validator
    • +
    • "WARNING" Add a spec descriptor for routes
    • -
    • "WARNING" Add a spec descriptor for migManager
    • +
    • "WARNING" Add a spec descriptor for service
    • -
    • "WARNING" Add a spec descriptor for nodeStatusExporter
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for mig
    • +
    • "WARNING" Add a spec descriptor for imagePullSecrets
    • -
    • "WARNING" Add a spec descriptor for dcgm
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for daemonsets
    • +
    • "WARNING" Add CRD validation for spec field `image` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `imagePullSecrets` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `routes` in Atomicorp/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `service` in Atomicorp/v1alpha1
    • @@ -13899,25 +14199,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For gpu-operator-certified.v1.8.0:

      +

      For atomicorp-helm-operator.v0.0.1:

      -

    • "WARNING" (gpu-operator-certified.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (atomicorp-helm-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -13927,28 +14229,28 @@
      Grade

    NOT USED

    Grade B
    (700)
    Grade D
    (100)
    k10-kasten-operator-rhmpcitrix-ingress-controller-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -13961,11 +14263,11 @@
      Grade

    NOT USED

    @@ -13975,264 +14277,137 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For k10-helm-operator.2.5.18:

      - -

    • "ERROR" scc does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for scc
    • - -
    • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
    • - - -
      -

      For k10-kasten-operator.4.0.6000:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - -
    • "ERROR" service does not have a spec descriptor
    • - -
    • "ERROR" ambassadorImage does not have a spec descriptor
    • - -
    • "ERROR" cacertconfigmap does not have a spec descriptor
    • - -
    • "ERROR" kanister does not have a spec descriptor
    • - -
    • "ERROR" networkPolicy does not have a spec descriptor
    • - -
    • "ERROR" prometheus does not have a spec descriptor
    • - -
    • "ERROR" services does not have a spec descriptor
    • - -
    • "ERROR" global does not have a spec descriptor
    • +

      For citrix-ingress-controller-operator.v1.10.2:

    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" serviceAccount does not have a spec descriptor
    • - -
    • "ERROR" jaeger does not have a spec descriptor
    • - -
    • "ERROR" license does not have a spec descriptor
    • - -
    • "ERROR" externalGateway does not have a spec descriptor
    • - -
    • "ERROR" genericVolumeSnapshot does not have a spec descriptor
    • - -
    • "ERROR" injectKanisterSidecar does not have a spec descriptor
    • - -
    • "ERROR" limiter does not have a spec descriptor
    • - -
    • "ERROR" apiservices does not have a spec descriptor
    • +
    • "ERROR" nsProtocol does not have a spec descriptor
    • -
    • "ERROR" clusterName does not have a spec descriptor
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "ERROR" kanisterPodCustomAnnotations does not have a spec descriptor
    • +
    • "ERROR" ipam does not have a spec descriptor
    • -
    • "ERROR" metering does not have a spec descriptor
    • +
    • "ERROR" nodeWatch does not have a spec descriptor
    • -
    • "ERROR" secrets does not have a spec descriptor
    • +
    • "ERROR" cicSettings does not have a spec descriptor
    • -
    • "ERROR" apigateway does not have a spec descriptor
    • +
    • "ERROR" nsPort does not have a spec descriptor
    • -
    • "ERROR" gateway does not have a spec descriptor
    • +
    • "ERROR" namespaceLabels does not have a spec descriptor
    • -
    • "ERROR" executorReplicas does not have a spec descriptor
    • +
    • "ERROR" crds does not have a spec descriptor
    • -
    • "ERROR" kanisterPodCustomLabels does not have a spec descriptor
    • +
    • "ERROR" entityPrefix does not have a spec descriptor
    • -
    • "ERROR" rbac does not have a spec descriptor
    • +
    • "ERROR" ingressClass does not have a spec descriptor
    • -
    • "ERROR" route does not have a spec descriptor
    • +
    • "ERROR" logProxy does not have a spec descriptor
    • -
    • "ERROR" scc does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" toolsImage does not have a spec descriptor
    • +
    • "ERROR" coeConfig does not have a spec descriptor
    • -
    • "ERROR" auth does not have a spec descriptor
    • +
    • "ERROR" nsIP does not have a spec descriptor
    • -
    • "ERROR" dexImage does not have a spec descriptor
    • +
    • "ERROR" openshift does not have a spec descriptor
    • -
    • "ERROR" kanisterToolsImage does not have a spec descriptor
    • +
    • "ERROR" updateIngressStatus does not have a spec descriptor
    • -
    • "ERROR" eula does not have a spec descriptor
    • +
    • "ERROR" pullPolicy does not have a spec descriptor
    • -
    • "ERROR" ingress does not have a spec descriptor
    • +
    • "ERROR" adcCredentialSecret does not have a spec descriptor
    • -
    • "ERROR" k10s.apik10.kasten.io does not have a status descriptor
    • +
    • "ERROR" defaultSSLCertSecret does not have a spec descriptor
    • +
    • "ERROR" kubernetesURL does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cluster
    • +
    • "ERROR" exporter does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "ERROR" nsVIP does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ambassadorImage
    • +
    • "ERROR" license does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cacertconfigmap
    • +
    • "ERROR" routeLabels does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for kanister
    • +
    • "ERROR" serviceClass does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for networkPolicy
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for services
    • +
    • "ERROR" citrixingresscontrollers.citrix.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for global
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for jaeger
    • - -
    • "WARNING" Add a spec descriptor for license
    • - -
    • "WARNING" Add a spec descriptor for externalGateway
    • - -
    • "WARNING" Add a spec descriptor for genericVolumeSnapshot
    • - -
    • "WARNING" Add a spec descriptor for injectKanisterSidecar
    • - -
    • "WARNING" Add a spec descriptor for limiter
    • - -
    • "WARNING" Add a spec descriptor for apiservices
    • - -
    • "WARNING" Add a spec descriptor for clusterName
    • - -
    • "WARNING" Add a spec descriptor for kanisterPodCustomAnnotations
    • - -
    • "WARNING" Add a spec descriptor for metering
    • - -
    • "WARNING" Add a spec descriptor for secrets
    • - -
    • "WARNING" Add a spec descriptor for apigateway
    • - -
    • "WARNING" Add a spec descriptor for gateway
    • - -
    • "WARNING" Add a spec descriptor for executorReplicas
    • - -
    • "WARNING" Add a spec descriptor for kanisterPodCustomLabels
    • - -
    • "WARNING" Add a spec descriptor for rbac
    • - -
    • "WARNING" Add a spec descriptor for route
    • - -
    • "WARNING" Add a spec descriptor for scc
    • - -
    • "WARNING" Add a spec descriptor for toolsImage
    • - -
    • "WARNING" Add a spec descriptor for auth
    • - -
    • "WARNING" Add a spec descriptor for dexImage
    • - -
    • "WARNING" Add a spec descriptor for kanisterToolsImage
    • - -
    • "WARNING" Add a spec descriptor for eula
    • - -
    • "WARNING" Add a spec descriptor for ingress
    • - -
    • "WARNING" Add CRD validation for spec field `kanisterPodCustomLabels` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `metering` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `genericVolumeSnapshot` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kanister` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `kanisterPodCustomAnnotations` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `toolsImage` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `global` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `executorReplicas` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `license` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `limiter` in K10/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `rbac` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nsProtocol
    • -
    • "WARNING" Add CRD validation for spec field `resources` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for logLevel
    • -
    • "WARNING" Add CRD validation for spec field `service` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ipam
    • -
    • "WARNING" Add CRD validation for spec field `eula` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeWatch
    • -
    • "WARNING" Add CRD validation for spec field `kanisterToolsImage` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for cicSettings
    • -
    • "WARNING" Add CRD validation for spec field `networkPolicy` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nsPort
    • -
    • "WARNING" Add CRD validation for spec field `clusterName` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for namespaceLabels
    • -
    • "WARNING" Add CRD validation for spec field `cacertconfigmap` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for crds
    • -
    • "WARNING" Add CRD validation for spec field `dexImage` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for entityPrefix
    • -
    • "WARNING" Add CRD validation for spec field `image` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for ingressClass
    • -
    • "WARNING" Add CRD validation for spec field `prometheus` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for logProxy
    • -
    • "WARNING" Add CRD validation for spec field `route` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "WARNING" Add CRD validation for spec field `scc` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for coeConfig
    • -
    • "WARNING" Add CRD validation for spec field `secrets` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nsIP
    • -
    • "WARNING" Add CRD validation for spec field `ambassadorImage` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for openshift
    • -
    • "WARNING" Add CRD validation for spec field `apiservices` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for updateIngressStatus
    • -
    • "WARNING" Add CRD validation for spec field `auth` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for pullPolicy
    • -
    • "WARNING" Add CRD validation for spec field `jaeger` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for adcCredentialSecret
    • -
    • "WARNING" Add CRD validation for spec field `serviceAccount` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for defaultSSLCertSecret
    • -
    • "WARNING" Add CRD validation for spec field `apigateway` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for kubernetesURL
    • -
    • "WARNING" Add CRD validation for spec field `externalGateway` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for exporter
    • -
    • "WARNING" Add CRD validation for spec field `gateway` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nsVIP
    • -
    • "WARNING" Add CRD validation for spec field `ingress` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for license
    • -
    • "WARNING" Add CRD validation for spec field `injectKanisterSidecar` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for routeLabels
    • -
    • "WARNING" Add CRD validation for spec field `logLevel` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for serviceClass
    • -
    • "WARNING" Add CRD validation for spec field `services` in K10/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add CRD validation for spec field `cluster` in K10/v1alpha1
    • +
    • "WARNING" Add CRD validation for CitrixIngressController/v1alpha1
    • @@ -14243,36 +14418,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For k10-helm-operator.2.5.18:

      - - -

    • "WARNING" (k10-helm-operator.2.5.18) csv.metadata.Name k10-helm-operator.2.5.18 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For k10-kasten-operator.4.0.6000:

      +

      For citrix-ingress-controller-operator.v1.10.2:

      -

    • "WARNING" (k10-kasten-operator.4.0.6000) csv.metadata.Name k10-kasten-operator.4.0.6000 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (citrix-ingress-controller-operator.v1.10.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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" this bundle is using APIs which were deprecated 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"]),ClusterRole: (["citrix-ingress-controller-operator-metrics-reader"]),
    • @@ -14282,101 +14448,77 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    uma-operator-rhmpcortex-hub-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For uma-operator.v21.6.0-29:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" monitor does not have a spec descriptor
    • - -
    • "ERROR" role does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" agentManager does not have a spec descriptor
    • - -
    • "ERROR" cloudmonitoring does not have a spec descriptor
    • - -
    • "ERROR" clusterName does not have a spec descriptor
    • +

      For cortex-hub-operator.v0.0.25:

      -

    • "ERROR" universalmonitoringagents.ca.broadcom.com does not have a status descriptor
    • +
    • "ERROR" hubs.hubs.cortex.cognitivescale.com does not have a status descriptor
    • +
    • "ERROR" hub does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for monitor
    • +
    • "ERROR" hub-cronjob does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for role
    • +
    • "ERROR" mongo-uri does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for type
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for agentManager
    • -
    • "WARNING" Add a spec descriptor for cloudmonitoring
    • +
    • "WARNING" Add a spec descriptor for hub
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "WARNING" Add a spec descriptor for hub-cronjob
    • -
    • "WARNING" Add CRD validation for UniversalMonitoringAgent/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for mongo-uri
    • @@ -14387,27 +14529,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For uma-operator.v21.6.0-29:

      +

      For cortex-hub-operator.v0.0.25:

      -

    • "WARNING" (uma-operator.v21.6.0-29) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (cortex-hub-operator.v0.0.25) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14417,28 +14559,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (200)
    xcrypt-operator-rhmpuma-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14451,157 +14593,98 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For zts-xcrypt-operator.v0.0.14:

      +

      For uma-operator.v21.6.0-29:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" status does not have a spec descriptor
    • +
    • "ERROR" monitor does not have a spec descriptor
    • -
    • "ERROR" xcrypts.xcrypt.zettaset.com does not have a status descriptor
    • +
    • "ERROR" role does not have a spec descriptor
    • +
    • "ERROR" type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for status
    • +
    • "ERROR" agentManager does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `status` in XCrypt/v1alpha1
    • +
    • "ERROR" cloudmonitoring does not have a spec descriptor
    • +
    • "ERROR" clusterName does not have a spec descriptor
    • +
    • "ERROR" universalmonitoringagents.ca.broadcom.com does not have a status descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for monitor
    • -
      -

      For zts-xcrypt-operator.v0.0.14:

      +

    • "WARNING" Add a spec descriptor for role
    • +
    • "WARNING" Add a spec descriptor for type
    • -
    • "WARNING" (zts-xcrypt-operator.v0.0.14) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for agentManager
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["xcrypts.xcrypt.zettaset.com"])
    • +
    • "WARNING" Add a spec descriptor for cloudmonitoring
    • + +
    • "WARNING" Add a spec descriptor for clusterName
    • + +
    • "WARNING" Add CRD validation for UniversalMonitoringAgent/v1alpha1
    -

    NOT USED

    Grade D
    (200)
    robin-storage-enterprise-rhmp -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For robin-storage-enterprise.v5.3.4-156-3:

      +

      For uma-operator.v21.6.0-29:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (uma-operator.v21.6.0-29) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14611,33 +14694,31 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (200)
    densify-operator-rhmpccm-node-agent-operator-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • v1.0
    • -
    • alpha
    @@ -14647,11 +14728,11 @@
    Grade

    NOT USED

    @@ -14661,118 +14742,87 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For densify-operator.v1.0.1:

      - -

    • "ERROR" densifies.densify.com does not have a status descriptor
    • - -
    • "ERROR" nodeSelector does not have a spec descriptor
    • - -
    • "ERROR" pullPolicy does not have a spec descriptor
    • - -
    • "ERROR" replicaCount does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • +

      For ccm-node-agent-operator.v0.0.1:

      -

    • "ERROR" affinity does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "ERROR" ccmJoinToken does not have a spec descriptor
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" nameOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for pullPolicy
    • - -
    • "WARNING" Add a spec descriptor for replicaCount
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add a spec descriptor for affinity
    • - -
    • "WARNING" Add a spec descriptor for config
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • +
    • "ERROR" podAnnotations does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • +
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" fullnameOverride does not have a spec descriptor
    • -
      -

      For densify-operator.v0.0.2:

      +

    • "ERROR" log does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" ports does not have a spec descriptor
    • -
    • "ERROR" densifies.densify.com does not have a status descriptor
    • +
    • "ERROR" serviceAccount does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" ccmnodeagents.charts.operatorhub.io does not have a status descriptor
    • -
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ccmJoinToken
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for nameOverride
    • -
    • "ERROR" pullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for podAnnotations
    • -
    • "ERROR" replicaCount does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • +
    • "WARNING" Add a spec descriptor for fullnameOverride
    • -
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • +
    • "WARNING" Add a spec descriptor for log
    • -
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • +
    • "WARNING" Add a spec descriptor for ports
    • -
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • +
    • "WARNING" Add a spec descriptor for serviceAccount
    • -
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • +
    • "WARNING" Add CRD validation for spec field `ccmJoinToken` in CcmNodeAgent/v1
    • -
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • +
    • "WARNING" Add CRD validation for spec field `image` in CcmNodeAgent/v1
    • -
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • +
    • "WARNING" Add CRD validation for spec field `serviceAccount` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "WARNING" Add CRD validation for spec field `ports` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for affinity
    • +
    • "WARNING" Add CRD validation for spec field `replicaCount` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "WARNING" Add CRD validation for spec field `resources` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for image
    • +
    • "WARNING" Add CRD validation for spec field `fullnameOverride` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add CRD validation for spec field `log` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for pullPolicy
    • +
    • "WARNING" Add CRD validation for spec field `nameOverride` in CcmNodeAgent/v1
    • -
    • "WARNING" Add a spec descriptor for replicaCount
    • +
    • "WARNING" Add CRD validation for spec field `podAnnotations` in CcmNodeAgent/v1
    • @@ -14783,36 +14833,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For densify-operator.v1.0.1:

      - - -

    • "WARNING" (densify-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • - - -
      -

      For densify-operator.v0.0.2:

      - +

      For ccm-node-agent-operator.v0.0.1:

      -

    • "WARNING" (densify-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (ccm-node-agent-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -14822,28 +14861,28 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade B
    (600)
    insightedge-enterprise-operator2-rhmpmf-cics-ts-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -14856,55 +14895,45 @@
      Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For insightedge-enterprise-operator.v15.0.1:

      - -

    • "ERROR" zeppelin does not have a spec descriptor
    • - -
    • "ERROR" manager does not have a spec descriptor
    • - -
    • "ERROR" pu does not have a spec descriptor
    • - -
    • "ERROR" insightedges.insightedge.gigaspaces.com does not have a status descriptor
    • +

      For mf-cics-ts-operator.v0.0.1:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for zeppelin
    • - -
    • "WARNING" Add a spec descriptor for manager
    • -
    • "WARNING" Add a spec descriptor for pu
    • +
    • "WARNING" Add CRD validation for spec field `image` in Mf-cics-ts/v1alpha1
    • -
    • "WARNING" Add CRD validation for Insightedge/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for image
    • @@ -14915,27 +14944,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For insightedge-enterprise-operator.v15.0.1:

      +

      For mf-cics-ts-operator.v0.0.1:

      -

    • "WARNING" (insightedge-enterprise-operator.v15.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (mf-cics-ts-operator.v0.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -14949,27 +14978,29 @@
      Grade
    kong-offline-operator-rhmpdensify-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      +
    • v1.0
    • +
    • alpha
    @@ -14979,59 +15010,132 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - + +
      +

      For densify-operator.v1.0.1:

      + +

    • "ERROR" densifies.densify.com does not have a status descriptor
    • + +
    • "ERROR" nodeSelector does not have a spec descriptor
    • + +
    • "ERROR" pullPolicy does not have a spec descriptor
    • + +
    • "ERROR" replicaCount does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" affinity does not have a spec descriptor
    • + +
    • "ERROR" config does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for pullPolicy
    • + +
    • "WARNING" Add a spec descriptor for replicaCount
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for affinity
    • + +
    • "WARNING" Add a spec descriptor for config
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • + +
      -

      For kong.v0.3.0:

      +

      For densify-operator.v0.0.2:

      -

    • "ERROR" proxy does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" env does not have a spec descriptor
    • +
    • "ERROR" densifies.densify.com does not have a status descriptor
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" ingressController does not have a spec descriptor
    • +
    • "ERROR" affinity does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" kongs.charts.helm.k8s.io does not have a status descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for proxy
    • +
    • "ERROR" pullPolicy does not have a spec descriptor
    • + +
    • "ERROR" replicaCount does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for env
    • + +
    • "WARNING" Add CRD validation for spec field `resources` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `affinity` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `config` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `image` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `nodeSelector` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `pullPolicy` in Densify/v1
    • + +
    • "WARNING" Add CRD validation for spec field `replicaCount` in Densify/v1
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for ingressController
    • +
    • "WARNING" Add a spec descriptor for affinity
    • -
    • "WARNING" Add CRD validation for Kong/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for config
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for nodeSelector
    • + +
    • "WARNING" Add a spec descriptor for pullPolicy
    • + +
    • "WARNING" Add a spec descriptor for replicaCount
    • @@ -15042,27 +15146,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For kong.v0.3.0:

      +

      For densify-operator.v1.0.1:

      -

    • "WARNING" (kong.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (densify-operator.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kongs.charts.helm.k8s.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For densify-operator.v0.0.2:

      + + +

    • "WARNING" (densify-operator.v0.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -15076,28 +15189,28 @@
      Grade
    armory-operator-rhmpeddi-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • v1alpha2
    • +
    • alpha
    @@ -15106,11 +15219,11 @@
    Grade

    NOT USED

    @@ -15118,42 +15231,58 @@
    Grade

    NOT USED

    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For eddi-operator.v1.0.2:

      + + +

    • "WARNING" Add CRD validation for Eddioperator/v1alpha1
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For armory-operator.v1.2.0-ubi:

      +

      For eddi-operator.v1.0.2:

      -

    • "WARNING" (armory-operator.v1.2.0-ubi) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (eddi-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -15163,32 +15292,34 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (200)
    cloudbees-ci-rhmpk8s-triliovault-rhmp -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • cluster
    • + +
    • namespaced
    @@ -15197,109 +15328,74 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cloudbees-ci.v3.34.1:

      +

      For k8s-triliovault-cluster.v2.0.4:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" cloudbeescis.charts.cloudbees.com does not have a status descriptor
    • - -
    • "ERROR" rbac does not have a spec descriptor
    • - -
    • "ERROR" sidecarinjector does not have a spec descriptor
    • - -
    • "ERROR" Master does not have a spec descriptor
    • - -
    • "ERROR" NetworkPolicy does not have a spec descriptor
    • - -
    • "ERROR" Persistence does not have a spec descriptor
    • - -
    • "ERROR" PodSecurityPolicy does not have a spec descriptor
    • - -
    • "ERROR" ingress-nginx does not have a spec descriptor
    • - -
    • "ERROR" Agents does not have a spec descriptor
    • - -
    • "ERROR" Hibernation does not have a spec descriptor
    • - -
    • "ERROR" OperationsCenter does not have a spec descriptor
    • - -
    • "ERROR" Subdomain does not have a spec descriptor
    • - -
    • "ERROR" nginx-ingress does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for rbac
    • - -
    • "WARNING" Add a spec descriptor for sidecarinjector
    • - -
    • "WARNING" Add a spec descriptor for Master
    • - -
    • "WARNING" Add a spec descriptor for NetworkPolicy
    • +
    • "ERROR" nfsCredentials does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for Persistence
    • -
    • "WARNING" Add a spec descriptor for PodSecurityPolicy
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for ingress-nginx
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for Agents
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for Hibernation
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for OperationsCenter
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for Subdomain
    • +
    • "WARNING" Add a spec descriptor for nfsCredentials
    • -
    • "WARNING" Add a spec descriptor for nginx-ingress
    • -
    • "WARNING" Add CRD validation for spec field `rbac` in CloudBeesCI/v1alpha1
    • +
      +

      For k8s-triliovault-cluster.v2.0.0:

      -

    • "WARNING" Add CRD validation for spec field `Persistence` in CloudBeesCI/v1alpha1
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for spec field `PodSecurityPolicy` in CloudBeesCI/v1alpha1
    • +
    • "ERROR" nfsCredentials does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ingress-nginx` in CloudBeesCI/v1alpha1
    • -
    • "WARNING" Add CRD validation for spec field `nginx-ingress` in CloudBeesCI/v1alpha1
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=BackupPlan: provided API should have an example annotation
    • -
    • "WARNING" Add CRD validation for spec field `sidecarinjector` in CloudBeesCI/v1alpha1
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Backup: provided API should have an example annotation
    • -
    • "WARNING" Add CRD validation for spec field `Agents` in CloudBeesCI/v1alpha1
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Restore: provided API should have an example annotation
    • -
    • "WARNING" Add CRD validation for spec field `Hibernation` in CloudBeesCI/v1alpha1
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Policy: provided API should have an example annotation
    • -
    • "WARNING" Add CRD validation for spec field `Master` in CloudBeesCI/v1alpha1
    • +
    • "WARNING" Warning: Value triliovault.trilio.io/v1, Kind=Hook: provided API should have an example annotation
    • -
    • "WARNING" Add CRD validation for spec field `NetworkPolicy` in CloudBeesCI/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for nfsCredentials
    • @@ -15310,25 +15406,52 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cloudbees-ci.v3.34.1:

      +

      For k8s-triliovault-cluster.v2.0.4:

      + + +

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + + +
      +

      For k8s-triliovault-cluster.v2.0.0:

      -

    • "WARNING" (cloudbees-ci.v3.34.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -15338,32 +15461,32 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    cnvrg-operator-marketplace-rhmpnutanixcsioperator-rhmp -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • beta
    @@ -15372,121 +15495,71 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cnvrg-operator.v0.352.0:

      +

      For nutanixcsioperator.v0.1.3:

      -

    • "ERROR" cnvrgapps.mlops.cnvrg.io does not have a status descriptor
    • +
    • "ERROR" nutanixcsistorages.crd.nutanix.com does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" clusterDomain does not have a spec descriptor
    • - -
    • "ERROR" ingressType does not have a spec descriptor
    • - -
    • "ERROR" prometheus does not have a spec descriptor
    • - -
    • "ERROR" redis does not have a spec descriptor
    • - -
    • "ERROR" es does not have a spec descriptor
    • - -
    • "ERROR" kibana does not have a spec descriptor
    • - -
    • "ERROR" cnvrgApp does not have a spec descriptor
    • - -
    • "ERROR" istio does not have a spec descriptor
    • - -
    • "ERROR" nvidiadp does not have a spec descriptor
    • - -
    • "ERROR" fluentd does not have a spec descriptor
    • - -
    • "ERROR" securityMode does not have a spec descriptor
    • - -
    • "ERROR" seeder does not have a spec descriptor
    • - -
    • "ERROR" pg does not have a spec descriptor
    • - -
    • "ERROR" minio does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `seeder` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `pg` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `minio` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `kibana` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `fluentd` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `ingressType` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `securityMode` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `es` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `istio` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `prometheus` in CnvrgApp/v1
    • - -
    • "WARNING" Add CRD validation for spec field `nvidiadp` in CnvrgApp/v1
    • +
    • "ERROR" scc does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `redis` in CnvrgApp/v1
    • +
    • "ERROR" sidecars does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for clusterDomain
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ingressType
    • +
    • "ERROR" node does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for prometheus
    • +
    • "ERROR" provisioner does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redis
    • -
    • "WARNING" Add a spec descriptor for es
    • +
    • "WARNING" Add CRD validation for spec field `scc` in NutanixCsiStorage/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for kibana
    • +
    • "WARNING" Add CRD validation for spec field `sidecars` in NutanixCsiStorage/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for cnvrgApp
    • +
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in NutanixCsiStorage/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for istio
    • +
    • "WARNING" Add CRD validation for spec field `node` in NutanixCsiStorage/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for nvidiadp
    • +
    • "WARNING" Add CRD validation for spec field `provisioner` in NutanixCsiStorage/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for fluentd
    • +
    • "WARNING" Add a spec descriptor for scc
    • -
    • "WARNING" Add a spec descriptor for securityMode
    • +
    • "WARNING" Add a spec descriptor for sidecars
    • -
    • "WARNING" Add a spec descriptor for seeder
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add a spec descriptor for pg
    • +
    • "WARNING" Add a spec descriptor for node
    • -
    • "WARNING" Add a spec descriptor for minio
    • +
    • "WARNING" Add a spec descriptor for provisioner
    • @@ -15497,27 +15570,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cnvrg-operator.v0.352.0:

      - +

      For nutanixcsioperator.v0.1.3:

      -

    • "WARNING" (cnvrg-operator.v0.352.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (nutanixcsioperator.v0.1.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -15527,35 +15598,33 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade B
    (600)
    datadog-operator-certified-rhmpcortex-fabric-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    • alpha
    • -
    • beta
    • -
    @@ -15563,90 +15632,70 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For datadog-operator.v0.3.0:

      - -

    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • - -
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • - -
    • "ERROR" clusterChecksRunner does not have a spec descriptor
    • - -
    • "ERROR" credentials does not have a spec descriptor
    • - -
    • "ERROR" agent does not have a spec descriptor
    • - -
    • "ERROR" clusterAgent does not have a spec descriptor
    • - -
    • "ERROR" externalMetricName does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • +

      For cortex-fabric-operator.v1.0.0:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for clusterChecksRunner
    • +
    • "ERROR" kongui does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for credentials
    • -
    • "WARNING" Add a spec descriptor for agent
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add a spec descriptor for clusterAgent
    • +
    • "WARNING" Add a spec descriptor for kongui
    • -
    • "WARNING" Add a spec descriptor for externalMetricName
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1

    • -

      For datadog-operator.v0.4.0:

      +

      For cortex-fabric-operator.v1.0.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" agent does not have a spec descriptor
    • - -
    • "ERROR" credentials does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • +
    • "ERROR" ingress does not have a spec descriptor
    • -
    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • +
    • "ERROR" kongui does not have a spec descriptor
    • -
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for ingress
    • -
    • "WARNING" Add a spec descriptor for agent
    • +
    • "WARNING" Add a spec descriptor for kongui
    • -
    • "WARNING" Add a spec descriptor for credentials
    • +
    • "WARNING" Add CRD validation for spec field `ingress` in Cortex5/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" Add CRD validation for spec field `kongui` in Cortex5/v1alpha1
    • @@ -15657,36 +15706,32 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For datadog-operator.v0.3.0:

      - +

      For cortex-fabric-operator.v1.0.0:

      -

    • "WARNING" (datadog-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])

    • -

      For datadog-operator.v0.4.0:

      - +

      For cortex-fabric-operator.v1.0.0:

      -

    • "WARNING" (datadog-operator.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -15696,32 +15741,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    enterprise-operator-rhmpappranix-cps-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • deprecated
    @@ -15730,119 +15775,60 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For enterprise-operator.v0.1.5:

      - -

    • "ERROR" anchoreenterprises.anchore.com does not have a status descriptor
    • - -
    • "ERROR" anchoreSimpleQueue does not have a spec descriptor
    • - -
    • "ERROR" anchoreApi does not have a spec descriptor
    • - -
    • "ERROR" anchoreAnalyzer does not have a spec descriptor
    • - -
    • "ERROR" anchoreEngineUpgradeJob does not have a spec descriptor
    • - -
    • "ERROR" postgresql does not have a spec descriptor
    • - -
    • "ERROR" anchore-feeds-db does not have a spec descriptor
    • - -
    • "ERROR" anchoreCatalog does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseEngineUpgradeJob does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseFeeds does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseNotifications does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseRbac does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseUi does not have a spec descriptor
    • - -
    • "ERROR" ingress does not have a spec descriptor
    • - -
    • "ERROR" anchore-ui-redis does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseGlobal does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseReports does not have a spec descriptor
    • - -
    • "ERROR" anchoreGlobal does not have a spec descriptor
    • - -
    • "ERROR" anchorePolicyEngine does not have a spec descriptor
    • - -
    • "ERROR" anchoreEnterpriseFeedsUpgradeJob does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add CRD validation for AnchoreEnterprise/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for anchoreSimpleQueue
    • - -
    • "WARNING" Add a spec descriptor for anchoreApi
    • - -
    • "WARNING" Add a spec descriptor for anchoreAnalyzer
    • - -
    • "WARNING" Add a spec descriptor for anchoreEngineUpgradeJob
    • - -
    • "WARNING" Add a spec descriptor for postgresql
    • - -
    • "WARNING" Add a spec descriptor for anchore-feeds-db
    • +

      For appranix-operator.v2.5.0:

      -

    • "WARNING" Add a spec descriptor for anchoreCatalog
    • +
    • "ERROR" objectStorage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseEngineUpgradeJob
    • +
    • "ERROR" backupstoragelocations.aps.appranix.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseFeeds
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseNotifications
    • +
    • "WARNING" Add a spec descriptor for objectStorage
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseRbac
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseUi
    • +
      +

      For appranix.v2.3.0:

      -

    • "WARNING" Add a spec descriptor for ingress
    • +
    • "ERROR" objectStorage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for anchore-ui-redis
    • +
    • "ERROR" backupstoragelocations.aps.appranix.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseGlobal
    • +
    • "ERROR" volumesnapshotlocations.aps.appranix.com does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseReports
    • -
    • "WARNING" Add a spec descriptor for anchoreGlobal
    • +
    • "WARNING" Add CRD validation for BackupStorageLocation/v1
    • -
    • "WARNING" Add a spec descriptor for anchorePolicyEngine
    • +
    • "WARNING" Add CRD validation for VolumeSnapshotLocation/v1
    • -
    • "WARNING" Add a spec descriptor for anchoreEnterpriseFeedsUpgradeJob
    • +
    • "WARNING" Add a spec descriptor for objectStorage
    • @@ -15853,27 +15839,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For enterprise-operator.v0.1.5:

      +

      For appranix-operator.v2.5.0:

      -

    • "WARNING" (enterprise-operator.v0.1.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (appranix-operator.v2.5.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["anchoreenterprises.anchore.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For appranix.v2.3.0:

      + + +

    • "WARNING" (appranix.v2.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -15887,41 +15882,31 @@
      Grade
    hazelcast-enterprise-certified-rhmppercona-server-mongodb-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    -

    NOT USED

    @@ -15931,37 +15916,99 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For hazelcast-enterprise-operator.v0.3.7:

      +

      For percona-server-mongodb-operator.v1.8.0:

      -

    • "ERROR" hazelcastenterprises.hazelcast.com does not have a status descriptor
    • +
    • "ERROR" updateStrategy does not have a spec descriptor
    • -
    • "ERROR" hazelcast does not have a spec descriptor
    • +
    • "ERROR" pmm does not have a spec descriptor
    • -
    • "ERROR" securityContext does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" allowUnsafeConfigurations does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for HazelcastEnterprise/v1alpha1
    • +
    • "ERROR" upgradeOptions does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for hazelcast
    • +
    • "ERROR" secrets does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for securityContext
    • +
    • "ERROR" replsets does not have a spec descriptor
    • + +
    • "ERROR" sharding does not have a spec descriptor
    • + +
    • "ERROR" mongod does not have a spec descriptor
    • + +
    • "ERROR" crVersion does not have a spec descriptor
    • + +
    • "ERROR" backup does not have a spec descriptor
    • + +
    • "ERROR" psmdbCluster does not have a spec descriptor
    • + +
    • "ERROR" storageName does not have a spec descriptor
    • + +
    • "ERROR" backupName does not have a spec descriptor
    • + +
    • "ERROR" clusterName does not have a spec descriptor
    • + +
    • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
    • + +
    • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
    • + +
    • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
    • + + +
    • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-8-0
    • + +
    • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
    • + +
    • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
    • + +
    • "WARNING" Add a spec descriptor for updateStrategy
    • + +
    • "WARNING" Add a spec descriptor for pmm
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • + +
    • "WARNING" Add a spec descriptor for allowUnsafeConfigurations
    • + +
    • "WARNING" Add a spec descriptor for upgradeOptions
    • + +
    • "WARNING" Add a spec descriptor for secrets
    • + +
    • "WARNING" Add a spec descriptor for replsets
    • + +
    • "WARNING" Add a spec descriptor for sharding
    • + +
    • "WARNING" Add a spec descriptor for mongod
    • + +
    • "WARNING" Add a spec descriptor for crVersion
    • + +
    • "WARNING" Add a spec descriptor for backup
    • + +
    • "WARNING" Add a spec descriptor for psmdbCluster
    • + +
    • "WARNING" Add a spec descriptor for storageName
    • + +
    • "WARNING" Add a spec descriptor for backupName
    • + +
    • "WARNING" Add a spec descriptor for clusterName
    • @@ -15972,27 +16019,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For hazelcast-enterprise-operator.v0.3.7:

      +

      For percona-server-mongodb-operator.v1.8.0:

      -

    • "WARNING" (hazelcast-enterprise-operator.v0.3.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (percona-server-mongodb-operator.v1.8.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
    • @@ -16006,31 +16053,41 @@
      Grade
    sysdig-certified-rhmpappdynamics-operator-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    +

    NOT USED

    @@ -16040,71 +16097,45 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For sysdig-operator.v1.8.3:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • - -
    • "ERROR" sysdigagents.sysdig.com does not have a status descriptor
    • - -
    • "ERROR" daemonset does not have a spec descriptor
    • - -
    • "ERROR" scc does not have a spec descriptor
    • - -
    • "ERROR" sysdig does not have a spec descriptor
    • - -
    • "ERROR" ebpf does not have a spec descriptor
    • - -
    • "ERROR" daemonset does not have a spec descriptor
    • - -
    • "ERROR" scc does not have a spec descriptor
    • - -
    • "ERROR" sysdig does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • - -
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • +

      For appdynamics-operator.v0.6.3:

      -

    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • +
    • "ERROR" adams.appdynamics.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ebpf` in SysdigAgent/v1
    • +
    • "ERROR" clusteragents.appdynamics.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `daemonset` in SysdigAgent/v1
    • +
    • "ERROR" infravizs.appdynamics.com does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `scc` in SysdigAgent/v1
    • +
    • "ERROR" enableDockerViz does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `sysdig` in SysdigAgent/v1
    • +
    • "ERROR" enableMasters does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for daemonset
    • +
    • "ERROR" netVizPort does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "ERROR" stdoutLogging does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for sysdig
    • -
    • "WARNING" Add a spec descriptor for ebpf
    • +
    • "WARNING" Add a spec descriptor for enableDockerViz
    • -
    • "WARNING" Add a spec descriptor for daemonset
    • +
    • "WARNING" Add a spec descriptor for enableMasters
    • -
    • "WARNING" Add a spec descriptor for scc
    • +
    • "WARNING" Add a spec descriptor for netVizPort
    • -
    • "WARNING" Add a spec descriptor for sysdig
    • +
    • "WARNING" Add a spec descriptor for stdoutLogging
    • @@ -16115,27 +16146,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For sysdig-operator.v1.8.3:

      +

      For appdynamics-operator.v0.6.3:

      -

    • "WARNING" (sysdig-operator.v1.8.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (appdynamics-operator.v0.6.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["sysdigagents.sysdig.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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" "infravizs.appdynamics.com"])
    • @@ -16145,7 +16176,7 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    instana-agent-rhmpdatadog-operator-certified-rhmp -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      +
    • alpha
    • +
    • beta
    @@ -16344,163 +16377,130 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For instana-agent-operator.v1.0.4:

      +

      For datadog-operator.v0.3.0:

      -

    • "ERROR" config.files does not have a spec descriptor
    • +
    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • -
    • "ERROR" agent.env does not have a spec descriptor
    • +
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • -
    • "ERROR" cluster.name does not have a spec descriptor
    • +
    • "ERROR" clusterChecksRunner does not have a spec descriptor
    • -
    • "ERROR" agents.instana.io does not have a status descriptor
    • +
    • "ERROR" credentials does not have a spec descriptor
    • + +
    • "ERROR" agent does not have a spec descriptor
    • + +
    • "ERROR" clusterAgent does not have a spec descriptor
    • + +
    • "ERROR" externalMetricName does not have a spec descriptor
    • + +
    • "ERROR" query does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for config.files
    • +
    • "WARNING" Add a spec descriptor for clusterChecksRunner
    • -
    • "WARNING" Add a spec descriptor for agent.env
    • +
    • "WARNING" Add a spec descriptor for credentials
    • -
    • "WARNING" Add a spec descriptor for cluster.name
    • +
    • "WARNING" Add a spec descriptor for agent
    • -
    • "WARNING" Add CRD validation for InstanaAgent/v1beta1
    • +
    • "WARNING" Add a spec descriptor for clusterAgent
    • +
    • "WARNING" Add a spec descriptor for externalMetricName
    • +
    • "WARNING" Add a spec descriptor for query
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For datadog-operator.v0.4.0:

      -
      -

      For instana-agent-operator.v1.0.4:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" agent does not have a spec descriptor
    • + +
    • "ERROR" credentials does not have a spec descriptor
    • + +
    • "ERROR" query does not have a spec descriptor
    • + +
    • "ERROR" datadogagents.datadoghq.com does not have a status descriptor
    • + +
    • "ERROR" datadogmetrics.datadoghq.com does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + +
    • "WARNING" Add a spec descriptor for agent
    • + +
    • "WARNING" Add a spec descriptor for credentials
    • + +
    • "WARNING" Add a spec descriptor for query
    -

    NOT USED

    Grade D
    (200)
    robin-storage-express-rhmp -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - -

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For robin-storage-express.v5.3.4-156-3:

      +

      For datadog-operator.v0.3.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • +
    • "WARNING" (datadog-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • + + +
      +

      For datadog-operator.v0.4.0:

      + + +

    • "WARNING" (datadog-operator.v0.4.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated 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"])
    • @@ -16510,7 +16510,7 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (200)
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    +
      + +
    • CRD
    • + +
    +
    +
      + +
    +
    +
      + +
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    mongodb-enterprise-rhmp +
      + +
    • CRD
    • + +
    • UNKNOWN
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • mongodb-enterprise.v0.3.2 - (label=v4.5,v4.6,max=not set,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.12.0 - (label=v4.6-v4.7,max=not set,channels=[stable],head:YES,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=not set,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=not set,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=not set,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.4 - (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=not set,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)
    • + +
    +
    +
      + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    sysdig-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    as400rpc-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cyberarmor-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-certifai-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    anzograph-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    sumologic-kubernetes-collection-helm-operator-rhmp +
      + +
    +
    +
      + +
    • 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)
    • + +
    +
    hpe-ezmeral-csi-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    iomesh-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ccm-node-agent-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    aqua-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • latest
    • + +
    • alpha
    • + +
    • 6.2
    • + +
    • 6.0
    • + +
    +
    +
      + +
    • 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.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    linstor-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    model-builder-for-vision-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    data-explorer-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k8s-triliovault-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • cluster
    • + +
    • namespaced
    • + +
    +
    +
      + +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[namespaced cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    storageos2-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ako-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cnvrg-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-xtradb-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kpow-io-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    memql-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    seldon-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    growth-stack-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    anzo-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    can-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    uma-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openunison-ocp-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    node-red-operator-rhm-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    ivory-server-app-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    joget-openshift-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    presto-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    perceptilabs-operator-package-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    hazelcast-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    redis-enterprise-operator-cert-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      + +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nastel-navigator-operator-certified-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    fep-ansible-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nutanixcsioperator-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    vprotect-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k10-kasten-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    anzounstructured-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    robin-storage-trial-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    traefikee-redhat-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    orca-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    here-service-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • hls-service-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    yugabyte-platform-operator-bundle-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    op-svc-jenkins-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    joget-dx-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    open-enterprise-spinnaker-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    federatorai-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeplus-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    starburst-enterprise-helm-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    citrix-cpx-with-ingress-controller-operator-rhmp +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mf-cics-tg-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cic-operator-with-crds-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jtrac-app-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aci-containers-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-jet-enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    insightedge-enterprise-operator2-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vfunction-server-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    runtime-component-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    densify-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • v1.0
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    eddi-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    neuvector-certified-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cert-manager-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    snyk-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gpu-operator-certified-rhmp +
      + +
    +
    +
      + +
    • v1.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    stonebranch-universalagent-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    anaconda-team-edition-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hpe-csi-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    t8c-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kong-offline-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    citrix-ingress-controller-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ovms-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cass-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    minio-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cloudhedge-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    armory-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • v1alpha2
    • + +
    +
    +
      + +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    db2-zos-db-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    zabbix-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    crunchy-postgres-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v5
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    robin-storage-express-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    mf-cics-ts-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nastel-xray-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    datadog-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    • alpha
    • + +
    +
    +
      + +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    timemachine-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • timemachine-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    instana-agent-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-server-mongodb-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rapidbiz-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    appranix-cps-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • deprecated
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    xcrypt-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cockroachdb-certified-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mongodb-atlas-kubernetes-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    seldon-deploy-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    cortex-healthcare-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    couchbase-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cpx-cic-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-enterprise-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeturbo-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    confluent-for-kubernetes-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    oneagent-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    aws-event-sources-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    portshift-controller-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    appdynamics-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-fabric-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    rocketchat-operator-certified +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mongodb-enterprise-advanced-ibm-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    akka-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubemq-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    entando-k8s-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    atomicorp-helm-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    + + + + diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html new file mode 100644 index 00000000..da023d29 --- /dev/null +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.7_2021-09-06.html @@ -0,0 +1,3954 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-marketplace-index:v4.7
    • +
    • Image ID: sha256:678bc16cdbed7fc3e22dedc02a4ced6fa359def5ecd6a6d35822ec3a2a59171a
    • +
    • Image Created at: 2021-09-05T00:18:30.830428357Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    +
      + +
    • CRD
    • + +
    +
    +
      + +
    +
    +
      + +
    • aqua-operator.v6.2.1 - (label=v4.5-v4.7,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    mongodb-enterprise-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,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.4 - (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)
    • + +
    +
    +
      + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    cert-manager-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kpow-io-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    data-explorer-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    zabbix-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    as400rpc-operator-rhmp +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mf-cics-ts-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cass-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jtrac-app-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-xtradb-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    minio-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cortex-healthcare-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    orca-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    starburst-enterprise-helm-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • starburst-enterprise-helm-operator.v356.5.2 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    anzounstructured-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    entando-k8s-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • entando-k8s-operator.v6.3.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    insightedge-enterprise-operator2-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eddi-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vprotect-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    node-red-operator-rhm-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-enterprise-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    traefikee-redhat-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    anzograph-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    joget-dx-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rapidbiz-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    runtime-component-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    seldon-deploy-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cortex-fabric-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    aws-event-sources-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    portshift-controller-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    federatorai-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k10-kasten-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openunison-ocp-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kong-offline-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    storageos2-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    yugabyte-platform-operator-bundle-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hpe-ezmeral-csi-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    neuvector-certified-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-server-mongodb-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    seldon-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • seldon-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • seldonoperator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ivory-server-app-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    densify-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    can-operator-rhmp +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-jet-enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    mongodb-enterprise-advanced-ibm-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    appdynamics-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    db2-zos-db-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aci-containers-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    crunchy-postgres-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v5
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    akka-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    joget-openshift-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    presto-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    aqua-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 6.0
    • + +
    • alpha
    • + +
    • latest
    • + +
    • 6.2
    • + +
    +
    +
      + +
    • 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.v6.0.8 - (label=v4.5-v4.7,max=4.8,channels=[6.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • aqua-operator.v6.2.2 - (label=v4.5-v4.7,max=4.8,channels=[6.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aikit-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hpe-csi-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cortex-certifai-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, 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)
    • + +
    +
    +
      + +
    +
    linstor-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    growth-stack-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    t8c-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeturbo-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-express-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    ovms-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cnvrg-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cic-operator-with-crds-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    confluent-for-kubernetes-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • confluent-for-kubernetes.v2.0.2 - (label=v4.3-v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ako-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    timemachine-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    couchbase-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mongodb-atlas-kubernetes-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • mongodb-atlas-kubernetes.v0.6.1 - (label=v4.5-v4.7,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    appranix-cps-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • deprecated
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    datadog-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    • alpha
    • + +
    +
    +
      + +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[beta alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    xcrypt-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    model-builder-for-vision-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    iomesh-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    perceptilabs-operator-package-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    kubemq-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    op-svc-jenkins-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    snyk-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    redis-enterprise-operator-cert-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      + +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cpx-cic-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nastel-navigator-operator-certified-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rocketchat-operator-certified +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    armory-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • v1alpha2
    • + +
    +
    +
      + +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    instana-agent-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nutanixcsioperator-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ccm-node-agent-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    vfunction-server-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • vfunction-server-operator.v2.2.496 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    anzo-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cloudbees-ci-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    uma-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-trial-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    oneagent-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    mf-cics-tg-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nastel-xray-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeplus-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    stonebranch-universalagent-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    atomicorp-helm-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    citrix-cpx-with-ingress-controller-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k8s-triliovault-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • cluster
    • + +
    • namespaced
    • + +
    +
    +
      + +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cockroachdb-certified-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[stable beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    sysdig-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    memql-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    fep-ansible-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cloudhedge-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gpu-operator-certified-rhmp +
      + +
    +
    +
      + +
    • v1.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    citrix-ingress-controller-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sumologic-kubernetes-collection-helm-operator-rhmp +
      + +
    +
    +
      + +
    • 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)
    • + +
    +
    anaconda-team-edition-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cyberarmor-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    open-enterprise-spinnaker-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • spinnaker-operator.v1.21.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    +
    + + + diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html new file mode 100644 index 00000000..893ea381 --- /dev/null +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-06.html @@ -0,0 +1,3862 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-marketplace-index:v4.8
    • +
    • Image ID: sha256:f99977a37973d545b258f779ecc2c5ce113a3dea6459350cfa3542de8f21fc5d
    • +
    • Image Created at: 2021-09-03T13:19:17.869927599Z
    • +
    • From JSON report generated at: 2021-09-04
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    +
      + +
    +
    +
      + +
    +
    +
      + +
    +
    +
      + +
    • cockroach-operator.v2.0.1 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    mongodb-enterprise-rhmp +
      + +
    • UNKNOWN
    • + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,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.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.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.4 - (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.3.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)
    • + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    eddi-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    appdynamics-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-trial-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    fep-ansible-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cass-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    open-enterprise-spinnaker-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • open-enterprise-spinnaker.v1.21.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    uma-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ccm-node-agent-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    federatorai-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sysdig-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aqua-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • latest
    • + +
    +
    +
      + +
    • 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:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aci-containers-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    citrix-ingress-controller-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    memql-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    node-red-operator-rhm-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    t8c-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    joget-openshift-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    insightedge-enterprise-operator2-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cockroachdb-certified-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    appranix-cps-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    cloudbees-ci-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    aikit-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cyberarmor-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-express-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    data-explorer-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    op-svc-jenkins-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hazelcast-jet-enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    anzo-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    nutanixcsioperator-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    anaconda-team-edition-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    akka-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    yugabyte-platform-operator-bundle-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-healthcare-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    densify-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    couchbase-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    neuvector-certified-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    timemachine-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cert-manager-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k10-kasten-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    traefikee-redhat-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rapidbiz-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-certifai-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cnvrg-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mf-cics-ts-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mf-cics-tg-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    as400rpc-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kpow-io-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    percona-server-mongodb-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ako-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    orca-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    starburst-enterprise-helm-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    seldon-deploy-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    model-builder-for-vision-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-enterprise-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    seldon-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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: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)
    • + +
    +
    +
      + +
    +
    jtrac-app-operator-rhmp +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    snyk-operator-marketplace-rhmp +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rocketchat-operator-certified +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vfunction-server-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    perceptilabs-operator-package-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    anzograph-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    can-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    iomesh-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubeturbo-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    zabbix-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    growth-stack-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    percona-xtradb-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    db2-zos-db-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    atomicorp-helm-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeplus-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    linstor-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    joget-dx-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.13 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.14 - (label=v4.5-v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.15 - (label=v4.5-v4.8,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    armory-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • v1alpha2
    • + +
    +
    +
      + +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hpe-ezmeral-csi-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • hpe-ezmeral-csi-operator.v1.0.0 - (label=v4.4,v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • hpe-ezmeral-csi-operator.v1.0.4 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    citrix-cpx-with-ingress-controller-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    entando-k8s-operator-rhmp +
      + +
    +
    +
      + +
    • 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-pr3 - (label=v4.6,max=not set,channels=[alpha beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    xcrypt-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ivory-server-app-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    redis-enterprise-operator-cert-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      + +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cpx-cic-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kong-offline-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    stonebranch-universalagent-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    cic-operator-with-crds-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    minio-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cortex-fabric-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    anzounstructured-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    instana-agent-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubemq-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vprotect-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cloudhedge-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    presto-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    hpe-csi-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mongodb-enterprise-advanced-ibm-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ovms-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    portshift-controller-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    oneagent-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    nastel-navigator-operator-certified-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gpu-operator-certified-rhmp +
      + +
    +
    +
      + +
    • v1.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    storageos2-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • storageosoperator.v2.4.1 - (label=v4.5-v4.8,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nastel-xray-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k8s-triliovault-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • cluster
    • + +
    • namespaced
    • + +
    +
    +
      + +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    crunchy-postgres-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v5
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openunison-ocp-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aws-event-sources-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    runtime-component-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    datadog-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    +
      + +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    +
    + + + diff --git a/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html new file mode 100644 index 00000000..b64d8b01 --- /dev/null +++ b/testdata/reports/redhat_redhat_marketplace_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-06.html @@ -0,0 +1,3694 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-marketplace-index:v4.9
    • +
    • Image ID: sha256:99e253d6b5b8df9f28813d2bed4f829499d6a598c1b743e93d1ee46ebc4c4adc
    • +
    • Image Created at: 2021-09-03T13:22:03.743881145Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    mongodb-enterprise-rhmp +
      + +
    • CRD
    • + +
    • UNKNOWN
    • + +
    +
    +
      + +
    • 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:YES,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.4 - (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)
    • + +
    +
    +
      + +
    +
    +
      + +
    +
    +
      + +
    +
    +
      + +
    +
    +
      + +
    • cockroach-operator.v2.0.1 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • op-svc-jenkins.v0.7.2 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    uma-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • uma-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.4.0-32 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-28 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • uma-operator.v21.6.0-29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-certifai-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    • cortex-certifai-operator.v1.3.10 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.11-rc.4 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.2 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.3 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.4 - (label=v4.6,v4.5,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cortex-certifai-operator.v1.3.9 - (label=v4.5,v4.6,max=4.8,channels=[beta stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hpe-csi-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • hpe-csi-operator.v2.0.0 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cortex-fabric-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    cloudhedge-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cloudhedge.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cloudhedge.v1.0.6 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rocketchat-operator-certified +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • rocketchat-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gpu-operator-certified-rhmp +
      + +
    +
    +
      + +
    • v1.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • gpu-operator-certified.v1.8.0 - (label=v4.6,max=not set,channels=[v1.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rapidbiz-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rapidbiz-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    anaconda-team-edition-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • anaconda-team-edition.v6.1.3 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aqua-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • latest
    • + +
    • alpha
    • + +
    +
    +
      + +
    • 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:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    linstor-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • linstor-operator.v1.5.1 - (label=v4.6,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    stonebranch-universalagent-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    cert-manager-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • cert-manager-operator.v0.15.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v0.15.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cert-manager-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    growth-stack-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    mongodb-enterprise-advanced-ibm-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • mongodb-enterprise-advanced-ibm.v1.6.3 - (label=v4.6,v4.5,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    percona-server-mongodb-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-server-mongodb-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k10-kasten-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • stable
    • + +
    +
    +
      + +
    • k10-helm-operator.2.5.18 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.3.0.11007 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.5003 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k10-kasten-operator.4.0.6000 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    perceptilabs-operator-package-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    nutanixcsioperator-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • nutanixcsioperator.v0.1.3 - (label=v4.6,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    model-builder-for-vision-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • ibm-modelbuilder-for-vision.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kpow-io-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kpow-io.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    iomesh-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • iomesh-operator.v0.0.1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    aws-event-sources-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • aws-sources-operator.v0.2.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.2.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • aws-sources-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    portshift-controller-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    joget-dx-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-dx-openshift-operator.v0.0.10 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.11 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • joget-dx-openshift-operator.v0.0.12 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eddi-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eddi-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    timemachine-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • time-machine-operator4.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cass-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubeturbo-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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-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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    seldon-deploy-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • alpha
    • + +
    +
    +
      + +
    • seldon-deploy-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • seldon-deploy-operator.v1.0.0 - (label=v4.6,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.0 - (label=v4.7,max=not set,channels=[stable alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • seldon-deploy-operator.v1.2.1 - (label=v4.7,max=not set,channels=[stable alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    insightedge-enterprise-operator2-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • insightedge-enterprise-operator.v15.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jtrac-app-operator-rhmp +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jtrac-app-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    node-red-operator-rhm-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • node-red-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ako-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ako-operator.v1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    aci-containers-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • aci-containers-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ccm-node-agent-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • ccm-node-agent-operator.v0.0.1 - (label=0.0.1,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    atomicorp-helm-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • atomicorp-helm-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    instana-agent-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    t8c-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cpx-cic-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cpx-cic-operator.v130.36.29 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • cpx-cic-operator.v130.47.103 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    citrix-cpx-with-ingress-controller-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-cpx-with-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    appranix-cps-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • deprecated
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    anzo-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzo-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    zabbix-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    open-enterprise-spinnaker-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • open-enterprise-spinnaker.v1.21.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cortex-healthcare-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    couchbase-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    entando-k8s-operator-rhmp +
      + +
    +
    +
      + +
    • 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-pr3 - (label=v4.6,max=not set,channels=[alpha beta],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    kubeplus-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubeplus.v1.0.5 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cyberarmor-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cyberarmor-operator.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    snyk-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • snyk-operator-marketplace.v1.41.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mf-cics-tg-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-tg-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    crunchy-postgres-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • v5
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • postgresoperator.v5.0.2 - (label=v4.6,max=not set,channels=[v5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    anzograph-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzograph-operator.v2.0.102 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    redis-enterprise-operator-cert-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      + +
    • redis-enterprise-operator-preview.v6.0.20-4 - (label=v4.5,v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    memql-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    aikit-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • aikit-operator.2021.2.0 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    akka-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • akka-cluster-operator-certified.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cnvrg-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • cnvrg-operator.v0.352.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    fep-ansible-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • fujitsu-enterprise-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vfunction-server-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • vfunction-server-operator.v2.2.469 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    data-explorer-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ovms-operator-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • openvino-operator.v0.0.1 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cockroachdb-certified-rhmp +
      + +
    +
    +
      + +
    • beta
    • + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • cockroach-operator.v2.1.0 - (label=v4.6,max=not set,channels=[beta stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cloudbees-ci-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • cloudbees-ci.v3.34.1 - (label=v4.7,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cortex-hub-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    robin-storage-express-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    cic-operator-with-crds-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-api-gateway-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    db2-zos-db-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • db2-zos-db-operator.v0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    federatorai-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • federatorai.v4.6.1-2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    starburst-enterprise-helm-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • starburst-enterprise-helm-operator.v354.0.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    runtime-component-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • beta
    • + +
    +
    +
      + +
    • runtime-component-operator.v0.7.0 - (label=v4.6,v4.5,max=4.8,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    presto-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    percona-xtradb-cluster-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • percona-xtradb-cluster-operator.v1.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    hazelcast-enterprise-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    orca-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    minio-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • minio-operator.v4.1.2 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    op-svc-jenkins-rhmp +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • op-svc-jenkins.v0.8.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ivory-server-app-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • ivory-server-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    robin-storage-trial-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-trial.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    appdynamics-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • appdynamics-operator.v0.6.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mf-cics-ts-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • mf-cics-ts-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    k8s-triliovault-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • cluster
    • + +
    • namespaced
    • + +
    +
    +
      + +
    • k8s-triliovault-cluster.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[cluster namespaced],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • k8s-triliovault-cluster.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[cluster],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    datadog-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • beta
    • + +
    +
    +
      + +
    • datadog-operator.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datadog-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    can-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • can-operator.v0.0.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    anzounstructured-operator-rhmp +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • anzounstructured-operator.v2.0.101 - (label=v4.5,v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    hazelcast-jet-enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    robin-storage-enterprise-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • robin-storage-enterprise.v5.3.4-156-3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openunison-ocp-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • openunison.1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sysdig-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • sysdig-operator.v1.8.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    joget-openshift-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • joget-openshift-operator.v0.0.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    yugabyte-platform-operator-bundle-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • yugabyte-platform-operator.v0.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • yugabyte-platform-operator.v0.0.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    oneagent-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    kong-offline-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kong.v0.3.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    enterprise-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • enterprise-operator.v0.1.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    densify-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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)
    • + +
    +
    +
      + +
    +
    armory-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • v1alpha2
    • + +
    +
    +
      + +
    • armory-operator.v1.2.0-ubi - (label=v4.5,v4.6,max=4.8,channels=[v1alpha2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    neuvector-certified-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    seldon-operator-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 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: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)
    • + +
    +
    +
      + +
    +
    vprotect-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • vprotect-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    xcrypt-operator-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • zts-xcrypt-operator.v0.0.14 - (label=v4.3,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    citrix-ingress-controller-operator-rhmp +
      + +
    • ClusterRole
    • + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • citrix-ingress-controller-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    traefikee-redhat-certified-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • traefikee-redhat-certified.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubemq-operator-marketplace-rhmp +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • kubemq-operator.v0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v0.5.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.2.6 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.3.5 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubemq-operator.v1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    as400rpc-operator-rhmp +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • as400rpc-operator.v0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    +
    + + + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html index ec08768c..d172d7d3 100644 --- a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html @@ -102,68 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    - - - - - - - - - - - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
      - -
    • CRD
    • - -
    -
    -
      - -
    -
    -
      - -
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
      - -
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • metering-operator.4.6.0-202107292226 - (label==v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -178,57 +123,33 @@
    Partially complying with the recommendations
    - + @@ -240,7 +161,7 @@
    Partially complying with the recommendations
    - + @@ -294,7 +205,7 @@
    Partially complying with the recommendations
    - + @@ -344,7 +235,7 @@
    Partially complying with the recommendations
    - + @@ -374,27 +265,57 @@
    Partially complying with the recommendations
    - + @@ -406,7 +327,7 @@
    Partially complying with the recommendations
    - + @@ -444,7 +401,7 @@
    Partially complying with the recommendations
    - + @@ -476,25 +431,39 @@
    Partially complying with the recommendations
    - + - + @@ -506,7 +475,7 @@
    Partially complying with the recommendations
    - + @@ -554,7 +533,7 @@
    Partially complying with the recommendations
    - + @@ -612,7 +563,7 @@
    Partially complying with the recommendations
    - + @@ -642,7 +597,7 @@
    Partially complying with the recommendations
    - + @@ -676,7 +633,7 @@
    Partially complying with the recommendations
    - + @@ -750,33 +695,27 @@
    Partially complying with the recommendations
    - + @@ -788,7 +727,7 @@
    Partially complying with the recommendations
    - + @@ -830,7 +781,7 @@
    Partially complying with the recommendations
    - + @@ -864,7 +829,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -922,7 +905,7 @@
    Partially complying with the recommendations
    - + @@ -966,7 +963,7 @@
    Partially complying with the recommendations
    - + @@ -1010,18 +993,10 @@
    Partially complying with the recommendations
    - + @@ -1054,7 +1023,7 @@
    Partially complying with the recommendations
    - + @@ -1086,7 +1055,7 @@
    Partially complying with the recommendations
    - + @@ -1116,7 +1099,7 @@
    Partially complying with the recommendations
    - + @@ -1150,7 +1137,7 @@
    Partially complying with the recommendations
    - + @@ -1182,7 +1169,7 @@
    Partially complying with the recommendations
    - + @@ -1220,7 +1227,7 @@
    Partially complying with the recommendations
    - + @@ -1254,7 +1265,7 @@
    Partially complying with the recommendations
    - + @@ -1284,7 +1295,7 @@
    Partially complying with the recommendations
    - + @@ -1342,7 +1329,7 @@
    Partially complying with the recommendations
    - + @@ -1456,7 +1363,7 @@
    Partially complying with the recommendations
    - + @@ -1486,7 +1393,7 @@
    Partially complying with the recommendations
    - + - + @@ -1546,7 +1459,7 @@
    Partially complying with the recommendations
    - + @@ -1582,7 +1573,7 @@
    Partially complying with the recommendations
    - + @@ -1649,7 +1628,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    3scale-operatorgatekeeper-operator-product
    • CRD
    • +
    • ClusterRole
    • +
      -
    • threescale-2.9
    • - -
    • threescale-2.10
    • - -
    • threescale-2.8
    • - -
    • threescale-2.7
    • - -
    • threescale-2.6
    • +
    • stable
      -
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.6 threescale-2.10 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    amq-brokereap
      @@ -251,14 +172,6 @@
      Partially complying with the recommendations
      -
    • current
    • - -
    • 7.x
    • - -
    • 7.8.x
    • - -
    • current-76
    • -
    • alpha
    @@ -266,23 +179,21 @@
    Partially complying with the recommendations
      -
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x current-76],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x current-76 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.1-opr-4 - (label=v4.5-v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.2-opr-1 - (label=v4.5-v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-pipelines-operator-rhcluster-kube-descheduler-operator
      @@ -305,34 +216,14 @@
      Partially complying with the recommendations
      -
    • ocp-4.4
    • - -
    • ocp-4.5
    • - -
    • ocp-4.6
    • - -
    • preview
    • - -
    • stable
    • +
    • 4.6
      -
    • openshift-pipelines-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[ocp-4.4 ocp-4.5 ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • openshift-pipelines-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.5 ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.5 ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterkubedescheduleroperator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-kube-descheduler-operatorlocal-storage-operator
      @@ -362,7 +253,7 @@
      Partially complying with the recommendations
      -
    • clusterkubedescheduleroperator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • local-storage-operator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    cincinnati-operatormtc-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • v1
    • +
    • release-v1.4
    • + +
    • release-v1.5
    • + +
    • release-v1.3
    • + +
    • release-v1.2
      -
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.2.5 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5 release-v1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.2 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.7 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.1 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-apicuritokiali-ossm
      @@ -417,22 +338,58 @@
      Partially complying with the recommendations
      -
    • fuse-apicurito-7.7.x
    • - -
    • fuse-apicurito-7.8.x
    • - -
    • fuse-apicurito-7.9.x
    • +
    • stable
      -
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    awx-resource-operatorclusterresourceoverride
      @@ -455,16 +412,14 @@
      Partially complying with the recommendations
      -
    • release-0.1
    • +
    • 4.6
      -
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterresourceoverride-operator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    ansible-automation-platform-operatorocs-operator
      -
    • CRD
    • +
    • ClusterRole
    • -
    -
    -
      +
    • ClusterRoleBinding
    • + +
    • Role
    • + +
    • RoleBinding
    • + +
    • CRD
    • + +
    +
    +
      -
    • early-access
    • +
    • stable-4.6
    • + +
    • eus-4.6
    • + +
    • stable-4.5
      -
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ocs-operator.v4.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable-4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • ocs-operator.v4.6.6 - (label=v4.5-v4.7,max=4.8,channels=[stable-4.6 eus-4.6],head:YES,defaultChannel:YES, deprecated:NO)
    apicast-operatorquay-operator
      @@ -517,32 +486,42 @@
      Partially complying with the recommendations
      -
    • threescale-2.9
    • +
    • quay-v3.5
    • -
    • threescale-2.10
    • +
    • quay-v3.4
    • -
    • threescale-2.8
    • +
    • quay-v3.3
      -
    • apicast-operator.v0.2.0 - (label=v4.5,max=not set,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    container-security-operatoropenshift-jenkins-operator
      @@ -565,42 +544,14 @@
      Partially complying with the recommendations
      -
    • quay-v3.4
    • - -
    • quay-v3.5
    • - -
    • quay-v3.3
    • +
    • alpha
      -
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • container-security-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    clusterresourceoverriderhsso-operator
      @@ -623,14 +574,18 @@
      Partially complying with the recommendations
      -
    • 4.6
    • +
    • alpha
      -
    • clusterresourceoverride-operator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    web-terminaljws-operator
      @@ -660,11 +615,13 @@
      Partially complying with the recommendations
      -
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • web-terminal.v1.1.1 - (label==v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    kiali-ossm3scale-operator
      @@ -687,58 +644,46 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    • threescale-2.8
    • + +
    • threescale-2.7
    • + +
    • threescale-2.6
      -
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.6 threescale-2.10 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    gatekeeper-operator-productawx-resource-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • release-0.1
      -
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    amq7-interconnect-operatoramq-broker
      @@ -799,26 +738,38 @@
      Partially complying with the recommendations
      -
    • 1.2.0
    • +
    • current
    • -
    • 1.10.x
    • +
    • 7.x
    • + +
    • 7.8.x
    • + +
    • current-76
    • + +
    • alpha
      -
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x current-76],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x current-76 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-4 - (label=v4.5-v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-1 - (label=v4.5-v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    smart-gateway-operatorapicast-operator
      @@ -841,18 +792,32 @@
      Partially complying with the recommendations
      -
    • stable-1.3
    • +
    • threescale-2.9
    • -
    • stable-1.2
    • +
    • threescale-2.10
    • + +
    • threescale-2.8
      -
    • smart-gateway-operator.v2.2.1628154027 - (label=v4.5-v4.6,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • apicast-operator.v0.2.0 - (label=v4.5,max=not set,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • smart-gateway-operator.v3.0.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    quay-operatoramq7-interconnect-operator
      @@ -875,42 +840,60 @@
      Partially complying with the recommendations
      -
    • quay-v3.5
    • - -
    • quay-v3.4
    • +
    • 1.2.0
    • -
    • quay-v3.3
    • +
    • 1.10.x
      -
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    service-telemetry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.3
    • + +
    • stable-1.2
    • + +
    +
    +
      -
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-telemetry-operator.v1.2.1628153378 - (label=v4.5-v4.6,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • service-telemetry-operator.v1.3.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    eapquay-bridge-operator
      @@ -933,28 +916,42 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • quay-v3.3
    • + +
    • quay-v3.5
    • + +
    • quay-v3.4
      -
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    kubevirt-hyperconvergedopenshift-gitops-operator
      @@ -977,28 +974,14 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • preview
      -
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.5 - (label==v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.6 - (label==v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.7 - (label==v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    ocs-operatoransible-automation-platform-operator
      -
    • ClusterRole
    • - -
    • ClusterRoleBinding
    • - -
    • Role
    • - -
    • RoleBinding
    • -
    • CRD
    @@ -1029,20 +1004,14 @@
    Partially complying with the recommendations
      -
    • stable-4.6
    • - -
    • eus-4.6
    • - -
    • stable-4.5
    • +
    • early-access
      -
    • ocs-operator.v4.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable-4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • ocs-operator.v4.6.6 - (label=v4.5-v4.7,max=4.8,channels=[stable-4.6 eus-4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    amq-broker-ltsamq7-cert-manager-operator
      @@ -1067,14 +1036,14 @@
      Partially complying with the recommendations
    • alpha
    • +
    • 1.x
    • +
      -
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    local-storage-operatorkubevirt-hyperconverged
      @@ -1097,14 +1066,28 @@
      Partially complying with the recommendations
      -
    • 4.6
    • +
    • stable
      -
    • local-storage-operator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.5 - (label==v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.6 - (label==v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.7 - (label==v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    service-telemetry-operatorfuse-apicurito
      @@ -1127,18 +1110,22 @@
      Partially complying with the recommendations
      -
    • stable-1.3
    • +
    • fuse-apicurito-7.7.x
    • -
    • stable-1.2
    • +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.9.x
      -
    • service-telemetry-operator.v1.2.1628153378 - (label=v4.5-v4.6,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • service-telemetry-operator.v1.3.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    amq7-cert-manager-operatoramq-broker-lts
      @@ -1163,14 +1150,14 @@
      Partially complying with the recommendations
    • alpha
    • -
    • 1.x
    • -
      -
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    amq-broker-rhel8container-security-operator
      @@ -1193,22 +1180,42 @@
      Partially complying with the recommendations
      -
    • 7.8.x
    • +
    • quay-v3.4
    • -
    • 7.x
    • +
    • quay-v3.5
    • + +
    • quay-v3.3
      -
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.1-opr-4-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.2-opr-1-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.2-opr-2-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    rhsso-operatoramq-broker-rhel8
      @@ -1231,18 +1238,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 7.8.x
    • + +
    • 7.x
      -
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.1-opr-4-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.2-opr-1-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-2-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-jenkins-operatornfd
      @@ -1265,14 +1276,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 4.6
      -
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nfd.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    quay-bridge-operatorweb-terminal
      @@ -1295,42 +1306,18 @@
      Partially complying with the recommendations
      -
    • quay-v3.3
    • - -
    • quay-v3.5
    • - -
    • quay-v3.4
    • +
    • alpha
      -
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.1.1 - (label==v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    servicemeshoperatorsmart-gateway-operator
      @@ -1353,98 +1340,18 @@
      Partially complying with the recommendations
      -
    • 1.0
    • +
    • stable-1.3
    • -
    • stable
    • +
    • stable-1.2
      -
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • smart-gateway-operator.v2.2.1628154027 - (label=v4.5-v4.6,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • smart-gateway-operator.v3.0.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    nfdvertical-pod-autoscaler
      @@ -1474,7 +1381,7 @@
      Partially complying with the recommendations
      -
    • nfd.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • verticalpodautoscaler.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    vertical-pod-autoscaler
      @@ -1497,44 +1404,50 @@
      Partially complying with the recommendations
      -
    • 4.6
    • -
      -
    • verticalpodautoscaler.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • metering-operator.4.6.0-202107292226 - (label==v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    openshift-gitops-operatorcincinnati-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • preview
    • +
    • v1
      -
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    jws-operatorservicemeshoperator
      @@ -1557,20 +1470,98 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • 1.0
    • + +
    • stable
      -
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    mtc-operatoropenshift-pipelines-operator-rh
      @@ -1593,46 +1584,34 @@
      Partially complying with the recommendations
      -
    • release-v1.4
    • +
    • ocp-4.4
    • -
    • release-v1.5
    • +
    • ocp-4.5
    • -
    • release-v1.3
    • +
    • ocp-4.6
    • -
    • release-v1.2
    • +
    • preview
    • + +
    • stable
      -
    • mtc-operator.v1.2.5 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5 release-v1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.3.2 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.4.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-pipelines-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[ocp-4.4 ocp-4.5 ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-pipelines-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.5 ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.5 ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.7 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.5.1 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -1664,7 +1643,7 @@
    Fully complying with the recommendations
    - + - + - + @@ -1836,7 +1793,7 @@
    Fully complying with the recommendations
    - + + + + + + + + + - + - + @@ -2002,55 +2063,47 @@
    Fully complying with the recommendations
    - + - + - + - + - + - - - - - - - - - + @@ -2366,35 +2379,65 @@
    Fully complying with the recommendations
    - + - + - + - + @@ -2495,116 +2554,56 @@
    Fully complying with the recommendations
    - + + - - + @@ -2625,14 +2624,18 @@
    Fully complying with the recommendations
    - + @@ -2653,14 +2656,16 @@
    Fully complying with the recommendations
    - + @@ -2681,26 +2686,14 @@
    Fully complying with the recommendations
    - + @@ -2725,15 +2716,19 @@
    Fully complying with the recommendations
    @@ -2822,7 +2817,7 @@
    Fully complying with the recommendations
    - + @@ -2843,18 +2838,14 @@
    Fully complying with the recommendations
    - + - + @@ -2937,7 +2914,9 @@
    Fully complying with the recommendations
    diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html index 18c71fcc..e838b4a8 100644 --- a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html @@ -102,70 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    jaeger-productamq-streams
      @@ -1677,131 +1656,109 @@
      Fully complying with the recommendations
    • stable
    • -
    • 1.24-stable
    • - -
    • 1.17-stable
    • +
    • amq-streams-1.7.x
    • -
    • 1.20-stable
    • +
    • amq-streams-1.8.x
    • -
    • tech-preview
    • +
    • amq-streams-1.x
    • -
    • 1.13-stable
    • +
    • amq-streams-1.6.x
      -
    • jaeger-operator.v1.13.2-1 - (label=v4.5,max=4.8,channels=[1.13-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amqstreams.v1.5.4 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amqstreams.v1.6.0 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v1.20.5 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amqstreams.v1.6.1 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amqstreams.v1.6.2 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[stable 1.24-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[stable amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    amq-streamsmetering-ocp
      -
    • CRD
    • -
      -
    • stable
    • - -
    • amq-streams-1.7.x
    • - -
    • amq-streams-1.8.x
    • - -
    • amq-streams-1.x
    • - -
    • amq-streams-1.6.x
    • +
    • 4.6
      -
    • amqstreams.v1.5.4 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.0 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.1 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.2 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[stable amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • metering-operator.4.6.0-202108162128 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    red-hat-camel-kwindows-machine-config-operator
      -
    • CRD
    • -
      -
    • techpreview
    • +
    • stable
    • -
    • 1.4.x
    • +
    • preview
      -
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windows-machine-config-operator.v1.0.2 - (label=v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.3 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.4 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.5 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.5-0.1625103163.p - (label==v4.6,max=not set,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    datagridperformance-addon-operator
      @@ -1847,92 +1804,134 @@
      Fully complying with the recommendations
      -
    • 8.1.x
    • +
    • 4.4
    • -
    • 8.2.x
    • +
    • 4.5
    • -
    • 8.0.x
    • +
    • 4.6
      -
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.4.1 - (label=v4.5,max=4.8,channels=[4.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.5.4 - (label=v4.5,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.6.4 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    businessautomation-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    rhpam-kogito-operatorsubmariner
      +
    • CRD
    • +
      -
    • 7.x
    • +
    • alpha
    • + +
    • alpha-0.9
    • + +
    • alpha-0.8
      +
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • submariner.v0.8.2 - (label=v4.5-v4.7,max=not set,channels=[alpha-0.8],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-onlineadvanced-cluster-management
      @@ -1943,27 +1942,89 @@
      Fully complying with the recommendations
      -
    • fuse-online-v7.8.x
    • +
    • release-2.2
    • -
    • 7.9.x
    • +
    • release-2.1
    • -
    • fuse-online-7.7.x
    • +
    • release-2.3
    • + +
    • release-2.0
      -
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.11 - (label==v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.10 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.7 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.8 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.9 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    submarinerptp-operator
      -
    • CRD
    • -
      -
    • alpha
    • - -
    • alpha-0.9
    • - -
    • alpha-0.8
    • +
    • 4.6
      -
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • submariner.v0.8.2 - (label=v4.5-v4.7,max=not set,channels=[alpha-0.8],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ptp-operator.4.6.0-202107291702 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    codeready-workspacesrhacs-operator
      -
    • CRD
    • -
      +
    • rhacs-3.62
    • + +
    • rhacs-3.64
    • +
    • latest
    @@ -2058,47 +2111,27 @@
    Fully complying with the recommendations
      -
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.62 rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    performance-addon-operatorklusterlet-product
      @@ -2109,168 +2142,148 @@
      Fully complying with the recommendations
      -
    • 4.4
    • - -
    • 4.5
    • +
    • release-2.2
    • -
    • 4.6
    • +
    • release-2.3
      -
    • performance-addon-operator.v4.4.1 - (label=v4.5,max=4.8,channels=[4.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • performance-addon-operator.v4.5.4 - (label=v4.5,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • performance-addon-operator.v4.6.4 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    windows-machine-config-operatorfuse-console
      +
    • CRD
    • +
      -
    • stable
    • +
    • fuse-console-7.7.x
    • -
    • preview
    • +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
      +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • windows-machine-config-operator.v1.0.2 - (label=v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windows-machine-config-operator.v1.0.3 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windows-machine-config-operator.v1.0.4 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windows-machine-config-operator.v1.0.5 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • windows-machine-config-operator.v1.0.5-0.1625103163.p - (label==v4.6,max=not set,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    rh-service-binding-operatordatagrid
      +
    • CRD
    • +
      -
    • preview
    • +
    • 8.1.x
    • -
    • beta
    • +
    • 8.2.x
    • + +
    • 8.0.x
      -
    -
    -
      - -
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[preview beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    amq-online -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-consolefuse-online
      @@ -2281,27 +2294,27 @@
      Fully complying with the recommendations
      -
    • fuse-console-7.7.x
    • - -
    • fuse-console-7.8.x
    • +
    • fuse-online-v7.8.x
    • 7.9.x
    • +
    • fuse-online-7.7.x
    • +
      -
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    sriov-network-operatorcodeready-workspaces
      +
    • CRD
    • +
      -
    • 4.6
    • +
    • latest
      +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • sriov-network-operator.4.6.0-202107300640 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    klusterlet-productred-hat-camel-k
      @@ -2405,76 +2448,90 @@
      Fully complying with the recommendations
      -
    • release-2.2
    • +
    • techpreview
    • -
    • release-2.3
    • +
    • 1.4.x
      -
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    compliance-operatoramq-online
      +
    • CRD
    • +
      -
    • 4.6
    • - -
    • release-0.1
    • +
    • stable
      +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • compliance-operator.v0.1.32 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    costmanagement-metrics-operatorcompliance-operator
      @@ -2483,7 +2540,9 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • 4.6
    • + +
    • release-0.1
      -
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • compliance-operator.v0.1.32 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    advanced-cluster-managementintegration-operator
      -
    • CRD
    • -
      -
    • release-2.2
    • - -
    • release-2.1
    • - -
    • release-2.3
    • - -
    • release-2.0
    • +
    • 1.x
      -
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.11 - (label==v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.10 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.7 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.8 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.1.9 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    metering-ocpskupper-operator
      @@ -2613,7 +2612,7 @@
      Fully complying with the recommendations
      -
    • 4.6
    • +
    • alpha
      -
    • metering-operator.4.6.0-202108162128 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ptp-operatorrhpam-kogito-operator
      @@ -2641,7 +2644,7 @@
      Fully complying with the recommendations
      -
    • 4.6
    • +
    • 7.x
      -
    • ptp-operator.4.6.0-202107291702 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    integration-operatorsriov-network-operator
      @@ -2669,7 +2674,7 @@
      Fully complying with the recommendations
      -
    • 1.x
    • +
    • 4.6
      -
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sriov-network-operator.4.6.0-202107300640 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    rhacs-operatorrh-service-binding-operator
      @@ -2709,11 +2702,9 @@
      Fully complying with the recommendations
      -
    • rhacs-3.62
    • - -
    • rhacs-3.64
    • +
    • preview
    • -
    • latest
    • +
    • beta
      -
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.62 rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[preview beta],head:YES,defaultChannel:YES, deprecated:NO)
    skupper-operatorelasticsearch-operator
      @@ -2831,7 +2826,7 @@
      Fully complying with the recommendations
      -
    • alpha
    • +
    • 4.6
      -
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.4.6.0-202107291702 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    businessautomation-operatorjaeger-product
      @@ -2867,56 +2858,42 @@
      Fully complying with the recommendations
    • stable
    • +
    • 1.24-stable
    • + +
    • 1.17-stable
    • + +
    • 1.20-stable
    • + +
    • tech-preview
    • + +
    • 1.13-stable
    • +
      -
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.13.2-1 - (label=v4.5,max=4.8,channels=[1.13-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.20.5 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[stable 1.24-stable],head:YES,defaultChannel:YES, deprecated:NO)
    elasticsearch-operatorcostmanagement-metrics-operator
      @@ -2925,7 +2902,7 @@
      Fully complying with the recommendations
      -
    • 4.6
    • +
    • stable
      -
    • elasticsearch-operator.4.6.0-202107291702 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    - - - - - - - - - - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    -
      - -
    • CRD
    • - -
    -
    -
      - -
    -
    -
      - -
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
      - -
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • performance-addon-operator.v4.7.4 - (label==v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -180,7 +123,7 @@
    Partially complying with the recommendations
    - + @@ -216,7 +177,7 @@
    Partially complying with the recommendations
    - + @@ -250,18 +213,10 @@
    Partially complying with the recommendations
    - + @@ -296,7 +255,7 @@
    Partially complying with the recommendations
    - + @@ -328,7 +329,7 @@
    Partially complying with the recommendations
    - + @@ -386,7 +391,7 @@
    Partially complying with the recommendations
    - + @@ -420,7 +425,7 @@
    Partially complying with the recommendations
    - + @@ -456,7 +457,7 @@
    Partially complying with the recommendations
    - + @@ -486,10 +487,18 @@
    Partially complying with the recommendations
    - + @@ -520,7 +533,7 @@
    Partially complying with the recommendations
    - + @@ -562,7 +567,7 @@
    Partially complying with the recommendations
    - + @@ -636,27 +601,33 @@
    Partially complying with the recommendations
    - + @@ -668,27 +639,25 @@
    Partially complying with the recommendations
    - + @@ -744,25 +713,27 @@
    Partially complying with the recommendations
    - + @@ -774,7 +745,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -842,7 +859,7 @@
    Partially complying with the recommendations
    - + @@ -952,7 +949,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -1014,7 +987,7 @@
    Partially complying with the recommendations
    - + @@ -1048,7 +1023,7 @@
    Partially complying with the recommendations
    - + @@ -1090,7 +1081,7 @@
    Partially complying with the recommendations
    - + @@ -1202,33 +1171,25 @@
    Partially complying with the recommendations
    - + @@ -1240,7 +1201,7 @@
    Partially complying with the recommendations
    - + @@ -1278,7 +1259,7 @@
    Partially complying with the recommendations
    - + - + @@ -1450,7 +1329,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + + + + + + + + + @@ -1563,13 +1490,65 @@
    Partially complying with the recommendations
    + + + + + + + +
    web-terminalamq-broker
      @@ -191,6 +134,14 @@
      Partially complying with the recommendations
      +
    • 7.8.x
    • + +
    • current
    • + +
    • 7.x
    • + +
    • current-76
    • +
    • alpha
    @@ -198,13 +149,23 @@
    Partially complying with the recommendations
      -
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x current-76],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x current-76 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-4 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-1 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x current 7.x],head:YES,defaultChannel:YES, deprecated:NO)
    clusterresourceoverridejws-operator
      @@ -227,18 +188,20 @@
      Partially complying with the recommendations
      -
    • 4.7
    • - -
    • 4.6
    • +
    • alpha
      -
    • clusterresourceoverride-operator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • clusterresourceoverride-operator.4.7.0-202107292319 - (label==v4.7,max=4.8,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ocs-operatoramq7-interconnect-operator
      -
    • ClusterRole
    • - -
    • ClusterRoleBinding
    • - -
    • Role
    • - -
    • RoleBinding
    • -
    • CRD
    @@ -269,22 +224,26 @@
    Partially complying with the recommendations
      -
    • stable-4.7
    • - -
    • stable-4.6
    • +
    • 1.2.0
    • -
    • eus-4.6
    • +
    • 1.10.x
      -
    • ocs-operator.v4.6.6 - (label=v4.5-v4.7,max=4.8,channels=[stable-4.6 eus-4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • ocs-operator.v4.7.2 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ocs-operator.v4.7.3 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    amq-broker-ltskiali-ossm
      @@ -307,16 +266,58 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    quay-bridge-operator3scale-operator
      @@ -339,42 +340,46 @@
      Partially complying with the recommendations
      -
    • quay-v3.5
    • +
    • threescale-2.8
    • -
    • quay-v3.4
    • +
    • threescale-2.9
    • -
    • quay-v3.3
    • +
    • threescale-2.10
    • + +
    • threescale-2.7
    • + +
    • threescale-2.6
      -
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.6 threescale-2.7],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    smart-gateway-operatorrhsso-operator
      @@ -397,18 +402,18 @@
      Partially complying with the recommendations
      -
    • stable-1.3
    • - -
    • stable-1.2
    • +
    • alpha
      -
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • smart-gateway-operator.v3.0.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    jws-operatorawx-resource-operator
      @@ -431,20 +436,16 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • release-0.1
      -
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    ansible-automation-platform-operatorvertical-pod-autoscaler
      @@ -467,14 +468,14 @@
      Partially complying with the recommendations
      -
    • early-access
    • +
    • 4.7
      -
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • verticalpodautoscaler.4.7.0-202107292319 - (label==v4.7,max=4.8,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    service-telemetry-operatorocs-operator
      +
    • ClusterRole
    • + +
    • ClusterRoleBinding
    • + +
    • Role
    • + +
    • RoleBinding
    • +
    • CRD
    @@ -497,18 +506,22 @@
    Partially complying with the recommendations
      -
    • stable-1.2
    • +
    • stable-4.7
    • -
    • stable-1.3
    • +
    • stable-4.6
    • + +
    • eus-4.6
      -
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • ocs-operator.v4.6.6 - (label=v4.5-v4.7,max=4.8,channels=[stable-4.6 eus-4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • service-telemetry-operator.v1.3.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ocs-operator.v4.7.2 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ocs-operator.v4.7.3 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:YES,defaultChannel:YES, deprecated:NO)
    amq7-interconnect-operatorsmart-gateway-operator
      @@ -531,26 +544,18 @@
      Partially complying with the recommendations
      -
    • 1.2.0
    • +
    • stable-1.3
    • -
    • 1.10.x
    • +
    • stable-1.2
      -
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • smart-gateway-operator.v3.0.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    kiali-ossmservice-telemetry-operator
      @@ -573,58 +578,18 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • stable-1.2
    • + +
    • stable-1.3
      -
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-telemetry-operator.v1.3.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    awx-resource-operatorgatekeeper-operator-product
    • CRD
    • +
    • ClusterRole
    • +
      -
    • release-0.1
    • +
    • stable
      -
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cincinnati-operatorrhmtv-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • v1
    • +
    • release-v2.0.0-beta
      -
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    vertical-pod-autoscalercincinnati-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • 4.7
    • +
    • v1
      -
    • verticalpodautoscaler.4.7.0-202107292319 - (label==v4.7,max=4.8,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    amq-broker-rhel8servicemeshoperator
      @@ -785,52 +756,98 @@
      Partially complying with the recommendations
      -
    • 7.x
    • +
    • stable
    • -
    • 7.8.x
    • +
    • 1.0
      -
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.1-opr-4-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.2-opr-1-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.2-opr-2-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    openshift-jenkins-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:YES,defaultChannel:YES, deprecated:NO)
    3scale-operatoropenshift-gitops-operator
      @@ -853,46 +870,26 @@
      Partially complying with the recommendations
      -
    • threescale-2.8
    • - -
    • threescale-2.9
    • - -
    • threescale-2.10
    • - -
    • threescale-2.7
    • +
    • stable
    • -
    • threescale-2.6
    • +
    • preview
      -
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.6 threescale-2.7],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    amq7-cert-manager-operatorfuse-apicurito
      @@ -963,46 +960,22 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • fuse-apicurito-7.8.x
    • -
    • 1.x
    • +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.9.x
      -
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    -
    rhmtv-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • release-v2.0.0-beta
    • - -
    -
    -
      +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    rhsso-operatorweb-terminal
      @@ -1032,11 +1005,13 @@
      Partially complying with the recommendations
      -
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-gitops-operatorquay-operator
      @@ -1059,26 +1034,42 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • quay-v3.4
    • -
    • preview
    • +
    • quay-v3.5
    • + +
    • quay-v3.3
      -
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    amq-brokeramq-broker-lts
      @@ -1101,14 +1092,6 @@
      Partially complying with the recommendations
      -
    • 7.8.x
    • - -
    • current
    • - -
    • 7.x
    • - -
    • current-76
    • -
    • alpha
    @@ -1116,23 +1099,9 @@
    Partially complying with the recommendations
      -
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x current-76],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x current-76 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v7.8.1-opr-4 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.2-opr-1 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x current 7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gatekeeper-operator-productopenshift-jenkins-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • alpha
      -
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-apicuritoquay-bridge-operator
      @@ -1251,22 +1212,42 @@
      Partially complying with the recommendations
      -
    • fuse-apicurito-7.8.x
    • +
    • quay-v3.5
    • -
    • fuse-apicurito-7.7.x
    • +
    • quay-v3.4
    • -
    • fuse-apicurito-7.9.x
    • +
    • quay-v3.3
      -
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    servicemeshoperator
      @@ -1289,110 +1270,32 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • 1.0
    • -
      -
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      +
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.7.4 - (label==v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    quay-operatorclusterresourceoverride
      @@ -1403,42 +1306,18 @@
      Partially complying with the recommendations
      -
    • quay-v3.4
    • - -
    • quay-v3.5
    • +
    • 4.7
    • -
    • quay-v3.3
    • +
    • 4.6
      -
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterresourceoverride-operator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • clusterresourceoverride-operator.4.7.0-202107292319 - (label==v4.7,max=4.8,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    kubevirt-hyperconvergedansible-automation-platform-operator
      @@ -1461,36 +1340,84 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • early-access
      -
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    amq7-cert-manager-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • 1.x
    • + +
    +
    +
      -
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    amq-broker-rhel8 +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    +
    +
      -
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.1-opr-4-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.2-opr-1-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.6 - (label==v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.2-opr-2-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.6 - (label==v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    @@ -1584,65 +1563,37 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - - - - - - - - @@ -1965,34 +1822,6 @@
    Fully complying with the recommendations
    - - - - - - - - - - - - - - - - - + @@ -2220,55 +1999,51 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + @@ -2425,16 +2214,26 @@
    Fully complying with the recommendations
    - + @@ -2461,20 +2256,16 @@
    Fully complying with the recommendations
    - + - + - + - + @@ -2661,14 +2416,18 @@
    Fully complying with the recommendations
    - + @@ -2693,22 +2450,16 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html index 08896d03..c2aa0f83 100644 --- a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html @@ -102,15 +102,14 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - +
    -
    Not complying with the recommendations
    -
    service-registry-operatorrhpam-kogito-operator
      -
    • CRD
    • -
      -
    • 2.0.x
    • - -
    • 2.x
    • - -
    • serviceregistry-1.1
    • - -
    • serviceregistry-1.0
    • - -
    • serviceregistry-1
    • +
    • 7.x
      -
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-pipelines-operator-rhsubmariner
      @@ -1653,148 +1604,104 @@
      Fully complying with the recommendations
      -
    • preview
    • - -
    • stable
    • - -
    • ocp-4.6
    • +
    • alpha-0.8
    • -
    • ocp-4.5
    • +
    • alpha
    • -
    • ocp-4.4
    • +
    • alpha-0.9
      -
    • openshift-pipelines-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5 ocp-4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • openshift-pipelines-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • submariner.v0.8.2 - (label=v4.5-v4.7,max=not set,channels=[alpha-0.8],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • redhat-openshift-pipelines.v1.4.1 - (label=v4.7,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    submarinerelasticsearch-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • alpha-0.8
    • +
    • stable
    • -
    • alpha
    • +
    • stable-5.1
    • -
    • alpha-0.9
    • +
    • 4.6
    • + +
    • 5.0
      -
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.1.1-36 - (label=v4.7,max=4.8,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • submariner.v0.8.2 - (label=v4.5-v4.7,max=not set,channels=[alpha-0.8],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    amq-streamssriov-network-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • amq-streams-1.x
    • - -
    • amq-streams-1.8.x
    • - -
    • amq-streams-1.7.x
    • - -
    • amq-streams-1.6.x
    • +
    • 4.7
      -
    • amqstreams.v1.5.4 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.0 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.1 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.2 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[stable amq-streams-1.x amq-streams-1.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sriov-network-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    businessautomation-operatorfuse-console
      @@ -1805,58 +1712,34 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-console-7.7.x
      -
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    nfdred-hat-camel-k
      @@ -1867,55 +1750,29 @@
      Fully complying with the recommendations
      -
    • 4.6
    • +
    • 1.4.x
    • -
    • 4.7
    • +
    • techpreview
      -
    • nfd.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • nfd.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    file-integrity-operator -
      - -
    -
    -
      - -
    • 4.7
    • - -
    • release-0.1
    • - -
    -
    -
      +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    kubernetes-nmstate-operator -
      - -
    -
    -
      - -
    • 4.7
    • - -
    -
    -
      - -
    -
    -
      - -
    • kubernetes-nmstate-operator.4.7.0-202108041522 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    costmanagement-metrics-operator @@ -2024,47 +1853,7 @@
    Fully complying with the recommendations
    integration-operator -
      - -
    -
    -
      - -
    • 1.x
    • - -
    -
    -
      - -
    -
    -
      - -
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    codeready-workspacesklusterlet-product
      @@ -2075,47 +1864,37 @@
      Fully complying with the recommendations
      -
    • latest
    • +
    • release-2.2
    • + +
    • release-2.3
      -
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    red-hat-camel-kfile-integrity-operator
      -
    • CRD
    • -
      -
    • 1.4.x
    • +
    • 4.7
    • -
    • techpreview
    • +
    • release-0.1
      -
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    sriov-network-operatorcluster-kube-descheduler-operator
      +
    • CRD
    • +
      +
    • 4.6
    • +
    • 4.7
    @@ -2276,101 +2051,91 @@
    Fully complying with the recommendations
      +
    • clusterkubedescheduleroperator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • sriov-network-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterkubedescheduleroperator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-kube-descheduler-operatorrh-service-binding-operator
      -
    • CRD
    • -
      -
    • 4.6
    • +
    • beta
    • -
    • 4.7
    • +
    • preview
      -
    • clusterkubedescheduleroperator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • clusterkubedescheduleroperator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    klusterlet-productkubernetes-nmstate-operator
      -
    • CRD
    • -
      -
    • release-2.2
    • - -
    • release-2.3
    • +
    • 4.7
      -
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-nmstate-operator.4.7.0-202108041522 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    local-storage-operatoropenshift-pipelines-operator-rh
      @@ -2381,30 +2146,54 @@
      Fully complying with the recommendations
      -
    • 4.6
    • +
    • preview
    • -
    • 4.7
    • +
    • stable
    • + +
    • ocp-4.6
    • + +
    • ocp-4.5
    • + +
    • ocp-4.4
      -
    • local-storage-operator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • openshift-pipelines-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5 ocp-4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-pipelines-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • local-storage-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.1 - (label=v4.7,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    rhpam-kogito-operatorintegration-operator
      @@ -2413,7 +2202,7 @@
      Fully complying with the recommendations
      -
    • 7.x
    • +
    • 1.x
      -
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-loggingptp-operator
      @@ -2443,13 +2242,9 @@
      Fully complying with the recommendations
      -
    • stable
    • -
    • 4.6
    • -
    • 5.0
    • - -
    • stable-5.1
    • +
    • 4.7
      -
    • cluster-logging.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cluster-logging.5.1.1-36 - (label=v4.7,max=not set,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ptp-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • ptp-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    performance-addon-operatorcodeready-workspaces
      @@ -2485,162 +2276,126 @@
      Fully complying with the recommendations
      -
    • 4.4
    • - -
    • 4.6
    • - -
    • 4.5
    • - -
    • 4.7
    • +
    • latest
      -
    • performance-addon-operator.v4.4.1 - (label=v4.5,max=4.8,channels=[4.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • performance-addon-operator.v4.5.4 - (label=v4.5,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • performance-addon-operator.v4.6.3 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • performance-addon-operator.v4.7.5 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    serverless-operatorrhacs-operator
      -
    • CRD
    • -
      -
    • stable
    • - -
    • 4.5
    • - -
    • 4.6
    • - -
    • 4.7
    • +
    • rhacs-3.64
    • -
    • 4.4
    • +
    • latest
    • -
    • 4.3
    • +
    • rhacs-3.62
      -
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[stable 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[stable 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[stable 4.6 4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest rhacs-3.62],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    elasticsearch-operatormetering-ocp
      -
    • ClusterRole
    • -
      -
    • stable
    • - -
    • stable-5.1
    • +
    • 4.7
    • 4.6
    • -
    • 5.0
    • -
      -
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • elasticsearch-operator.5.1.1-36 - (label=v4.7,max=4.8,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • metering-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • elasticsearch-operator.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • metering-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    mtv-operatorskupper-operator
      @@ -2649,7 +2404,7 @@
      Fully complying with the recommendations
      -
    • release-v2.0.0
    • +
    • alpha
      -
    • mtv-operator.2.0.0 - (label=v4.7,max=not set,channels=[release-v2.0.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    rhacs-operatorcompliance-operator
      @@ -2677,11 +2436,9 @@
      Fully complying with the recommendations
      -
    • rhacs-3.64
    • - -
    • latest
    • +
    • 4.7
    • -
    • rhacs-3.62
    • +
    • release-0.1
      -
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest rhacs-3.62],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-consoleservice-registry-operator
      @@ -2719,34 +2470,54 @@
      Fully complying with the recommendations
      -
    • fuse-console-7.8.x
    • +
    • 2.0.x
    • -
    • 7.9.x
    • +
    • 2.x
    • -
    • fuse-console-7.7.x
    • +
    • serviceregistry-1.1
    • + +
    • serviceregistry-1.0
    • + +
    • serviceregistry-1
      -
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:YES,defaultChannel:YES, deprecated:NO)
    rh-service-binding-operatorwindows-machine-config-operator
      @@ -2755,10 +2526,10 @@
      Fully complying with the recommendations
      -
    • beta
    • -
    • preview
    • +
    • stable
    • +
    @@ -2769,29 +2540,25 @@
    Fully complying with the recommendations
      -
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windows-machine-config-operator.v2.0.0 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windows-machine-config-operator.v2.0.1 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • windows-machine-config-operator.v2.0.2 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windows-machine-config-operator.v2.0.3 - (label==v4.7,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    ptp-operatornfd
      +
    • CRD
    • +
    @@ -2806,31 +2573,31 @@
    Fully complying with the recommendations
      +
    • nfd.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • ptp-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • ptp-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nfd.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    windows-machine-config-operatorbusinessautomation-operator
      +
    • CRD
    • +
      -
    • preview
    • -
    • stable
    @@ -2838,25 +2605,51 @@
    Fully complying with the recommendations
      +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • windows-machine-config-operator.v2.0.0 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windows-machine-config-operator.v2.0.1 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windows-machine-config-operator.v2.0.2 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • windows-machine-config-operator.v2.0.3 - (label==v4.7,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    amq-onlinedatagrid
      @@ -2867,50 +2660,62 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • 8.1.x
    • + +
    • 8.2.x
    • + +
    • 8.0.x
      -
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-onlineamq-streams
      @@ -2921,98 +2726,172 @@
      Fully complying with the recommendations
      -
    • fuse-online-7.7.x
    • +
    • stable
    • -
    • 7.9.x
    • +
    • amq-streams-1.x
    • -
    • fuse-online-v7.8.x
    • +
    • amq-streams-1.8.x
    • + +
    • amq-streams-1.7.x
    • + +
    • amq-streams-1.6.x
      -
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amqstreams.v1.5.4 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.6.0 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.1 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.2 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[stable amq-streams-1.x amq-streams-1.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    metering-ocpserverless-operator
      +
    • CRD
    • +
      -
    • 4.7
    • +
    • stable
    • + +
    • 4.5
    • 4.6
    • +
    • 4.7
    • + +
    • 4.4
    • + +
    • 4.3
    • +
      +
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[stable 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[stable 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[stable 4.6 4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • metering-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • metering-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    compliance-operatorfuse-online
      +
    • CRD
    • +
      -
    • 4.7
    • +
    • fuse-online-7.7.x
    • -
    • release-0.1
    • +
    • 7.9.x
    • + +
    • fuse-online-v7.8.x
      +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    datagridperformance-addon-operator
      @@ -3023,87 +2902,187 @@
      Fully complying with the recommendations
      -
    • 8.1.x
    • +
    • 4.4
    • -
    • 8.2.x
    • +
    • 4.6
    • -
    • 8.0.x
    • +
    • 4.5
    • + +
    • 4.7
      -
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.4.1 - (label=v4.5,max=4.8,channels=[4.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.5.4 - (label=v4.5,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.6.3 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.7.5 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    local-storage-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    • 4.7
    • + +
    +
    +
      -
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • local-storage-operator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • local-storage-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    cluster-logging +
      + +
    +
    +
      + +
    • stable
    • + +
    • 4.6
    • + +
    • 5.0
    • + +
    • stable-5.1
    • + +
    +
    +
      -
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-logging.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-logging.5.1.1-36 - (label=v4.7,max=not set,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    mtv-operator +
      + +
    +
    +
      + +
    • release-v2.0.0
    • + +
    +
    +
      -
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mtv-operator.2.0.0 - (label=v4.7,max=not set,channels=[release-v2.0.0],head:YES,defaultChannel:YES, deprecated:NO)
    skupper-operatoramq-online
      +
    • CRD
    • +
      -
    • alpha
    • +
    • stable
      +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    +
    Using deprecated APIs
    +
    @@ -124,87 +123,113 @@
    Not complying with the recommendations
    - + + + + + + + + + - + - - -
    Package Name
    apicast-operator +
      + +
    • CRD
    • + +
    +
      -
    • CRD
    • +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    • threescale-2.8
    +
      + +
    • apicast-operator.v0.2.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    container-security-operator +
      + +
    • CRD
    • + +
    +
      +
    • quay-v3.4
    • + +
    • quay-v3.5
    • + +
    • quay-v3.3
    • +
    -
      - -
    • clusterresourceoverride-operator.4.8.0-202107291502 - (label==v4.8,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
      -
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • clusterkubedescheduleroperator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • devworkspace-operator.v0.8.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubernetes-nmstate-operator.4.8.0-202108041625 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • local-storage-operator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • metering-operator.4.8.0-202108061927 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • node-feature-discovery-operator.v4.8.0 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • performance-addon-operator.v4.8.0 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • ptp-operator.4.8.0-202108090903 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • redhat-openshift-pipelines.v1.5.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • sriov-network-operator.4.8.0-202108051934 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • container-security-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • verticalpodautoscaler.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
    -
    - -
    -
    Partially complying with the recommendations
    - - - - - - - - - - - - - - + @@ -246,7 +259,7 @@
    Partially complying with the recommendations
    - + @@ -276,7 +289,7 @@
    Partially complying with the recommendations
    - + @@ -390,7 +347,7 @@
    Partially complying with the recommendations
    - + @@ -438,7 +409,7 @@
    Partially complying with the recommendations
    - + @@ -530,7 +503,7 @@
    Partially complying with the recommendations
    - + @@ -592,103 +547,67 @@
    Partially complying with the recommendations
    - + - - - - - - - - - + @@ -718,7 +639,7 @@
    Partially complying with the recommendations
    - + @@ -776,7 +669,7 @@
    Partially complying with the recommendations
    - + @@ -806,7 +707,7 @@
    Partially complying with the recommendations
    - + @@ -840,7 +737,7 @@
    Partially complying with the recommendations
    - + @@ -882,7 +767,7 @@
    Partially complying with the recommendations
    - + @@ -920,7 +803,7 @@
    Partially complying with the recommendations
    - + @@ -964,7 +853,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -1038,7 +953,7 @@
    Partially complying with the recommendations
    - + @@ -1096,7 +1067,7 @@
    Partially complying with the recommendations
    - + @@ -1126,7 +1097,7 @@
    Partially complying with the recommendations
    - + @@ -1162,7 +1171,7 @@
    Partially complying with the recommendations
    - + @@ -1194,7 +1213,7 @@
    Partially complying with the recommendations
    - + @@ -1226,7 +1245,7 @@
    Partially complying with the recommendations
    - + @@ -1256,25 +1277,33 @@
    Partially complying with the recommendations
    - + @@ -1286,7 +1315,7 @@
    Partially complying with the recommendations
    - + @@ -1318,45 +1349,27 @@
    Partially complying with the recommendations
    - + @@ -1412,59 +1425,25 @@
    Partially complying with the recommendations
    - - - - - - - - - + @@ -1481,7 +1460,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    openshift-gitops-operatorservice-telemetry-operator
      @@ -215,26 +240,14 @@
      Partially complying with the recommendations
      -
    • stable
    • - -
    • preview
    • +
    • stable-1.2
      -
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    clusterresourceoverridesandboxed-containers-operator
      @@ -257,14 +270,14 @@
      Partially complying with the recommendations
      -
    • 4.8
    • +
    • preview-1.0
      -
    • clusterresourceoverride-operator.4.8.0-202108130208 - (label==v4.8,max=4.8,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sandboxed-containers-operator.v1.0.0 - (label==v4.8,max=4.8,channels=[preview-1.0],head:YES,defaultChannel:YES, deprecated:NO)
    servicemeshoperatorquay-operator
      @@ -287,98 +300,42 @@
      Partially complying with the recommendations
      -
    • 1.0
    • +
    • quay-v3.5
    • -
    • stable
    • +
    • quay-v3.4
    • + +
    • quay-v3.3
      -
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    apicast-operatormtc-operator
      @@ -401,32 +358,46 @@
      Partially complying with the recommendations
      -
    • threescale-2.9
    • +
    • release-v1.5
    • -
    • threescale-2.10
    • +
    • release-v1.2
    • -
    • threescale-2.8
    • +
    • release-v1.3
    • + +
    • release-v1.4
      -
    • apicast-operator.v0.2.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.2.5 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.2 release-v1.3 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.3.2 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.4.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mtc-operator.v1.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.7 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.1 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    rhmtv-operatoramq-broker-lts
      @@ -449,14 +420,16 @@
      Partially complying with the recommendations
      -
    • release-v2.0.0-beta
    • +
    • alpha
      -
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    mtc-operatoreap
      @@ -541,46 +514,28 @@
      Partially complying with the recommendations
      -
    • release-v1.5
    • - -
    • release-v1.2
    • - -
    • release-v1.3
    • - -
    • release-v1.4
    • +
    • alpha
      -
    • mtc-operator.v1.2.5 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.2 release-v1.3 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.3.2 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.4.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • mtc-operator.v1.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.4.7 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • mtc-operator.v1.5.1 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    gatekeeper-operator-product
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • -
      -
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • clusterresourceoverride-operator.4.8.0-202107291502 - (label==v4.8,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    -
    -
      +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    quay-bridge-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • quay-v3.4
    • - -
    • quay-v3.5
    • - -
    • quay-v3.3
    • - -
    -
      -
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • clusterkubedescheduleroperator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • devworkspace-operator.v0.8.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubernetes-nmstate-operator.4.8.0-202108041625 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • local-storage-operator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • metering-operator.4.8.0-202108061927 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • node-feature-discovery-operator.v4.8.0 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • performance-addon-operator.v4.8.0 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • ptp-operator.4.8.0-202108090903 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines.v1.5.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sriov-network-operator.4.8.0-202108051934 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    -
    -
      +
    • verticalpodautoscaler.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    ansible-automation-platform-operatoramq-broker-rhel8
      @@ -699,14 +618,16 @@
      Partially complying with the recommendations
      -
    • early-access
    • +
    • 7.x
    • + +
    • 7.8.x
      -
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    quay-operatorsmart-gateway-operator
      @@ -729,42 +650,14 @@
      Partially complying with the recommendations
      -
    • quay-v3.5
    • - -
    • quay-v3.4
    • - -
    • quay-v3.3
    • +
    • stable-1.2
      -
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    service-telemetry-operatorfuse-apicurito
      @@ -787,14 +680,22 @@
      Partially complying with the recommendations
      -
    • stable-1.2
    • +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.9.x
      -
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    rhsso-operatoransible-automation-platform-operator
      @@ -817,18 +718,14 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • early-access
      -
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    amq7-interconnect-operatorrhmtv-operator
      @@ -851,26 +748,14 @@
      Partially complying with the recommendations
      -
    • 1.2.0
    • - -
    • 1.10.x
    • +
    • release-v2.0.0-beta
      -
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-apicuritojws-operator
      @@ -893,22 +778,20 @@
      Partially complying with the recommendations
      -
    • fuse-apicurito-7.8.x
    • - -
    • fuse-apicurito-7.7.x
    • - -
    • fuse-apicurito-7.9.x
    • +
    • alpha
      -
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    eapamq-broker
      @@ -931,6 +814,14 @@
      Partially complying with the recommendations
      +
    • current
    • + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    • current-76
    • +
    • alpha
    @@ -938,21 +829,19 @@
    Partially complying with the recommendations
      -
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current current-76 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current current-76 alpha 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    kiali-ossmquay-bridge-operator
      @@ -975,58 +864,84 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • quay-v3.4
    • + +
    • quay-v3.5
    • + +
    • quay-v3.3
      -
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    amq7-interconnect-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.2.0
    • + +
    • 1.10.x
    • + +
    +
    +
      -
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    container-security-operatorservicemeshoperator
      @@ -1049,42 +964,98 @@
      Partially complying with the recommendations
      -
    • quay-v3.4
    • - -
    • quay-v3.5
    • +
    • 1.0
    • -
    • quay-v3.3
    • +
    • stable
      -
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    smart-gateway-operatorclusterresourceoverride
      @@ -1107,14 +1078,14 @@
      Partially complying with the recommendations
      -
    • stable-1.2
    • +
    • 4.8
      -
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterresourceoverride-operator.4.8.0-202108130208 - (label==v4.8,max=4.8,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    jws-operatorkiali-ossm
      @@ -1137,20 +1108,58 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • stable
      -
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    amq7-cert-manager-operatoropenshift-gitops-operator
      @@ -1173,16 +1182,26 @@
      Partially complying with the recommendations
      -
    • 1.x
    • +
    • stable
    • -
    • alpha
    • +
    • preview
      -
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    amq-broker-rhel8amq7-cert-manager-operator
      @@ -1205,16 +1224,16 @@
      Partially complying with the recommendations
      -
    • 7.x
    • +
    • 1.x
    • -
    • 7.8.x
    • +
    • alpha
      -
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    sandboxed-containers-operatorawx-resource-operator
      @@ -1237,14 +1256,16 @@
      Partially complying with the recommendations
      -
    • preview-1.0
    • +
    • release-0.1
      -
    • sandboxed-containers-operator.v1.0.0 - (label==v4.8,max=4.8,channels=[preview-1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-jenkins-operatorgatekeeper-operator-product
    • CRD
    • +
    • ClusterRole
    • +
      -
    • alpha
    • +
    • stable
      -
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    amq-broker-ltsrhsso-operator
      @@ -1304,9 +1333,11 @@
      Partially complying with the recommendations
      -
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    amq-brokercincinnati-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • current
    • - -
    • 7.x
    • - -
    • 7.8.x
    • - -
    • current-76
    • - -
    • alpha
    • +
    • v1
      -
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current current-76 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current current-76 alpha 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    awx-resource-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • release-0.1
    • - -
    -
    -
      - -
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    -
    cincinnati-operatoropenshift-jenkins-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • v1
    • +
    • alpha
      -
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -1496,37 +1475,7 @@
    Fully complying with the recommendations
    - - - - - - - - - + - + - + + - @@ -1670,55 +1605,47 @@
    Fully complying with the recommendations
    - + - + - + - + - + @@ -1855,192 +1782,162 @@
    Fully complying with the recommendations
    - + - + - + - + - - + + - + @@ -2061,48 +1958,52 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + - + - + - + - + + + + + + + + + - + @@ -2489,16 +2450,14 @@
    Fully complying with the recommendations
    - + @@ -2519,42 +2480,78 @@
    Fully complying with the recommendations
    - + - + - + - + - + @@ -2846,89 +2765,101 @@
    Fully complying with the recommendations
    - + - + - + - + - + - + @@ -3071,16 +3042,22 @@
    Fully complying with the recommendations
    - + @@ -3101,14 +3078,16 @@
    Fully complying with the recommendations
    - + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html index e3c83a29..11c3c796 100644 --- a/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html @@ -102,182 +102,13 @@
    2. What action(s) should I take?
    3. What does it mean for a package to be in red, amber or green?
      -
    • (Red) Not complying: these are packages which have no head of channel bundles compatible with 4.9(uses removed API(s) on k8s 1.22/ocp 4.9), and no head of channel has a Max OCP annotation set
    • -
    • (Green) Complying: these are packages for which all head of channel bundles are compatible with 4.9(do not use removed API(s) in k8s 1.22/ocp 4.9) or at least has one of the head of channel bundles is compatible with 4.9 and the rest of the head of channel bundles use the Max OCP version annotation properly
    • -
    • (Amber) Partially Complying: these are packages which are not in red or green falls in the amber category. The ones that are partially complying with the requirements but not fully. E.g. at least one head of channel bundles is not compatible with 4.9 and does not declare an appropriate Max OCP version, or none of the head of channel bundles are compatible with 4.9.
    • +
    • (Green) Complying: these are packages that we cannot found the removed APIs in k8s 1.22/OCP 4.9 in at least one bundle version
    • +
    • (Amber) Not complying: these are the packages that we cannot found any versions which is not using the removed APIs in in k8s 1.22/OCP 4.9
    - - -
    -
    Not complying with the recommendations
    -
    windows-machine-config-operator -
      - -
    -
    -
      - -
    • preview
    • - -
    • stable
    • - -
    -
    -
      - -
    -
    -
      - -
    • windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    vertical-pod-autoscalersriov-network-operator
      @@ -1547,91 +1496,77 @@
      Fully complying with the recommendations
      -
    • verticalpodautoscaler.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sriov-network-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-consolevertical-pod-autoscaler
      -
    • CRD
    • -
      -
    • fuse-console-7.8.x
    • - -
    • 7.9.x
    • - -
    • fuse-console-7.7.x
    • +
    • 4.8
      -
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • verticalpodautoscaler.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    amq-streamsrh-service-binding-operator
      -
    • CRD
    • -
      -
    • amq-streams-1.x
    • - -
    • amq-streams-1.8.x
    • - -
    • stable
    • +
    • beta
    • -
    • amq-streams-1.7.x
    • +
    • preview
      -
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[amq-streams-1.x amq-streams-1.8.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    klusterlet-productcluster-logging
      -
    • CRD
    • -
      -
    • release-2.3
    • +
    • 4.6
    • -
    • release-2.2
    • +
    • 5.0
    • + +
    • stable
    • + +
    • stable-5.1
      -
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-logging.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cluster-logging.5.1.1-36 - (label=v4.7,max=not set,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    rh-service-binding-operatorwindows-machine-config-operator
      @@ -1727,10 +1654,10 @@
      Fully complying with the recommendations
      -
    • beta
    • -
    • preview
    • +
    • stable
    • +
    @@ -1741,60 +1668,42 @@
    Fully complying with the recommendations
      -
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    submarinernfd
      -
    • CRD
    • -
      -
    • alpha
    • - -
    • alpha-0.9
    • +
    • 4.8
      -
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • nfd.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    red-hat-camel-kcodeready-workspaces
      @@ -1805,36 +1714,54 @@
      Fully complying with the recommendations
      -
    • 1.4.x
    • - -
    • techpreview
    • +
    • latest
      -
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    metering-ocpcostmanagement-metrics-operator
      @@ -1843,7 +1770,7 @@
      Fully complying with the recommendations
      -
    • 4.8
    • +
    • stable
      -
    • metering-operator.4.8.0-202108181015 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    compliance-operatoramq-streams
      +
    • CRD
    • +
      -
    • 4.7
    • +
    • amq-streams-1.x
    • -
    • release-0.1
    • +
    • amq-streams-1.8.x
    • + +
    • stable
    • + +
    • amq-streams-1.7.x
      +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[amq-streams-1.x amq-streams-1.8.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-pipelines-operator-rhcompliance-operator
      -
    • CRD
    • -
      -
    • preview
    • +
    • 4.7
    • -
    • stable
    • +
    • release-0.1
      -
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • redhat-openshift-pipelines.v1.5.1 - (label=v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    jaeger-productdevworkspace-operator
      -
    • CRD
    • -
      -
    • 1.17-stable
    • - -
    • stable
    • - -
    • 1.24-stable
    • - -
    • 1.20-stable
    • - -
    • tech-preview
    • +
    • fast
      -
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v1.20.5 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[stable 1.24-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • devworkspace-operator.v0.9.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    businessautomation-operatorintegration-operator
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • 1.x
    • + +
    +
    +
      -
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    costmanagement-metrics-operatorkubernetes-nmstate-operator
      @@ -2049,7 +1946,7 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • 4.8
      -
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-nmstate-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    skupper-operatorfuse-console
      +
    • CRD
    • +
      -
    • alpha
    • +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-console-7.7.x
      +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    local-storage-operatormetering-ocp
      @@ -2123,72 +2024,56 @@
      Fully complying with the recommendations
      -
    • local-storage-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • metering-operator.4.8.0-202108181015 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    codeready-workspaceselasticsearch-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • latest
    • +
    • 5.0
    • + +
    • stable
    • + +
    • 4.6
    • + +
    • stable-5.1
      -
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.5.1.1-36 - (label=v4.7,max=4.8,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    amq-onlineserverless-operator
      @@ -2199,186 +2084,240 @@
      Fully complying with the recommendations
      +
    • 4.6
    • + +
    • 4.7
    • +
    • stable
    • +
    • 4.5
    • + +
    • 4.3
    • + +
    • 4.4
    • +
      -
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[4.6 4.7 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[4.6 4.7 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[4.6 4.7 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-loggingklusterlet-product
      +
    • CRD
    • +
      -
    • 4.6
    • - -
    • 5.0
    • - -
    • stable
    • +
    • release-2.3
    • -
    • stable-5.1
    • +
    • release-2.2
      +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • cluster-logging.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • cluster-logging.5.1.1-36 - (label=v4.7,max=not set,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    nfdweb-terminal
      +
    • CRD
    • +
      -
    • 4.8
    • +
    • fast
    • + +
    • alpha
      +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[fast alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • nfd.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.3.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    poison-pill-managerred-hat-camel-k
      +
    • CRD
    • +
      -
    • alpha
    • +
    • 1.4.x
    • + +
    • techpreview
      +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • poison-pill.v0.1.2 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    integration-operatorsubmariner
      +
    • CRD
    • +
      -
    • 1.x
    • +
    • alpha
    • + +
    • alpha-0.9
    -
      - -
    -
    -
      - -
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
        -
      • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
      • -
      • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
      • +
      +
    +
      -
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    advanced-cluster-managementservice-registry-operator
      @@ -2389,86 +2328,108 @@
      Fully complying with the recommendations
      -
    • release-2.2
    • +
    • 2.x
    • -
    • release-2.0
    • +
    • 2.0.x
    • -
    • release-2.1
    • +
    • serviceregistry-1
    • -
    • release-2.3
    • +
    • serviceregistry-1.1
    • + +
    • serviceregistry-1.0
      -
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    amq-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    rhpam-kogito-operatorpoison-pill-manager
      @@ -2477,7 +2438,7 @@
      Fully complying with the recommendations
      -
    • 7.x
    • +
    • alpha
      -
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • poison-pill.v0.1.2 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    ptp-operatorfile-integrity-operator
      @@ -2507,7 +2466,9 @@
      Fully complying with the recommendations
      -
    • 4.8
    • +
    • 4.7
    • + +
    • release-0.1
      -
    • ptp-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    sriov-network-operatorbusinessautomation-operator
      +
    • CRD
    • +
      -
    • 4.8
    • +
    • stable
      +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • sriov-network-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    datagridkubevirt-hyperconverged
      @@ -2565,102 +2562,88 @@
      Fully complying with the recommendations
      -
    • 8.1.x
    • - -
    • 8.2.x
    • - -
    • 8.0.x
    • +
    • stable
      -
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v4.8.0 - (label=v4.8,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v4.8.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    rhacs-operatorfuse-online
      +
    • CRD
    • +
      -
    • rhacs-3.64
    • +
    • fuse-online-v7.8.x
    • -
    • latest
    • +
    • 7.9.x
    • -
    • rhacs-3.62
    • +
    • fuse-online-7.7.x
      +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.62 rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    service-registry-operatorjaeger-product
      @@ -2671,129 +2654,65 @@
      Fully complying with the recommendations
      -
    • 2.x
    • +
    • 1.17-stable
    • -
    • 2.0.x
    • +
    • stable
    • -
    • serviceregistry-1
    • +
    • 1.24-stable
    • -
    • serviceregistry-1.1
    • +
    • 1.20-stable
    • -
    • serviceregistry-1.0
    • +
    • tech-preview
      -
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • jaeger-operator.v1.20.5 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[stable 1.24-stable],head:YES,defaultChannel:YES, deprecated:NO)
    serverless-operatorskupper-operator
      -
    • CRD
    • -
      -
    • 4.6
    • - -
    • 4.7
    • - -
    • stable
    • - -
    • 4.5
    • - -
    • 4.3
    • - -
    • 4.4
    • +
    • alpha
      -
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[4.6 4.7 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[4.6 4.7 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[4.6 4.7 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
      -
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    web-terminalcluster-kube-descheduler-operator
      -
    • CRD
    • -
      -
    • fast
    • - -
    • alpha
    • +
    • 4.8
      -
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[fast alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • web-terminal.v1.3.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterkubedescheduleroperator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    elasticsearch-operatordatagrid
      -
    • ClusterRole
    • +
    • CRD
      -
    • 5.0
    • - -
    • stable
    • +
    • 8.1.x
    • -
    • 4.6
    • +
    • 8.2.x
    • -
    • stable-5.1
    • +
    • 8.0.x
      -
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • elasticsearch-operator.5.1.1-36 - (label=v4.7,max=4.8,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • elasticsearch-operator.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    kubevirt-hyperconvergedadvanced-cluster-management
      @@ -2939,50 +2870,86 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • release-2.2
    • + +
    • release-2.0
    • + +
    • release-2.1
    • + +
    • release-2.3
      -
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • kubevirt-hyperconverged-operator.v4.8.0 - (label=v4.8,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v4.8.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-onlineopenshift-pipelines-operator-rh
      @@ -2993,34 +2960,36 @@
      Fully complying with the recommendations
      -
    • fuse-online-v7.8.x
    • - -
    • 7.9.x
    • +
    • preview
    • -
    • fuse-online-7.7.x
    • +
    • stable
      -
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.5.1 - (label=v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    kubernetes-nmstate-operatorptp-operator
      @@ -3041,14 +3010,14 @@
      Fully complying with the recommendations
      -
    • kubernetes-nmstate-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ptp-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    file-integrity-operatorrhacs-operator
      @@ -3057,9 +3026,11 @@
      Fully complying with the recommendations
      -
    • 4.7
    • +
    • rhacs-3.64
    • -
    • release-0.1
    • +
    • latest
    • + +
    • rhacs-3.62
      -
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.62 rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    devworkspace-operatorrhpam-kogito-operator
      @@ -3089,7 +3066,7 @@
      Fully complying with the recommendations
      -
    • fast
    • +
    • 7.x
      -
    • devworkspace-operator.v0.9.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-kube-descheduler-operatorlocal-storage-operator
      @@ -3129,7 +3108,7 @@
      Fully complying with the recommendations
      -
    • clusterkubedescheduleroperator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • local-storage-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    servicemeshoperator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • 1.0
    • - -
    • stable
    • - -
    -
    -
      - -
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=not set,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    -
    -
      - -
    • CRD
    • - -
    -
    -
      - -
    -
    -
      - -
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
      - -
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • devworkspace-operator.v0.8.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • redhat-openshift-pipelines.v1.5.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    -
    -
    Partially complying with the recommendations
    +
    Using deprecated APIs
    @@ -292,7 +123,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -374,7 +195,7 @@
    Partially complying with the recommendations
    - + @@ -430,7 +243,7 @@
    Partially complying with the recommendations
    - + @@ -460,7 +273,7 @@
    Partially complying with the recommendations
    - + @@ -490,7 +311,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -562,25 +383,27 @@
    Partially complying with the recommendations
    - + @@ -592,7 +415,7 @@
    Partially complying with the recommendations
    - + @@ -622,7 +447,7 @@
    Partially complying with the recommendations
    - + @@ -700,7 +525,7 @@
    Partially complying with the recommendations
    - + @@ -732,7 +555,7 @@
    Partially complying with the recommendations
    - + @@ -776,7 +611,7 @@
    Partially complying with the recommendations
    - + @@ -806,33 +643,55 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -844,7 +703,7 @@
    Partially complying with the recommendations
    - + @@ -900,7 +759,7 @@
    Partially complying with the recommendations
    - + @@ -936,7 +803,7 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -998,7 +877,7 @@
    Partially complying with the recommendations
    - + @@ -1028,7 +909,7 @@
    Partially complying with the recommendations
    - + @@ -1070,7 +959,7 @@
    Partially complying with the recommendations
    - + @@ -1144,7 +1105,7 @@
    Partially complying with the recommendations
    - + @@ -1192,7 +1135,7 @@
    Partially complying with the recommendations
    - + @@ -1230,7 +1165,7 @@
    Partially complying with the recommendations
    - + - - - - - - - - @@ -1348,27 +1283,71 @@
    Partially complying with the recommendations
    - + + + + + + + + + @@ -1385,7 +1364,7 @@
    Partially complying with the recommendations
    -
    Fully complying with the recommendations
    +
    Has a bundle that we could not find the deprecate APIs
    amq7-cert-manager-operatorkiali-ossm
      @@ -303,66 +134,56 @@
      Partially complying with the recommendations
      -
    • 1.x
    • - -
    • alpha
    • +
    • stable
      -
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    amq-broker -
      - -
    • CRD
    • - -
    -
    -
      - -
    • current
    • - -
    • current-76
    • - -
    • 7.x
    • - -
    • 7.8.x
    • - -
    • alpha
    • - -
    -
    -
      +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current current-76 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current current-76 alpha 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    quay-operatorapicast-operator
      @@ -385,40 +206,32 @@
      Partially complying with the recommendations
      -
    • quay-v3.5
    • +
    • threescale-2.8
    • -
    • quay-v3.4
    • +
    • threescale-2.9
    • -
    • quay-v3.3
    • +
    • threescale-2.10
      -
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • apicast-operator.v0.2.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    rhmtv-operatoropenshift-jenkins-operator
      @@ -441,14 +254,14 @@
      Partially complying with the recommendations
      -
    • release-v2.0.0-beta
    • +
    • alpha
      -
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    clusterresourceoverridefuse-apicurito
      @@ -471,14 +284,22 @@
      Partially complying with the recommendations
      -
    • 4.8
    • +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.9.x
      -
    • clusterresourceoverride-operator.4.8.0-202107291502 - (label==v4.8,max=4.8,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    kiali-ossmclusterresourceoverride
      @@ -501,56 +322,56 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • 4.8
      -
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • clusterresourceoverride-operator.4.8.0-202107291502 - (label==v4.8,max=4.8,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    amq7-interconnect-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.2.0
    • + +
    • 1.10.x
    • + +
    +
    +
      -
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    smart-gateway-operatorcincinnati-operator
    • CRD
    • +
    • ClusterRole
    • +
      -
    • stable-1.2
    • +
    • v1
      -
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    sandboxed-containers-operatorawx-resource-operator
      @@ -603,14 +426,16 @@
      Partially complying with the recommendations
      -
    • preview-1.0
    • +
    • release-0.1
      -
    • sandboxed-containers-operator.v1.0.0 - (label==v4.8,max=4.8,channels=[preview-1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    rhsso-operator
      @@ -633,24 +458,24 @@
      Partially complying with the recommendations
      -
    • alpha
    • -
      -
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
      +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • devworkspace-operator.v0.8.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.5.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    amq-broker-rhel8sandboxed-containers-operator
      @@ -711,16 +536,14 @@
      Partially complying with the recommendations
      -
    • 7.x
    • - -
    • 7.8.x
    • +
    • preview-1.0
      -
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sandboxed-containers-operator.v1.0.0 - (label==v4.8,max=4.8,channels=[preview-1.0],head:YES,defaultChannel:YES, deprecated:NO)
    eapcontainer-security-operator
      @@ -743,28 +566,40 @@
      Partially complying with the recommendations
      -
    • alpha
    • +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    • quay-v3.3
      -
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    ansible-automation-platform-operatoramq-broker-rhel8
      @@ -787,14 +622,16 @@
      Partially complying with the recommendations
      -
    • early-access
    • +
    • 7.x
    • + +
    • 7.8.x
      -
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    gatekeeper-operator-productservice-telemetry-operator
    • CRD
    • -
    • ClusterRole
    • -
      -
    • stable
    • +
    • stable-1.2
      -
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    rhmtv-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v2.0.0-beta
    • + +
    +
    +
      -
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    container-security-operatorquay-operator
      @@ -866,29 +725,29 @@
      Partially complying with the recommendations
      -
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    jws-operatoreap
      @@ -918,13 +777,21 @@
      Partially complying with the recommendations
      -
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    3scale-operatorjws-operator
      @@ -947,46 +814,58 @@
      Partially complying with the recommendations
      -
    • threescale-2.6
    • - -
    • threescale-2.10
    • - -
    • threescale-2.7
    • - -
    • threescale-2.9
    • - -
    • threescale-2.8
    • +
    • alpha
      -
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.6 threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    +
      -
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
    gatekeeper-operator-product +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      -
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-jenkins-operatoramq7-cert-manager-operator
      @@ -1009,6 +888,8 @@
      Partially complying with the recommendations
      +
    • 1.x
    • +
    • alpha
    @@ -1016,7 +897,7 @@
    Partially complying with the recommendations
      -
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    amq7-interconnect-operatoramq-broker
      @@ -1039,26 +920,34 @@
      Partially complying with the recommendations
      -
    • 1.2.0
    • +
    • current
    • -
    • 1.10.x
    • +
    • current-76
    • + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    • alpha
      -
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current current-76 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current current-76 alpha 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-gitops-operatorservicemeshoperator
      @@ -1081,26 +970,98 @@
      Partially complying with the recommendations
      -
    • stable
    • +
    • 1.0
    • -
    • preview
    • +
    • stable
      -
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=not set,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    apicast-operatorsmart-gateway-operator
      @@ -1155,32 +1116,14 @@
      Partially complying with the recommendations
      -
    • threescale-2.8
    • - -
    • threescale-2.9
    • - -
    • threescale-2.10
    • +
    • stable-1.2
      -
    • apicast-operator.v0.2.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-apicuritoansible-automation-platform-operator
      @@ -1203,22 +1146,14 @@
      Partially complying with the recommendations
      -
    • fuse-apicurito-7.7.x
    • - -
    • fuse-apicurito-7.8.x
    • - -
    • fuse-apicurito-7.9.x
    • +
    • early-access
      -
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    service-telemetry-operator3scale-operator
      @@ -1241,46 +1176,46 @@
      Partially complying with the recommendations
      -
    • stable-1.2
    • +
    • threescale-2.6
    • + +
    • threescale-2.10
    • + +
    • threescale-2.7
    • + +
    • threescale-2.9
    • + +
    • threescale-2.8
      -
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.6 threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    awx-resource-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • release-0.1
    • - -
    -
    -
      +
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    cincinnati-operatorrhsso-operator
    • CRD
    • -
    • ClusterRole
    • +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-gitops-operator +
      + +
    • CRD
      -
    • v1
    • +
    • stable
    • + +
    • preview
      -
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    @@ -1400,103 +1379,129 @@
    Fully complying with the recommendations
    - + + - - + - + - + @@ -1517,62 +1524,56 @@
    Fully complying with the recommendations
    - + + - - + @@ -1593,14 +1596,16 @@
    Fully complying with the recommendations
    - + - + - + @@ -1763,19 +1712,21 @@
    Fully complying with the recommendations
    - + - - - - - - - - - + - + - + - + - + - + @@ -2073,14 +2064,14 @@
    Fully complying with the recommendations
    - + - + @@ -2147,16 +2132,14 @@
    Fully complying with the recommendations
    - + @@ -2177,88 +2166,48 @@
    Fully complying with the recommendations
    - + - - + - + - + - + - + - + - + + + + + + + + + - + - + @@ -2603,26 +2638,14 @@
    Fully complying with the recommendations
    - + - + - + - + - + @@ -2817,27 +2810,21 @@
    Fully complying with the recommendations
    - + - + - + - + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/grade_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/grade_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html index 943cf2e2..99937fe9 100644 --- a/testdata/reports/redhat_redhat_operator_index/dashboards/grade_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/grade_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html @@ -143,18 +143,18 @@
    Grade
    - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + + +
    +

    For advanced-cluster-management.v2.1.6:

    + + +

  • "WARNING" (advanced-cluster-management.v2.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
  • + +
  • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clustermanagers.operator.open-cluster-management.io" "applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io" "observatoria.core.observatorium.io" "checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io" "multiclusterobservabilities.observability.open-cluster-management.io" "observabilityaddons.observability.open-cluster-management.io" "multiclusterhubs.operator.open-cluster-management.io"])
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + + +
    +

    For advanced-cluster-management.v2.0.10:

    + + +

  • "WARNING" (advanced-cluster-management.v2.0.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
  • + +
  • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clustermanagers.operator.open-cluster-management.io" "applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io" "hiveconfigs.hive.openshift.io" "multiclusterhubs.operator.open-cluster-management.io"])
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + +
  • "WARNING" provided API should have an example annotation
  • + + + + + + + + + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -8167,350 +7841,607 @@
    Grade
    - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html new file mode 100644 index 00000000..9ab50921 --- /dev/null +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.6_2021-09-06.html @@ -0,0 +1,2932 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-operator-index:v4.6
    • +
    • Image ID: sha256:da6c5a775456afb65deac84037e9240436ea9055ae1d96a9cf74166eb084d660
    • +
    • Image Created at: 2021-09-03T05:26:34.422850306Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    +
    fuse-consolerh-service-binding-operator
      -
    • CRD
    • -
      -
    • fuse-console-7.8.x
    • - -
    • 7.9.x
    • +
    • beta
    • -
    • fuse-console-7.7.x
    • +
    • preview
      -
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    costmanagement-metrics-operatorred-hat-camel-k
      +
    • CRD
    • +
      -
    • stable
    • +
    • techpreview
    • + +
    • 1.4.x
      +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    metering-ocpweb-terminal
      +
    • CRD
    • +
      -
    • 4.8
    • +
    • fast
    • + +
    • alpha
      +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[fast alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • metering-operator.4.8.0-202108061927 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • web-terminal.v1.3.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    ptp-operatorcompliance-operator
      @@ -1505,7 +1510,9 @@
      Fully complying with the recommendations
      -
    • 4.8
    • +
    • 4.7
    • + +
    • release-0.1
      -
    • ptp-operator.4.8.0-202108090903 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    klusterlet-productintegration-operator
      -
    • CRD
    • -
      -
    • release-2.2
    • - -
    • release-2.3
    • +
    • 1.x
      -
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    -
      +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    nfdmtv-operator
      @@ -1581,7 +1582,9 @@
      Fully complying with the recommendations
      -
    • 4.8
    • +
    • release-v2.1.0
    • + +
    • release-v2.0.0
      -
    • node-feature-discovery-operator.v4.8.0 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • mtv-operator.2.0.0 - (label=v4.7,max=not set,channels=[release-v2.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • mtv-operator.2.1.0 - (label=v4.8,max=not set,channels=[release-v2.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    serverless-operatorfuse-console
      @@ -1611,78 +1616,34 @@
      Fully complying with the recommendations
      -
    • stable
    • - -
    • 4.7
    • - -
    • 4.6
    • - -
    • 4.5
    • +
    • fuse-console-7.8.x
    • -
    • 4.3
    • +
    • 7.9.x
    • -
    • 4.4
    • +
    • fuse-console-7.7.x
      -
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[stable 4.7 4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[stable 4.7 4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[stable 4.7 4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    service-registry-operatorklusterlet-product
      @@ -1693,54 +1654,44 @@
      Fully complying with the recommendations
      -
    • serviceregistry-1.0
    • - -
    • serviceregistry-1.1
    • - -
    • serviceregistry-1
    • - -
    • 2.x
    • +
    • release-2.2
    • -
    • 2.0.x
    • +
    • release-2.3
      -
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    file-integrity-operatorcostmanagement-metrics-operator
      @@ -1749,9 +1700,7 @@
      Fully complying with the recommendations
      -
    • release-0.1
    • - -
    • 4.7
    • +
    • stable
      -
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-loggingamq-online
      +
    • CRD
    • +
    @@ -1783,162 +1734,160 @@
    Fully complying with the recommendations
  • stable
  • -
  • stable-5.1
  • - -
  • 4.6
  • - -
  • 5.0
  • -
      -
    -
    -
      +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    -
    poison-pill-manager -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • poison-pill.v0.1.2 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    openshift-pipelines-operator-rhelasticsearch-operator
      -
    • CRD
    • +
    • ClusterRole
      -
    • preview
    • +
    • stable-5.1
    • stable
    • +
    • 5.0
    • + +
    • 4.6
    • +
      -
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable-5.1 stable],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • redhat-openshift-pipelines.v1.5.1 - (label=v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    devworkspace-operatorsubmariner
      +
    • CRD
    • +
      -
    • fast
    • +
    • alpha-0.9
    • + +
    • alpha
      +
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
      -
    • devworkspace-operator.v0.9.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    mtv-operatorfuse-online
      +
    • CRD
    • +
      -
    • release-v2.1.0
    • +
    • 7.9.x
    • -
    • release-v2.0.0
    • +
    • fuse-online-v7.8.x
    • + +
    • fuse-online-7.7.x
      +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
      -
    • mtv-operator.2.0.0 - (label=v4.7,max=not set,channels=[release-v2.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • mtv-operator.2.1.0 - (label=v4.8,max=not set,channels=[release-v2.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    amq-onlinedatagrid
      @@ -1949,50 +1898,62 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • 8.1.x
    • + +
    • 8.2.x
    • + +
    • 8.0.x
      -
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    codeready-workspacesadvanced-cluster-management
      @@ -2003,54 +1964,86 @@
      Fully complying with the recommendations
      -
    • latest
    • +
    • release-2.0
    • + +
    • release-2.1
    • + +
    • release-2.3
    • + +
    • release-2.2
      -
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    windows-machine-config-operatorlocal-storage-operator
      @@ -2059,9 +2052,7 @@
      Fully complying with the recommendations
      -
    • preview
    • - -
    • stable
    • +
    • 4.8
      -
    • windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • local-storage-operator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    amq-streamsopenshift-pipelines-operator-rh
      @@ -2091,11 +2082,7 @@
      Fully complying with the recommendations
      -
    • amq-streams-1.x
    • - -
    • amq-streams-1.8.x
    • - -
    • amq-streams-1.7.x
    • +
    • preview
    • stable
    • @@ -2104,29 +2091,27 @@
      Fully complying with the recommendations
      -
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[amq-streams-1.x amq-streams-1.8.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.5.1 - (label=v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    rhpam-kogito-operatorcluster-kube-descheduler-operator
      @@ -2135,7 +2120,7 @@
      Fully complying with the recommendations
      -
    • 7.x
    • +
    • 4.8
      -
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterkubedescheduleroperator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    integration-operatorcluster-logging
      @@ -2165,7 +2148,13 @@
      Fully complying with the recommendations
      -
    • 1.x
    • +
    • stable
    • + +
    • stable-5.1
    • + +
    • 4.6
    • + +
    • 5.0
      -
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    businessautomation-operatorrhpam-kogito-operator
      -
    • CRD
    • -
      -
    • stable
    • +
    • 7.x
    -
      - -
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    +
      -
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    compliance-operatorfile-integrity-operator
      @@ -2267,10 +2216,10 @@
      Fully complying with the recommendations
      -
    • 4.7
    • -
    • release-0.1
    • +
    • 4.7
    • +
    @@ -2281,56 +2230,56 @@
    Fully complying with the recommendations
      -
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    red-hat-camel-krhacs-operator
      -
    • CRD
    • -
      -
    • techpreview
    • +
    • latest
    • -
    • 1.4.x
    • +
    • rhacs-3.64
    • + +
    • rhacs-3.62
      -
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.62 rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:YES,defaultChannel:YES, deprecated:NO)
    fuse-onlinejaeger-product
      @@ -2341,34 +2290,40 @@
      Fully complying with the recommendations
      -
    • 7.9.x
    • +
    • 1.17-stable
    • -
    • fuse-online-v7.8.x
    • +
    • tech-preview
    • -
    • fuse-online-7.7.x
    • +
    • 1.24-stable
    • + +
    • stable
    • + +
    • 1.20-stable
      -
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.20.4 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[1.24-stable stable],head:YES,defaultChannel:YES, deprecated:NO)
    submarinerserverless-operator
      @@ -2379,30 +2334,78 @@
      Fully complying with the recommendations
      -
    • alpha-0.9
    • +
    • stable
    • -
    • alpha
    • +
    • 4.7
    • + +
    • 4.6
    • + +
    • 4.5
    • + +
    • 4.3
    • + +
    • 4.4
      -
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[stable 4.7 4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[stable 4.7 4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[stable 4.7 4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
      -
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    skupper-operatorpoison-pill-manager
      @@ -2423,46 +2426,72 @@
      Fully complying with the recommendations
      -
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • poison-pill.v0.1.2 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    cluster-kube-descheduler-operatorcodeready-workspaces
      +
    • CRD
    • +
      -
    • 4.8
    • +
    • latest
      +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • clusterkubedescheduleroperator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    advanced-cluster-managementkubevirt-hyperconverged
      @@ -2473,86 +2502,94 @@
      Fully complying with the recommendations
      -
    • release-2.0
    • - -
    • release-2.1
    • - -
    • release-2.3
    • +
    • stable
    • -
    • release-2.2
    • +
    • 2.4
      -
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.3.0 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.4.0 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.4.1 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.4.2 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.4.3 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.4.4 - (label=v4.5,max=4.8,channels=[2.4],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.4.5 - (label=v4.5,max=4.8,channels=[2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    +
    +
      -
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v4.8.0 - (label=v4.8,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • +
    • kubevirt-hyperconverged-operator.v4.8.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    +
    vertical-pod-autoscaler +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      -
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • verticalpodautoscaler.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    sriov-network-operatorkubernetes-nmstate-operator
      @@ -2573,14 +2610,14 @@
      Fully complying with the recommendations
      -
    • sriov-network-operator.4.8.0-202108051934 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • kubernetes-nmstate-operator.4.8.0-202108041625 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    rh-service-binding-operatormetering-ocp
      @@ -2589,9 +2626,7 @@
      Fully complying with the recommendations
      -
    • beta
    • - -
    • preview
    • +
    • 4.8
      -
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • metering-operator.4.8.0-202108061927 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    kubevirt-hyperconvergedservice-registry-operator
      @@ -2633,66 +2656,54 @@
      Fully complying with the recommendations
      -
    • stable
    • +
    • serviceregistry-1.0
    • -
    • 2.4
    • +
    • serviceregistry-1.1
    • + +
    • serviceregistry-1
    • + +
    • 2.x
    • + +
    • 2.0.x
      -
    • kubevirt-hyperconverged-operator.v2.3.0 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.4.0 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.4.1 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.4.2 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.4.3 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.4.4 - (label=v4.5,max=4.8,channels=[2.4],head:NO,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.4.5 - (label=v4.5,max=4.8,channels=[2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
      -
    • kubevirt-hyperconverged-operator.v4.8.0 - (label=v4.8,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • kubevirt-hyperconverged-operator.v4.8.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    kubernetes-nmstate-operatorsriov-network-operator
      @@ -2713,14 +2724,14 @@
      Fully complying with the recommendations
      -
    • kubernetes-nmstate-operator.4.8.0-202108041625 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • sriov-network-operator.4.8.0-202108051934 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    vertical-pod-autoscalerptp-operator
      @@ -2741,58 +2752,44 @@
      Fully complying with the recommendations
      -
    • verticalpodautoscaler.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • ptp-operator.4.8.0-202108090903 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    jaeger-productwindows-machine-config-operator
      -
    • CRD
    • -
      -
    • 1.17-stable
    • - -
    • tech-preview
    • - -
    • 1.24-stable
    • +
    • preview
    • stable
    • -
    • 1.20-stable
    • -
      -
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v1.20.4 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
    • -
      -
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[1.24-stable stable],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    rhacs-operatorskupper-operator
      @@ -2801,11 +2798,7 @@
      Fully complying with the recommendations
      -
    • latest
    • - -
    • rhacs-3.64
    • - -
    • rhacs-3.62
    • +
    • alpha
      -
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.62 rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    web-terminaldevworkspace-operator
      -
    • CRD
    • -
    @@ -2845,102 +2832,114 @@
    Fully complying with the recommendations
  • fast
  • -
  • alpha
  • -
      -
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[fast alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • web-terminal.v1.3.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • devworkspace-operator.v0.9.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    elasticsearch-operatornfd
      -
    • ClusterRole
    • -
      -
    • stable-5.1
    • - -
    • stable
    • - -
    • 5.0
    • - -
    • 4.6
    • +
    • 4.8
      -
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable-5.1 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • -
      -
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • - -
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • +
    • node-feature-discovery-operator.v4.8.0 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    local-storage-operatorbusinessautomation-operator
      +
    • CRD
    • +
      -
    • 4.8
    • +
    • stable
      +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • +
      -
    • local-storage-operator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    datagridamq-streams
      @@ -2951,55 +2950,35 @@
      Fully complying with the recommendations
      -
    • 8.1.x
    • +
    • amq-streams-1.x
    • -
    • 8.2.x
    • +
    • amq-streams-1.8.x
    • -
    • 8.0.x
    • +
    • amq-streams-1.7.x
    • + +
    • stable
      -
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • - -
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • -
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:YES,defaultChannel:YES, deprecated:NO)
      -
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[amq-streams-1.x amq-streams-1.8.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    costmanagement-metrics-operatorkiali-ossm -

    COMPLY

    +

    NOT COMPLY

    COMPLY

    @@ -163,61 +163,71 @@
    Grade

    USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For costmanagement-metrics-operator.1.1.0:

      +

      For kiali-operator.v1.24.8:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" kialis.kiali.io does not have a status descriptor
    • -
    • "ERROR" costmanagementmetricsconfigs.costmanagement-metrics-cfg.openshift.io does not have a status descriptor
    • +
    • "ERROR" monitoringdashboards.monitoring.kiali.io does not have a status descriptor
    • -
    • "ERROR" packaging does not have a spec descriptor
    • +
    • "ERROR" istio_namespace does not have a spec descriptor
    • -
    • "ERROR" prometheus_config does not have a spec descriptor
    • +
    • "ERROR" deployment does not have a spec descriptor
    • -
    • "ERROR" source does not have a spec descriptor
    • +
    • "ERROR" external_services does not have a spec descriptor
    • -
    • "ERROR" upload does not have a spec descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "ERROR" authentication does not have a spec descriptor
    • +
    • "ERROR" installation_tag does not have a spec descriptor
    • +
    • "ERROR" items does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for packaging
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for prometheus_config
    • -
    • "WARNING" Add a spec descriptor for source
    • +
    • "WARNING" Add a spec descriptor for istio_namespace
    • -
    • "WARNING" Add a spec descriptor for upload
    • +
    • "WARNING" Add a spec descriptor for deployment
    • -
    • "WARNING" Add a spec descriptor for authentication
    • +
    • "WARNING" Add a spec descriptor for external_services
    • + +
    • "WARNING" Add a spec descriptor for server
    • + +
    • "WARNING" Add a spec descriptor for installation_tag
    • + +
    • "WARNING" Add a spec descriptor for items
    • + +
    • "WARNING" Add CRD validation for Kiali/v1alpha1
    • + +
    • "WARNING" Add CRD validation for MonitoringDashboard/v1alpha1
    • @@ -228,25 +238,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For costmanagement-metrics-operator.1.1.0:

      +

      For kiali-operator.v1.24.8:

      -

    • "WARNING" (costmanagement-metrics-operator.1.1.0) csv.metadata.Name costmanagement-metrics-operator.1.1.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (kiali-operator.v1.24.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kialis.kiali.io" "monitoringdashboards.monitoring.kiali.io"])
    • @@ -256,105 +268,122 @@
      Grade

    NOT USED

    Grade B
    (800)
    Grade D
    (300)
    openshift-pipelines-operator-rhrhpam-kogito-operator

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • preview
    • +
    • 7.x
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • redhat-openshift-pipelines.v1.5.1
    • - -
    • redhat-openshift-pipelines.v1.5.1
    • - -
    -
    -

    NOT USED

    USED

    -

    PASS

    +

    ERRORS AND WARNINGS

    + +Info +
    +
      + + +
      +

      For rhpam-kogito-operator.v7.11.1-1:

      + +

    • "ERROR" gitSource does not have a spec descriptor
    • + +
    • "ERROR" type does not have a spec descriptor
    • + +
    • "ERROR" image does not have a spec descriptor
    • + +
    • "ERROR" replicas does not have a spec descriptor
    • + +
    • "ERROR" kogitobuilds.rhpam.kiegroup.org does not have a status descriptor
    • + +
    • "ERROR" kogitoruntimes.rhpam.kiegroup.org does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for gitSource
    • + +
    • "WARNING" Add a spec descriptor for type
    • + +
    • "WARNING" Add a spec descriptor for image
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + + + +
    +
    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For redhat-openshift-pipelines.v1.5.1:

      - - -

    • "WARNING" (redhat-openshift-pipelines.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - - -
      -

      For redhat-openshift-pipelines.v1.5.1:

      +

      For rhpam-kogito-operator.v7.11.1-1:

      -

    • "WARNING" (redhat-openshift-pipelines.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (rhpam-kogito-operator.v7.11.1-1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -364,47 +393,51 @@
      Grade

    NOT USED

    Grade B
    (700)
    Grade B
    (600)
    amq7-cert-manager-operatoradvanced-cluster-management -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 1.x
    • +
    • release-2.3
    • -
    • alpha
    • +
    • release-2.2
    • + +
    • release-2.1
    • + +
    • release-2.0
    -

    NOT USED

    +

    USED

    @@ -414,691 +447,414 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For amq7-cert-manager.v1.0.1:

      - -

    • "ERROR" organization does not have a spec descriptor
    • +

      For advanced-cluster-management.v2.3.1:

      -

    • "ERROR" issuerRef does not have a spec descriptor
    • +
    • "ERROR" placementImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" certificates.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" observabilityAddonSpec does not have a spec descriptor
    • -
    • "ERROR" issuers.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" storageConfigObject does not have a spec descriptor
    • -
    • "ERROR" clusterissuers.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" enableMetrics does not have a spec descriptor
    • -
    • "ERROR" orders.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" interval does not have a spec descriptor
    • -
    • "ERROR" challenges.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" observabilityAddonSpec does not have a spec descriptor
    • +
    • "ERROR" storageConfig does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for organization
    • +
    • "ERROR" type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for issuerRef
    • +
    • "ERROR" pathname does not have a spec descriptor
    • +
    • "ERROR" packageFilter does not have a spec descriptor
    • -
      -

      For amq7-cert-manager.v1.0.1:

      +

    • "ERROR" packageOverrides does not have a spec descriptor
    • -
    • "ERROR" organization does not have a spec descriptor
    • +
    • "ERROR" placement does not have a spec descriptor
    • -
    • "ERROR" issuerRef does not have a spec descriptor
    • +
    • "ERROR" managedDomains does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" certificates.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" issuers.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" clusterissuers.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" observabilityaddons.observability.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" orders.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" challenges.certmanager.k8s.io does not have a status descriptor
    • +
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • +
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for organization
    • -
    • "WARNING" Add a spec descriptor for issuerRef
    • +
    • "WARNING" Add a spec descriptor for placementImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for observabilityAddonSpec
    • +
    • "WARNING" Add a spec descriptor for storageConfigObject
    • -
      -

      For amq7-cert-manager.v1.0.1:

      +

    • "WARNING" Add a spec descriptor for enableMetrics
    • +
    • "WARNING" Add a spec descriptor for interval
    • -
    • "WARNING" (amq7-cert-manager.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for observabilityAddonSpec
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certificates.certmanager.k8s.io" "challenges.certmanager.k8s.io" "clusterissuers.certmanager.k8s.io" "issuers.certmanager.k8s.io" "orders.certmanager.k8s.io"])
    • +
    • "WARNING" Add a spec descriptor for storageConfig
    • +
    • "WARNING" Add a spec descriptor for type
    • -
      -

      For amq7-cert-manager.v1.0.1:

      +

    • "WARNING" Add a spec descriptor for pathname
    • +
    • "WARNING" Add a spec descriptor for packageFilter
    • -
    • "WARNING" (amq7-cert-manager.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for packageOverrides
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certificates.certmanager.k8s.io" "challenges.certmanager.k8s.io" "clusterissuers.certmanager.k8s.io" "issuers.certmanager.k8s.io" "orders.certmanager.k8s.io"])
    • +
    • "WARNING" Add a spec descriptor for placement
    • +
    • "WARNING" Add a spec descriptor for managedDomains
    • +
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    amq7-interconnect-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • 1.2.0
    • - -
    • 1.10.x
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • - -
      -

      For amq7-interconnect-operator.v1.10.1:

      +

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
    • -
    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value core.observatorium.io/v1alpha1, Kind=Observatorium: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
    • -
      -

      For amq7-interconnect-operator.v1.10.1:

      +

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
    • -
    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1alpha1, Kind=GitOpsCluster: provided API should have an example annotation
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
    • -
      -

      For amq7-interconnect-operator.v1.10.1:

      +

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
    • -
    • "WARNING" (amq7-interconnect-operator.v1.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["interconnects.interconnectedcloud.github.io"])
    • +
    • "WARNING" Warning: Value submarineraddon.open-cluster-management.io/v1alpha1, Kind=SubmarinerConfig: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • -
      -

      For amq7-interconnect-operator.v1.10.1:

      +

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • -
    • "WARNING" (amq7-interconnect-operator.v1.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["interconnects.interconnectedcloud.github.io"])
    • +
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    openshift-gitops-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • preview
    • - -
    -
    - -
    -

    REQUIRED

    - - - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • openshift-gitops-operator.v1.2.0
    • - -
    • openshift-gitops-operator.v1.2.0
    • - -
    -
    - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      -
      -

      For openshift-gitops-operator.v1.2.0:

      +

      For advanced-cluster-management.v2.2.7:

      -

    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" controller does not have a spec descriptor
    • +
    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" dex does not have a spec descriptor
    • +
    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" ha does not have a spec descriptor
    • +
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • -
    • "ERROR" redis does not have a spec descriptor
    • +
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" repo does not have a spec descriptor
    • +
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" argocds.argoproj.io does not have a status descriptor
    • +
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" storageConfigObject does not have a spec descriptor
    • +
    • "ERROR" managedDomains does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "ERROR" type does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for controller
    • +
    • "ERROR" pathname does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for dex
    • +
    • "ERROR" packageFilter does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ha
    • +
    • "ERROR" packageOverrides does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redis
    • +
    • "ERROR" placement does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for repo
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=ApplicationSet: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value pipelines.openshift.io/v1alpha1, Kind=GitopsService: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • -
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=Application: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value core.observatorium.io/v1alpha1, Kind=Observatorium: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=AppProject: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
    • -
      -

      For openshift-gitops-operator.v1.2.0:

      +

    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
    • -
    • "ERROR" server does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
    • -
    • "ERROR" controller does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
    • -
    • "ERROR" dex does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
    • -
    • "ERROR" ha does not have a spec descriptor
    • +
    • "WARNING" Warning: Value observability.open-cluster-management.io/v1beta1, Kind=ObservabilityAddon: provided API should have an example annotation
    • -
    • "ERROR" redis does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
    • -
    • "ERROR" repo does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
    • -
    • "ERROR" argocds.argoproj.io does not have a status descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for controller
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for dex
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for ha
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for redis
    • +
    • "WARNING" Warning: Value submarineraddon.open-cluster-management.io/v1alpha1, Kind=SubmarinerConfig: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for repo
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=ApplicationSet: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value pipelines.openshift.io/v1alpha1, Kind=GitopsService: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=Application: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=AppProject: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • -
      -

      For openshift-gitops-operator.v1.2.0:

      +

    • "WARNING" Add a spec descriptor for storageConfigObject
    • +
    • "WARNING" Add a spec descriptor for managedDomains
    • -
    • "WARNING" (openshift-gitops-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for type
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gitopsservices.pipelines.openshift.io"])
    • +
    • "WARNING" Add a spec descriptor for pathname
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for packageFilter
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for packageOverrides
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for placement
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For advanced-cluster-management.v2.1.6:

      -
      -

      For openshift-gitops-operator.v1.2.0:

      +

    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • +
    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "WARNING" (openshift-gitops-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gitopsservices.pipelines.openshift.io"])
    • +
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" storageConfigObject does not have a spec descriptor
    • +
    • "ERROR" managedDomains does not have a spec descriptor
    • +
    • "ERROR" type does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    serverless-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • 4.7
    • - -
    • 4.6
    • - -
    • 4.5
    • - -
    • 4.3
    • - -
    • 4.4
    • - -
    -
    - -
    -

    REQUIRED

    - - - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • serverless-operator.v1.16.0
    • - -
    • serverless-operator.v1.13.0
    • - -
    • serverless-operator.v1.13.0
    • - -
    • serverless-operator.v1.10.2
    • - -
    • serverless-operator.v1.7.2
    • - -
    • serverless-operator.v1.7.2
    • - -
    -
    - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" pathname does not have a spec descriptor
    • - -
      -

      For serverless-operator.v1.16.0:

      +

    • "ERROR" placement does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" packageFilter does not have a spec descriptor
    • -
    • "ERROR" source does not have a spec descriptor
    • +
    • "ERROR" packageOverrides does not have a spec descriptor
    • -
    • "ERROR" channel does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" knativekafkas.operator.serverless.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • -
    • "WARNING" Add a spec descriptor for source
    • +
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • -
    • "WARNING" Add a spec descriptor for channel
    • +
    • "WARNING" Add a spec descriptor for storageConfigObject
    • +
    • "WARNING" Add a spec descriptor for managedDomains
    • -
      -

      For serverless-operator.v1.13.0:

      +

    • "WARNING" Add a spec descriptor for type
    • -
    • "ERROR" knativekafkas.operator.serverless.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for pathname
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for placement
    • -
    • "ERROR" source does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for packageFilter
    • -
    • "ERROR" channel does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for packageOverrides
    • +
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • -
    • "WARNING" Add a spec descriptor for source
    • +
    • "WARNING" Warning: Value core.observatorium.io/v1alpha1, Kind=Observatorium: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for channel
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
    • -
      -

      For serverless-operator.v1.13.0:

      +

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
    • -
    • "ERROR" knativekafkas.operator.serverless.openshift.io does not have a status descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
    • -
    • "ERROR" source does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
    • -
    • "ERROR" channel does not have a spec descriptor
    • +
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for source
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for channel
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
    • -
      -

      For serverless-operator.v1.10.2:

      +

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • -
      -

      For serverless-operator.v1.7.2:

      +

    • "WARNING" Warning: Value observability.open-cluster-management.io/v1beta1, Kind=ObservabilityAddon: provided API should have an example annotation
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • -
      -

      For serverless-operator.v1.7.2:

      +

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For advanced-cluster-management.v2.0.10:

      +

    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • -
      -

      For serverless-operator.v1.16.0:

      +

    • "ERROR" managedDomains does not have a spec descriptor
    • + +
    • "ERROR" type does not have a spec descriptor
    • +
    • "ERROR" pathname does not have a spec descriptor
    • +
    • "ERROR" packageFilter does not have a spec descriptor
    • -
      -

      For serverless-operator.v1.13.0:

      +

    • "ERROR" packageOverrides does not have a spec descriptor
    • +
    • "ERROR" placement does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • -
      -

      For serverless-operator.v1.13.0:

      +

    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • +
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • +
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • -
      -

      For serverless-operator.v1.10.2:

      +

    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for managedDomains
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • +
    • "WARNING" Add a spec descriptor for type
    • +
    • "WARNING" Add a spec descriptor for pathname
    • -
      -

      For serverless-operator.v1.7.2:

      +

    • "WARNING" Add a spec descriptor for packageFilter
    • +
    • "WARNING" Add a spec descriptor for packageOverrides
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • +
    • "WARNING" Add a spec descriptor for placement
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • -
      -

      For serverless-operator.v1.7.2:

      +

    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • +
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • + +
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • @@ -1106,200 +862,251 @@
      Grade

    NOT USED

    Grade C
    (500)
    amq-online -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    -
      + +Info +
      +
        - -
        -

        For amq-online.1.7.1-0.1628610187.p:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
        +

        For advanced-cluster-management.v2.3.1:

        -

      • "ERROR" standardinfraconfigs.admin.enmasse.io does not have a status descriptor
      • -
      • "ERROR" brokeredinfraconfigs.admin.enmasse.io does not have a status descriptor
      • +
      • "WARNING" (advanced-cluster-management.v2.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" addressplans.admin.enmasse.io does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" addressspaceplans.admin.enmasse.io does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" authenticationservices.admin.enmasse.io does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" messagingusers.user.enmasse.io does not have a status descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" broker does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" router does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" broker does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" addressType does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" resources does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" addressSpaceType does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" resourceLimits does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" addressPlans does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" standard does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" address does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" authentication does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "ERROR" authorization does not have a spec descriptor
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Warning: Value admin.enmasse.io/v1beta1, Kind=ConsoleService: provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Warning: Value enmasse.io/v1beta1, Kind=AddressSpaceSchema: provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for broker
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for router
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for broker
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for addressType
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resources
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for addressSpaceType
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for resourceLimits
      • +
      • "WARNING" provided API should have an example annotation
      • -
      • "WARNING" Add a spec descriptor for addressPlans
      • -
      • "WARNING" Add a spec descriptor for standard
      • +
        +

        For advanced-cluster-management.v2.2.7:

        -

      • "WARNING" Add a spec descriptor for address
      • -
      • "WARNING" Add a spec descriptor for authentication
      • +
      • "WARNING" (advanced-cluster-management.v2.2.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for authorization
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io" "observatoria.core.observatorium.io" "checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io" "multiclusterobservabilities.observability.open-cluster-management.io" "observabilityaddons.observability.open-cluster-management.io" "clustermanagers.operator.open-cluster-management.io" "multiclusterhubs.operator.open-cluster-management.io" "submarinerconfigs.submarineraddon.open-cluster-management.io"])
      • +
      • "WARNING" provided API should have an example annotation
      • +
      • "WARNING" provided API should have an example annotation
      • -
      -
      - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
      -

      For amq-online.1.7.1-0.1628610187.p:

      +

    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" (amq-online.1.7.1-0.1628610187.p) csv.metadata.Name amq-online.1.7.1-0.1628610187.p is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" provided API should have an example annotation
    • "WARNING" provided API should have an example annotation
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
    -
    - -

    NOT USED

    NOT USED

    Grade B
    (600)
    devworkspace-operatorcostmanagement-metrics-operator

    COMPLY

    COMPLY

    -

    NOT USED

    +

    USED

    @@ -1309,35 +1116,47 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For devworkspace-operator.v0.9.0:

      +

      For costmanagement-metrics-operator.1.1.0:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" costmanagementmetricsconfigs.costmanagement-metrics-cfg.openshift.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha1, Kind=DevWorkspace: provided API should have an example annotation
    • +
    • "ERROR" packaging does not have a spec descriptor
    • -
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha2, Kind=DevWorkspace: provided API should have an example annotation
    • +
    • "ERROR" prometheus_config does not have a spec descriptor
    • -
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha1, Kind=DevWorkspaceTemplate: provided API should have an example annotation
    • +
    • "ERROR" source does not have a spec descriptor
    • -
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha2, Kind=DevWorkspaceTemplate: provided API should have an example annotation
    • +
    • "ERROR" upload does not have a spec descriptor
    • + +
    • "ERROR" authentication does not have a spec descriptor
    • -
    • "WARNING" Warning: Value controller.devfile.io/v1alpha1, Kind=DevWorkspaceRouting: provided API should have an example annotation
    • + +
    • "WARNING" Add a spec descriptor for packaging
    • + +
    • "WARNING" Add a spec descriptor for prometheus_config
    • + +
    • "WARNING" Add a spec descriptor for source
    • + +
    • "WARNING" Add a spec descriptor for upload
    • + +
    • "WARNING" Add a spec descriptor for authentication
    • @@ -1348,37 +1167,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For devworkspace-operator.v0.9.0:

      - - -

    • "WARNING" (devworkspace-operator.v0.9.0) csv.Spec.Icon not specified
    • - -
    • "WARNING" (devworkspace-operator.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • +

      For costmanagement-metrics-operator.1.1.0:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (costmanagement-metrics-operator.1.1.0) csv.metadata.Name costmanagement-metrics-operator.1.1.0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • @@ -1388,230 +1195,181 @@
      Grade

    NOT USED

    Grade B
    (700)
    Grade B
    (800)
    fuse-apicuritometering-ocp -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • fuse-apicurito-7.7.x
    • - -
    • fuse-apicurito-7.8.x
    • - -
    • fuse-apicurito-7.9.x
    • +
    • 4.8
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • metering-operator.4.8.0-202108061927
    • + +
    +
    +

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For apicuritooperator.v7.7.1:

      +

      For metering-operator.4.8.0-202108061927:

      -

    • "ERROR" apicuritos.apicur.io does not have a status descriptor
    • +
    • "ERROR" meteringconfigs.metering.openshift.io does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" reports.metering.openshift.io does not have a status descriptor
    • +
    • "ERROR" reportqueries.metering.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for spec field `size` in Apicurito/v1alpha1
    • +
    • "ERROR" reportdatasources.metering.openshift.io does not have a status descriptor
    • +
    • "ERROR" storagelocations.metering.openshift.io does not have a status descriptor
    • -
      -

      For fuse-apicurito.v7.8.1:

      +

    • "ERROR" prestotables.metering.openshift.io does not have a status descriptor
    • -
    • "ERROR" apicuritoes.apicur.io does not have a status descriptor
    • +
    • "ERROR" hivetables.metering.openshift.io does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" storage does not have a spec descriptor
    • +
    • "ERROR" query does not have a spec descriptor
    • +
    • "ERROR" schedule does not have a spec descriptor
    • -
      -

      For fuse-apicurito.v7.9.0:

      +

    • "ERROR" columns does not have a spec descriptor
    • -
    • "ERROR" apicuritoes.apicur.io does not have a status descriptor
    • +
    • "ERROR" inputs does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" query does not have a spec descriptor
    • +
    • "ERROR" prometheusMetricsImporter does not have a spec descriptor
    • +
    • "ERROR" hive does not have a spec descriptor
    • +
    • "ERROR" schema does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" tableName does not have a spec descriptor
    • +
    • "ERROR" catalog does not have a spec descriptor
    • -
      -

      For apicuritooperator.v7.7.1:

      +

    • "ERROR" columns does not have a spec descriptor
    • +
    • "ERROR" createTableAs does not have a spec descriptor
    • -
    • "WARNING" (apicuritooperator.v7.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" query does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicuritos.apicur.io"])
    • +
    • "ERROR" columns does not have a spec descriptor
    • +
    • "ERROR" databaseName does not have a spec descriptor
    • -
      -

      For fuse-apicurito.v7.8.1:

      +

    • "ERROR" external does not have a spec descriptor
    • +
    • "ERROR" fileFormat does not have a spec descriptor
    • -
    • "WARNING" (fuse-apicurito.v7.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" location does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicuritoes.apicur.io"])
    • +
    • "ERROR" rowFormat does not have a spec descriptor
    • +
    • "ERROR" tableName does not have a spec descriptor
    • -
      -

      For fuse-apicurito.v7.9.0:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" (fuse-apicurito.v7.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for storage
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicuritoes.apicur.io"])
    • +
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" Add a spec descriptor for schedule
    • +
    • "WARNING" Add a spec descriptor for columns
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    kubernetes-nmstate-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • 4.8
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for inputs
    • - -
      -

      For kubernetes-nmstate-operator.4.8.0-202108041625:

      +

    • "WARNING" Add a spec descriptor for query
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for prometheusMetricsImporter
    • -
    • "ERROR" nmstates.nmstate.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for hive
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for schema
    • + +
    • "WARNING" Add a spec descriptor for tableName
    • +
    • "WARNING" Add a spec descriptor for catalog
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "WARNING" Add a spec descriptor for columns
    • + +
    • "WARNING" Add a spec descriptor for createTableAs
    • + +
    • "WARNING" Add a spec descriptor for query
    • + +
    • "WARNING" Add a spec descriptor for columns
    • + +
    • "WARNING" Add a spec descriptor for databaseName
    • + +
    • "WARNING" Add a spec descriptor for external
    • + +
    • "WARNING" Add a spec descriptor for fileFormat
    • + +
    • "WARNING" Add a spec descriptor for location
    • + +
    • "WARNING" Add a spec descriptor for rowFormat
    • + +
    • "WARNING" Add a spec descriptor for tableName
    • @@ -1622,25 +1380,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For kubernetes-nmstate-operator.4.8.0-202108041625:

      +

      For metering-operator.4.8.0-202108061927:

      -

    • "WARNING" (kubernetes-nmstate-operator.4.8.0-202108041625) csv.metadata.Name kubernetes-nmstate-operator.4.8.0-202108041625 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (metering-operator.4.8.0-202108061927) csv.metadata.Name metering-operator.4.8.0-202108061927 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • @@ -1654,154 +1412,298 @@
      Grade
    rh-service-binding-operatorocs-operator -

    COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • beta
    • - -
    • preview
    • - -
    -
    -
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • ocs-operator.v4.7.3
    • + +
    • ocs-operator.v4.8.1
    • + +
    +
    +

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For service-binding-operator.v0.9.1:

      +

      For ocs-operator.v4.7.3:

      -

    • "ERROR" application does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" services does not have a spec descriptor
    • +
    • "ERROR" storageDeviceSets does not have a spec descriptor
    • -
    • "ERROR" application does not have a spec descriptor
    • +
    • "ERROR" manageNodes does not have a spec descriptor
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "ERROR" monPVCTemplate does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" storageclusters.ocs.openshift.io does not have a status descriptor
    • -
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • -
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • +
    • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucketClaim: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucket: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for application
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephBlockPool: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for services
    • +
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NamespaceStore: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for application
    • +
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BucketClass: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NooBaa: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value ocs.openshift.io/v1, Kind=OCSInitialization: provided API should have an example annotation
    • -
      -

      For service-binding-operator.v0.9.1:

      +

    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStoreUser: provided API should have an example annotation
    • -
    • "ERROR" application does not have a spec descriptor
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephFilesystem: provided API should have an example annotation
    • -
    • "ERROR" services does not have a spec descriptor
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZone: provided API should have an example annotation
    • -
    • "ERROR" application does not have a spec descriptor
    • +
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BackingStore: provided API should have an example annotation
    • -
    • "ERROR" service does not have a spec descriptor
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephClient: provided API should have an example annotation
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephRBDMirror: provided API should have an example annotation
    • -
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectRealm: provided API should have an example annotation
    • -
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephNFS: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZoneGroup: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for application
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephCluster: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for services
    • +
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStore: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for application
    • +
    • "WARNING" Add a spec descriptor for storageDeviceSets
    • -
    • "WARNING" Add a spec descriptor for service
    • +
    • "WARNING" Add a spec descriptor for manageNodes
    • +
    • "WARNING" Add a spec descriptor for monPVCTemplate
    • -
    -
    +
    +

    For ocs-operator.v4.8.1:

    + +

  • "ERROR" storageclusters.ocs.openshift.io does not have a status descriptor
  • + +
  • "ERROR" Owned CRDs do not have resources specified
  • + +
  • "ERROR" manageNodes does not have a spec descriptor
  • + +
  • "ERROR" monPVCTemplate does not have a spec descriptor
  • + +
  • "ERROR" storageDeviceSets does not have a spec descriptor
  • + + +
  • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NamespaceStore: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ocs.openshift.io/v1, Kind=OCSInitialization: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStore: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephNFS: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephClient: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephRBDMirror: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value replication.storage.openshift.io/v1alpha1, Kind=VolumeReplication: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BucketClass: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucket: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephCluster: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephFilesystem: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectRealm: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZone: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value replication.storage.openshift.io/v1alpha1, Kind=VolumeReplicationClass: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NooBaa: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephBlockPool: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStoreUser: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephFilesystemMirror: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZoneGroup: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BackingStore: provided API should have an example annotation
  • + +
  • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucketClaim: provided API should have an example annotation
  • + +
  • "WARNING" Add a spec descriptor for manageNodes
  • + +
  • "WARNING" Add a spec descriptor for monPVCTemplate
  • + +
  • "WARNING" Add a spec descriptor for storageDeviceSets
  • + + + + +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For service-binding-operator.v0.9.1:

      +

      For ocs-operator.v4.7.3:

      -

    • "WARNING" (service-binding-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were 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: (["ocs-metrics-exporter"]),ClusterRoleBinding: (["ocs-metrics-exporter"]),Role: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),RoleBinding: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation

    • -

      For service-binding-operator.v0.9.1:

      +

      For ocs-operator.v4.8.1:

      -

    • "WARNING" (service-binding-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were 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: (["ocs-metrics-exporter"]),ClusterRoleBinding: (["ocs-metrics-exporter"]),Role: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),RoleBinding: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -1811,40 +1713,34 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (300)
    service-registry-operatorrh-service-binding-operator

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • serviceregistry-1.0
    • - -
    • serviceregistry-1.1
    • - -
    • serviceregistry-1
    • - -
    • 2.x
    • +
    • beta
    • -
    • 2.0.x
    • +
    • preview
    @@ -1853,91 +1749,86 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For service-registry-operator.v1.0.2:

      - -

    • "ERROR" error spec does not exist
    • - - - -
      -

      For service-registry-operator.v1.1.4:

      +

      For service-binding-operator.v0.9.1:

      -

    • "ERROR" error spec does not exist
    • +
    • "ERROR" application does not have a spec descriptor
    • +
    • "ERROR" services does not have a spec descriptor
    • +
    • "ERROR" application does not have a spec descriptor
    • -
      -

      For service-registry-operator.v1.1.4:

      +

    • "ERROR" service does not have a spec descriptor
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • +
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • -
      -

      For service-registry-operator.v2.0.2:

      -

    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for application
    • -
    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for services
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for application
    • -
    • "ERROR" configuration does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for service
    • -
    • "ERROR" configuration does not have a spec descriptor
    • +
      +

      For service-binding-operator.v0.9.1:

      -

    • "WARNING" Add a spec descriptor for configuration
    • +
    • "ERROR" application does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for configuration
    • +
    • "ERROR" services does not have a spec descriptor
    • +
    • "ERROR" application does not have a spec descriptor
    • -
      -

      For service-registry-operator.v2.0.2:

      +

    • "ERROR" service does not have a spec descriptor
    • -
    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • +
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • -
    • "ERROR" configuration does not have a spec descriptor
    • -
    • "ERROR" configuration does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for application
    • +
    • "WARNING" Add a spec descriptor for services
    • -
    • "WARNING" Add a spec descriptor for configuration
    • +
    • "WARNING" Add a spec descriptor for application
    • -
    • "WARNING" Add a spec descriptor for configuration
    • +
    • "WARNING" Add a spec descriptor for service
    • @@ -1948,59 +1839,32 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For service-registry-operator.v1.0.2:

      - - -

    • "WARNING" (service-registry-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
    • - - -
      -

      For service-registry-operator.v1.1.4:

      - - -

    • "WARNING" (service-registry-operator.v1.1.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
    • - - -
      -

      For service-registry-operator.v1.1.4:

      - - -

    • "WARNING" (service-registry-operator.v1.1.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
    • - - -
      -

      For service-registry-operator.v2.0.2:

      +

      For service-binding-operator.v0.9.1:

      -

    • "WARNING" (service-registry-operator.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (service-binding-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.

    • -

      For service-registry-operator.v2.0.2:

      +

      For service-binding-operator.v0.9.1:

      -

    • "WARNING" (service-registry-operator.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (service-binding-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -2010,847 +1874,571 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade B
    (600)
    3scale-operatorrhsso-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • threescale-2.6
    • - -
    • threescale-2.10
    • - -
    • threescale-2.7
    • - -
    • threescale-2.9
    • - -
    • threescale-2.8
    • +
    • alpha
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • 3scale-operator.v0.3.0
    • - -
    • 3scale-operator.v0.4.2
    • - -
    • 3scale-operator.v0.6.1
    • - -
    • 3scale-operator.v0.5.5
    • - -
    -
    -

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For 3scale-operator.v0.3.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • +

      For rhsso-operator.7.4.8:

      -

    • "ERROR" apis.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" keycloaks.keycloak.org does not have a status descriptor
    • -
    • "ERROR" bindings.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" keycloakrealms.keycloak.org does not have a status descriptor
    • -
    • "ERROR" limits.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" keycloakbackups.keycloak.org does not have a status descriptor
    • -
    • "ERROR" mappingrules.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" keycloakclients.keycloak.org does not have a status descriptor
    • -
    • "ERROR" metrics.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" keycloakusers.keycloak.org does not have a status descriptor
    • -
    • "ERROR" plans.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" instances does not have a spec descriptor
    • -
    • "ERROR" highAvailability does not have a spec descriptor
    • +
    • "ERROR" externalAccess does not have a spec descriptor
    • -
    • "ERROR" system does not have a spec descriptor
    • +
    • "ERROR" realm does not have a spec descriptor
    • -
    • "ERROR" description does not have a spec descriptor
    • +
    • "ERROR" instanceSelector does not have a spec descriptor
    • -
    • "ERROR" integrationMethod does not have a spec descriptor
    • +
    • "ERROR" realmSelector does not have a spec descriptor
    • -
    • "ERROR" APISelector does not have a spec descriptor
    • +
    • "ERROR" client does not have a spec descriptor
    • -
    • "ERROR" credentialsRef does not have a spec descriptor
    • +
    • "ERROR" realmSelector does not have a spec descriptor
    • -
    • "ERROR" description does not have a spec descriptor
    • +
    • "ERROR" user does not have a spec descriptor
    • -
    • "ERROR" maxValue does not have a spec descriptor
    • -
    • "ERROR" metricRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for instances
    • -
    • "ERROR" period does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for externalAccess
    • -
    • "ERROR" increment does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for realm
    • -
    • "ERROR" method does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for instanceSelector
    • -
    • "ERROR" metricRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for realmSelector
    • -
    • "ERROR" path does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for client
    • -
    • "ERROR" unit does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for realmSelector
    • -
    • "ERROR" description does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for user
    • -
    • "ERROR" incrementHits does not have a spec descriptor
    • -
    • "ERROR" trialPeriod does not have a spec descriptor
    • -
    • "ERROR" approvalRequired does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" costs does not have a spec descriptor
    • -
    • "ERROR" default does not have a spec descriptor
    • +
      +

      For rhsso-operator.7.4.8:

      -

    • "ERROR" limitSelector does not have a spec descriptor
    • -
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • +
    • "WARNING" (rhsso-operator.7.4.8) csv.metadata.Name rhsso-operator.7.4.8 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["keycloakbackups.keycloak.org" "keycloakclients.keycloak.org" "keycloakrealms.keycloak.org" "keycloaks.keycloak.org" "keycloakusers.keycloak.org"])
    • -
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • -
    • "ERROR" username does not have a spec descriptor
    • -
    • "ERROR" email does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    cincinnati-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • v1
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • + +
      +

      For update-service-operator.v4.6.0:

      -

    • "ERROR" organizationName does not have a spec descriptor
    • +
    • "ERROR" updateservices.updateservice.operator.openshift.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for highAvailability
    • +
    • "ERROR" foo does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for system
    • -
    • "WARNING" Add a spec descriptor for description
    • +
    • "WARNING" Add CRD validation for spec field `foo` in UpdateService/v1
    • -
    • "WARNING" Add a spec descriptor for integrationMethod
    • +
    • "WARNING" Add a spec descriptor for foo
    • -
    • "WARNING" Add a spec descriptor for APISelector
    • -
    • "WARNING" Add a spec descriptor for credentialsRef
    • -
    • "WARNING" Add a spec descriptor for description
    • - -
    • "WARNING" Add a spec descriptor for maxValue
    • - -
    • "WARNING" Add a spec descriptor for metricRef
    • - -
    • "WARNING" Add a spec descriptor for period
    • - -
    • "WARNING" Add a spec descriptor for increment
    • - -
    • "WARNING" Add a spec descriptor for method
    • - -
    • "WARNING" Add a spec descriptor for metricRef
    • - -
    • "WARNING" Add a spec descriptor for path
    • - -
    • "WARNING" Add a spec descriptor for unit
    • - -
    • "WARNING" Add a spec descriptor for description
    • - -
    • "WARNING" Add a spec descriptor for incrementHits
    • - -
    • "WARNING" Add a spec descriptor for trialPeriod
    • - -
    • "WARNING" Add a spec descriptor for approvalRequired
    • - -
    • "WARNING" Add a spec descriptor for costs
    • - -
    • "WARNING" Add a spec descriptor for default
    • - -
    • "WARNING" Add a spec descriptor for limitSelector
    • - -
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • - -
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • - -
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • - -
    • "WARNING" Add a spec descriptor for username
    • - -
    • "WARNING" Add a spec descriptor for email
    • - -
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • - -
    • "WARNING" Add a spec descriptor for organizationName
    • - -
    • "WARNING" Add CRD validation for spec field `APISelector` in Binding/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `description` in Limit/v1alpha1
    • - - -
      -

      For 3scale-operator.v0.4.2:

      - -

    • "ERROR" highAvailability does not have a spec descriptor
    • - -
    • "ERROR" system does not have a spec descriptor
    • - -
    • "ERROR" description does not have a spec descriptor
    • - -
    • "ERROR" integrationMethod does not have a spec descriptor
    • - -
    • "ERROR" APISelector does not have a spec descriptor
    • - -
    • "ERROR" credentialsRef does not have a spec descriptor
    • - -
    • "ERROR" metricRef does not have a spec descriptor
    • - -
    • "ERROR" period does not have a spec descriptor
    • - -
    • "ERROR" description does not have a spec descriptor
    • - -
    • "ERROR" maxValue does not have a spec descriptor
    • - -
    • "ERROR" metricRef does not have a spec descriptor
    • - -
    • "ERROR" path does not have a spec descriptor
    • - -
    • "ERROR" increment does not have a spec descriptor
    • - -
    • "ERROR" method does not have a spec descriptor
    • - -
    • "ERROR" unit does not have a spec descriptor
    • - -
    • "ERROR" description does not have a spec descriptor
    • - -
    • "ERROR" incrementHits does not have a spec descriptor
    • - -
    • "ERROR" approvalRequired does not have a spec descriptor
    • - -
    • "ERROR" costs does not have a spec descriptor
    • - -
    • "ERROR" default does not have a spec descriptor
    • - -
    • "ERROR" limitSelector does not have a spec descriptor
    • - -
    • "ERROR" trialPeriod does not have a spec descriptor
    • - -
    • "ERROR" organizationName does not have a spec descriptor
    • - -
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • - -
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • - -
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • - -
    • "ERROR" username does not have a spec descriptor
    • - -
    • "ERROR" email does not have a spec descriptor
    • - -
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • - -
    • "ERROR" apis.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" bindings.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" limits.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" mappingrules.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" metrics.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" plans.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for highAvailability
    • - -
    • "WARNING" Add a spec descriptor for system
    • - -
    • "WARNING" Add a spec descriptor for description
    • - -
    • "WARNING" Add a spec descriptor for integrationMethod
    • - -
    • "WARNING" Add a spec descriptor for APISelector
    • - -
    • "WARNING" Add a spec descriptor for credentialsRef
    • - -
    • "WARNING" Add a spec descriptor for metricRef
    • - -
    • "WARNING" Add a spec descriptor for period
    • - -
    • "WARNING" Add a spec descriptor for description
    • - -
    • "WARNING" Add a spec descriptor for maxValue
    • - -
    • "WARNING" Add a spec descriptor for metricRef
    • - -
    • "WARNING" Add a spec descriptor for path
    • - -
    • "WARNING" Add a spec descriptor for increment
    • - -
    • "WARNING" Add a spec descriptor for method
    • - -
    • "WARNING" Add a spec descriptor for unit
    • - -
    • "WARNING" Add a spec descriptor for description
    • - -
    • "WARNING" Add a spec descriptor for incrementHits
    • - -
    • "WARNING" Add a spec descriptor for approvalRequired
    • - -
    • "WARNING" Add a spec descriptor for costs
    • - -
    • "WARNING" Add a spec descriptor for default
    • - -
    • "WARNING" Add a spec descriptor for limitSelector
    • - -
    • "WARNING" Add a spec descriptor for trialPeriod
    • - -
    • "WARNING" Add a spec descriptor for organizationName
    • - -
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • - -
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • - -
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • - -
    • "WARNING" Add a spec descriptor for username
    • - -
    • "WARNING" Add a spec descriptor for email
    • - -
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • - -
    • "WARNING" Add CRD validation for spec field `APISelector` in Binding/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `description` in Limit/v1alpha1
    • - - -
      -

      For 3scale-operator.v0.6.1:

      - -

    • "ERROR" apimanagerbackups.apps.3scale.net does not have a status descriptor
    • - -
    • "ERROR" apimanagerrestores.apps.3scale.net does not have a status descriptor
    • - -
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" backends.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" apicast does not have a spec descriptor
    • - -
    • "ERROR" backend does not have a spec descriptor
    • - -
    • "ERROR" system does not have a spec descriptor
    • - -
    • "ERROR" zync does not have a spec descriptor
    • - -
    • "ERROR" podDisruptionBudget does not have a spec descriptor
    • - -
    • "ERROR" highAvailability does not have a spec descriptor
    • - -
    • "ERROR" monitoring does not have a spec descriptor
    • - -
    • "ERROR" system does not have a spec descriptor
    • - -
    • "ERROR" backupDestination does not have a spec descriptor
    • - -
    • "ERROR" restoreSource does not have a spec descriptor
    • - -
    • "ERROR" organizationName does not have a spec descriptor
    • - -
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • - -
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • - -
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • - -
    • "ERROR" username does not have a spec descriptor
    • - -
    • "ERROR" email does not have a spec descriptor
    • - -
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" privateBaseURL does not have a spec descriptor
    • - -
    • "ERROR" systemName does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" deployment does not have a spec descriptor
    • - -
    • "ERROR" deployment does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" applicationPlans does not have a spec descriptor
    • - -
    • "ERROR" metrics does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" applicationPlans does not have a spec descriptor
    • - -
    • "ERROR" metrics does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" metrics does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" mappingRules does not have a spec descriptor
    • - -
    • "ERROR" methods does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for apicast
    • - -
    • "WARNING" Add a spec descriptor for backend
    • - -
    • "WARNING" Add a spec descriptor for system
    • - -
    • "WARNING" Add a spec descriptor for zync
    • - -
    • "WARNING" Add a spec descriptor for podDisruptionBudget
    • - -
    • "WARNING" Add a spec descriptor for highAvailability
    • - -
    • "WARNING" Add a spec descriptor for monitoring
    • - -
    • "WARNING" Add a spec descriptor for system
    • - -
    • "WARNING" Add a spec descriptor for backupDestination
    • - -
    • "WARNING" Add a spec descriptor for restoreSource
    • - -
    • "WARNING" Add a spec descriptor for organizationName
    • - -
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • - -
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • - -
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • - -
    • "WARNING" Add a spec descriptor for username
    • - -
    • "WARNING" Add a spec descriptor for email
    • - -
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for privateBaseURL
    • - -
    • "WARNING" Add a spec descriptor for systemName
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for deployment
    • - -
    • "WARNING" Add a spec descriptor for deployment
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for applicationPlans
    • - -
    • "WARNING" Add a spec descriptor for metrics
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for applicationPlans
    • - -
    • "WARNING" Add a spec descriptor for metrics
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for metrics
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for mappingRules
    • - -
    • "WARNING" Add a spec descriptor for methods
    • - - -
      -

      For 3scale-operator.v0.7.0:

      - -

    • "ERROR" apimanagerbackups.apps.3scale.net does not have a status descriptor
    • - -
    • "ERROR" apimanagerrestores.apps.3scale.net does not have a status descriptor
    • - -
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" backends.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" backend does not have a spec descriptor
    • - -
    • "ERROR" system does not have a spec descriptor
    • - -
    • "ERROR" zync does not have a spec descriptor
    • - -
    • "ERROR" apicast does not have a spec descriptor
    • - -
    • "ERROR" podDisruptionBudget does not have a spec descriptor
    • - -
    • "ERROR" highAvailability does not have a spec descriptor
    • - -
    • "ERROR" monitoring does not have a spec descriptor
    • - -
    • "ERROR" system does not have a spec descriptor
    • - -
    • "ERROR" backupDestination does not have a spec descriptor
    • - -
    • "ERROR" restoreSource does not have a spec descriptor
    • - -
    • "ERROR" email does not have a spec descriptor
    • - -
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • - -
    • "ERROR" organizationName does not have a spec descriptor
    • - -
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • - -
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • - -
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • - -
    • "ERROR" username does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" privateBaseURL does not have a spec descriptor
    • - -
    • "ERROR" systemName does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" deployment does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" deployment does not have a spec descriptor
    • - -
    • "ERROR" applicationPlans does not have a spec descriptor
    • - -
    • "ERROR" metrics does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" applicationPlans does not have a spec descriptor
    • - -
    • "ERROR" metrics does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" mappingRules does not have a spec descriptor
    • - -
    • "ERROR" methods does not have a spec descriptor
    • - -
    • "ERROR" metrics does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for backend
    • - -
    • "WARNING" Add a spec descriptor for system
    • - -
    • "WARNING" Add a spec descriptor for zync
    • - -
    • "WARNING" Add a spec descriptor for apicast
    • - -
    • "WARNING" Add a spec descriptor for podDisruptionBudget
    • - -
    • "WARNING" Add a spec descriptor for highAvailability
    • - -
    • "WARNING" Add a spec descriptor for monitoring
    • - -
    • "WARNING" Add a spec descriptor for system
    • - -
    • "WARNING" Add a spec descriptor for backupDestination
    • - -
    • "WARNING" Add a spec descriptor for restoreSource
    • - -
    • "WARNING" Add a spec descriptor for email
    • - -
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • - -
    • "WARNING" Add a spec descriptor for organizationName
    • - -
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • - -
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • - -
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • - -
    • "WARNING" Add a spec descriptor for username
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for privateBaseURL
    • - -
    • "WARNING" Add a spec descriptor for systemName
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for deployment
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for deployment
    • - -
    • "WARNING" Add a spec descriptor for applicationPlans
    • - -
    • "WARNING" Add a spec descriptor for metrics
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for applicationPlans
    • - -
    • "WARNING" Add a spec descriptor for metrics
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for mappingRules
    • - -
    • "WARNING" Add a spec descriptor for methods
    • - -
    • "WARNING" Add a spec descriptor for metrics
    • - -
    • "WARNING" Add a spec descriptor for name
    • - - -
      -

      For 3scale-operator.v0.5.5:

      - -

    • "ERROR" apis.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" bindings.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" limits.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" mappingrules.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" metrics.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" plans.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" highAvailability does not have a spec descriptor
    • - -
    • "ERROR" system does not have a spec descriptor
    • - -
    • "ERROR" description does not have a spec descriptor
    • - -
    • "ERROR" integrationMethod does not have a spec descriptor
    • - -
    • "ERROR" APISelector does not have a spec descriptor
    • - -
    • "ERROR" credentialsRef does not have a spec descriptor
    • - -
    • "ERROR" period does not have a spec descriptor
    • - -
    • "ERROR" description does not have a spec descriptor
    • - -
    • "ERROR" maxValue does not have a spec descriptor
    • - -
    • "ERROR" metricRef does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" method does not have a spec descriptor
    • -
    • "ERROR" metricRef does not have a spec descriptor
    • +
      +

      For update-service-operator.v4.6.0:

      -

    • "ERROR" path does not have a spec descriptor
    • -
    • "ERROR" increment does not have a spec descriptor
    • +
    • "WARNING" (update-service-operator.v4.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" description does not have a spec descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["updateservices.updateservice.operator.openshift.io"]),ClusterRole: (["metrics-reader"]),
    • -
    • "ERROR" incrementHits does not have a spec descriptor
    • -
    • "ERROR" unit does not have a spec descriptor
    • -
    • "ERROR" costs does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    kubernetes-nmstate-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 4.8
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" default does not have a spec descriptor
    • + +
      +

      For kubernetes-nmstate-operator.4.8.0-202108041625:

      -

    • "ERROR" limitSelector does not have a spec descriptor
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "ERROR" trialPeriod does not have a spec descriptor
    • +
    • "ERROR" nmstates.nmstate.io does not have a status descriptor
    • -
    • "ERROR" approvalRequired does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" email does not have a spec descriptor
    • -
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "ERROR" organizationName does not have a spec descriptor
    • -
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • -
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • -
    • "ERROR" username does not have a spec descriptor
    • +
      +

      For kubernetes-nmstate-operator.4.8.0-202108041625:

      -

    • "WARNING" Add CRD validation for spec field `APISelector` in Binding/v1alpha1
    • +
    • "WARNING" (kubernetes-nmstate-operator.4.8.0-202108041625) csv.metadata.Name kubernetes-nmstate-operator.4.8.0-202108041625 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" Add CRD validation for spec field `description` in Limit/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for highAvailability
    • -
    • "WARNING" Add a spec descriptor for system
    • +
    +
    + +

    NOT USED

    Grade C
    (500)
    skupper-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    PASS

    + + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for description
    • -
    • "WARNING" Add a spec descriptor for integrationMethod
    • +
      +

      For skupper-operator.v0.7.0:

      -

    • "WARNING" Add a spec descriptor for APISelector
    • -
    • "WARNING" Add a spec descriptor for credentialsRef
    • +
    • "WARNING" (skupper-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for period
    • -
    • "WARNING" Add a spec descriptor for description
    • -
    • "WARNING" Add a spec descriptor for maxValue
    • +
    +
    + +

    NOT USED

    Grade B
    (800)
    vertical-pod-autoscaler +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 4.8
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for metricRef
    • + +
      +

      For verticalpodautoscaler.4.8.0-202107291502:

      -

    • "WARNING" Add a spec descriptor for method
    • +
    • "ERROR" verticalpodautoscalercontrollers.autoscaling.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for metricRef
    • +
    • "ERROR" verticalpodautoscalers.autoscaling.k8s.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for path
    • +
    • "ERROR" podMinCPUMillicores does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for increment
    • +
    • "ERROR" podMinMemoryMb does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for description
    • +
    • "ERROR" recommendationOnly does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for incrementHits
    • +
    • "ERROR" safetyMarginFraction does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for unit
    • +
    • "ERROR" minReplicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for costs
    • +
    • "ERROR" targetRef does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for default
    • +
    • "ERROR" resourcePolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for limitSelector
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for trialPeriod
    • -
    • "WARNING" Add a spec descriptor for approvalRequired
    • +
    • "WARNING" Warning: Value autoscaling.k8s.io/v1, Kind=VerticalPodAutoscalerCheckpoint: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for email
    • +
    • "WARNING" Add a spec descriptor for podMinCPUMillicores
    • -
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for podMinMemoryMb
    • -
    • "WARNING" Add a spec descriptor for organizationName
    • +
    • "WARNING" Add a spec descriptor for recommendationOnly
    • -
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for safetyMarginFraction
    • -
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • +
    • "WARNING" Add a spec descriptor for minReplicas
    • -
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • +
    • "WARNING" Add a spec descriptor for targetRef
    • -
    • "WARNING" Add a spec descriptor for username
    • +
    • "WARNING" Add a spec descriptor for resourcePolicy
    • @@ -2861,63 +2449,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For 3scale-operator.v0.3.0:

      - - -

    • "WARNING" (3scale-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apps.3scale.net" "apis.capabilities.3scale.net" "bindings.capabilities.3scale.net" "limits.capabilities.3scale.net" "mappingrules.capabilities.3scale.net" "metrics.capabilities.3scale.net" "plans.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
    • - - -
      -

      For 3scale-operator.v0.4.2:

      - - -

    • "WARNING" (3scale-operator.v0.4.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apps.3scale.net" "apis.capabilities.3scale.net" "bindings.capabilities.3scale.net" "limits.capabilities.3scale.net" "mappingrules.capabilities.3scale.net" "metrics.capabilities.3scale.net" "plans.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
    • - - -
      -

      For 3scale-operator.v0.6.1:

      - - -

    • "WARNING" (3scale-operator.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagerbackups.apps.3scale.net" "apimanagerrestores.apps.3scale.net" "apimanagers.apps.3scale.net" "backends.capabilities.3scale.net" "products.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
    • - - -
      -

      For 3scale-operator.v0.7.0:

      - - -

    • "WARNING" (3scale-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagerbackups.apps.3scale.net" "apimanagerrestores.apps.3scale.net" "apimanagers.apps.3scale.net" "backends.capabilities.3scale.net" "products.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
    • - - -
      -

      For 3scale-operator.v0.5.5:

      +

      For verticalpodautoscaler.4.8.0-202107291502:

      -

    • "WARNING" (3scale-operator.v0.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (verticalpodautoscaler.4.8.0-202107291502) csv.metadata.Name verticalpodautoscaler.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apps.3scale.net" "apis.capabilities.3scale.net" "bindings.capabilities.3scale.net" "limits.capabilities.3scale.net" "mappingrules.capabilities.3scale.net" "metrics.capabilities.3scale.net" "plans.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
    • +
    • "WARNING" provided API should have an example annotation
    • @@ -2927,220 +2479,196 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (500)
    amq-broker-ltselasticsearch-operator -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • 5.0
    • + +
    • 4.6
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • elasticsearch-operator.5.1.0-96
    • + +
    • elasticsearch-operator.5.0.6-40
    • + +
    • elasticsearch-operator.4.6.0-202103010126.p0
    • + +
    • elasticsearch-operator.5.1.0-96
    • + +
    +
    +

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For amq-broker-operator.v0.9.3:

      +

      For elasticsearch-operator.5.1.0-96:

      -

    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" indexManagement does not have a spec descriptor
    • -
    • "ERROR" activemqartemises.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" managementState does not have a spec descriptor
    • -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" nodeSpec does not have a spec descriptor
    • -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" nodes does not have a spec descriptor
    • +
    • "ERROR" managementState does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • -
    • "WARNING" Add CRD validation for spec field `deploymentPlan` in ActiveMQArtemis/v2alpha1
    • +
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • +
    • "WARNING" Add a spec descriptor for indexManagement
    • +
    • "WARNING" Add a spec descriptor for managementState
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for nodeSpec
    • +
    • "WARNING" Add a spec descriptor for nodes
    • -
      -

      For amq-broker-operator.v0.9.3:

      +

    • "WARNING" Add a spec descriptor for managementState
    • -
    • "WARNING" (amq-broker-operator.v0.9.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
      +

      For elasticsearch-operator.5.0.6-40:

      + +

    • "ERROR" nodes does not have a spec descriptor
    • + +
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • + +
    • "ERROR" indexManagement does not have a spec descriptor
    • + +
    • "ERROR" managementState does not have a spec descriptor
    • + +
    • "ERROR" nodeSpec does not have a spec descriptor
    • + +
    • "ERROR" managementState does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for nodes
    • + +
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • + +
    • "WARNING" Add a spec descriptor for indexManagement
    • + +
    • "WARNING" Add a spec descriptor for managementState
    • + +
    • "WARNING" Add a spec descriptor for nodeSpec
    • + +
    • "WARNING" Add a spec descriptor for managementState
    • + + +
      +

      For elasticsearch-operator.4.6.0-202103010126.p0:

      + +

    • "ERROR" managementState does not have a spec descriptor
    • + +
    • "ERROR" nodeSpec does not have a spec descriptor
    • + +
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • + +
    • "ERROR" nodes does not have a spec descriptor
    • + +
    • "ERROR" managementState does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "WARNING" Add a spec descriptor for nodeSpec
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    jws-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • - -
      -

      For jws-operator.v1.0.3:

      +

    • "WARNING" Add a spec descriptor for nodes
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for managementState
    • -
    • "ERROR" webservers.web.servers.org does not have a status descriptor
    • -
    • "ERROR" webservers.web.servers.org does not have a status descriptor
    • +
      +

      For elasticsearch-operator.5.1.0-96:

      -

    • "ERROR" applicationName does not have a spec descriptor
    • +
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" indexManagement does not have a spec descriptor
    • -
    • "ERROR" webImage does not have a spec descriptor
    • +
    • "ERROR" managementState does not have a spec descriptor
    • -
    • "ERROR" applicationName does not have a spec descriptor
    • +
    • "ERROR" nodeSpec does not have a spec descriptor
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" nodes does not have a spec descriptor
    • -
    • "ERROR" webImageStream does not have a spec descriptor
    • +
    • "ERROR" managementState does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for applicationName
    • +
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for indexManagement
    • -
    • "WARNING" Add a spec descriptor for webImage
    • +
    • "WARNING" Add a spec descriptor for managementState
    • -
    • "WARNING" Add a spec descriptor for applicationName
    • +
    • "WARNING" Add a spec descriptor for nodeSpec
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for nodes
    • -
    • "WARNING" Add a spec descriptor for webImageStream
    • +
    • "WARNING" Add a spec descriptor for managementState
    • @@ -3151,27 +2679,50 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For jws-operator.v1.0.3:

      +

      For elasticsearch-operator.5.1.0-96:

      -

    • "WARNING" (jws-operator.v1.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (elasticsearch-operator.5.1.0-96) csv.metadata.Name elasticsearch-operator.5.1.0-96 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["webservers.web.servers.org"])
    • +
    • "WARNING" this bundle is using APIs which were 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: (["metrics-reader"])
    • + + +
      +

      For elasticsearch-operator.5.0.6-40:

      + + +

    • "WARNING" (elasticsearch-operator.5.0.6-40) csv.metadata.Name elasticsearch-operator.5.0.6-40 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + + +
      +

      For elasticsearch-operator.4.6.0-202103010126.p0:

      + + +

    • "WARNING" (elasticsearch-operator.4.6.0-202103010126.p0) csv.metadata.Name elasticsearch-operator.4.6.0-202103010126.p0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + + +
      +

      For elasticsearch-operator.5.1.0-96:

      + + +

    • "WARNING" (elasticsearch-operator.5.1.0-96) csv.metadata.Name elasticsearch-operator.5.1.0-96 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + +
    • "WARNING" this bundle is using APIs which were 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: (["metrics-reader"])
    • @@ -3181,188 +2732,166 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade B
    (600)
    ocs-operatorserverless-operator -

    PARTIAL COMPLY

    +

    COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 4.5
    • + +
    • 4.7
    • + +
    • 4.6
    • + +
    • 4.3
    • + +
    • 4.4
    • + +
    +
    +

    REQUIRED

    - +Info -
    + +Info +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
    • ocs-operator.v4.7.3
    • +
    • serverless-operator.v1.10.2
    • -
    • ocs-operator.v4.8.1
    • +
    • serverless-operator.v1.7.2
    • + +
    • serverless-operator.v1.7.2
    • + +
    • serverless-operator.v1.16.0
    • + +
    • serverless-operator.v1.13.0
    • + +
    • serverless-operator.v1.13.0

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ocs-operator.v4.7.3:

      +

      For serverless-operator.v1.10.2:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" storageDeviceSets does not have a spec descriptor
    • - -
    • "ERROR" manageNodes does not have a spec descriptor
    • - -
    • "ERROR" monPVCTemplate does not have a spec descriptor
    • - -
    • "ERROR" storageclusters.ocs.openshift.io does not have a status descriptor
    • - - -
    • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucketClaim: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucket: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephBlockPool: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NamespaceStore: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BucketClass: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NooBaa: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ocs.openshift.io/v1, Kind=OCSInitialization: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStoreUser: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephFilesystem: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZone: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BackingStore: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephClient: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephRBDMirror: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectRealm: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephNFS: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZoneGroup: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephCluster: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStore: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for storageDeviceSets
    • +
      +

      For serverless-operator.v1.7.2:

      -

    • "WARNING" Add a spec descriptor for manageNodes
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for monPVCTemplate

    • -

      For ocs-operator.v4.8.1:

      - -

    • "ERROR" storageclusters.ocs.openshift.io does not have a status descriptor
    • +

      For serverless-operator.v1.7.2:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" manageNodes does not have a spec descriptor
    • -
    • "ERROR" monPVCTemplate does not have a spec descriptor
    • -
    • "ERROR" storageDeviceSets does not have a spec descriptor
    • +
      +

      For serverless-operator.v1.16.0:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NamespaceStore: provided API should have an example annotation
    • +
    • "ERROR" source does not have a spec descriptor
    • -
    • "WARNING" Warning: Value ocs.openshift.io/v1, Kind=OCSInitialization: provided API should have an example annotation
    • +
    • "ERROR" channel does not have a spec descriptor
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStore: provided API should have an example annotation
    • +
    • "ERROR" knativekafkas.operator.serverless.openshift.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephNFS: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephClient: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for source
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephRBDMirror: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for channel
    • -
    • "WARNING" Warning: Value replication.storage.openshift.io/v1alpha1, Kind=VolumeReplication: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BucketClass: provided API should have an example annotation
    • +
      +

      For serverless-operator.v1.13.0:

      -

    • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucket: provided API should have an example annotation
    • +
    • "ERROR" knativekafkas.operator.serverless.openshift.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephCluster: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephFilesystem: provided API should have an example annotation
    • +
    • "ERROR" source does not have a spec descriptor
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectRealm: provided API should have an example annotation
    • +
    • "ERROR" channel does not have a spec descriptor
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZone: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value replication.storage.openshift.io/v1alpha1, Kind=VolumeReplicationClass: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for source
    • -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=NooBaa: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for channel
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephBlockPool: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectStoreUser: provided API should have an example annotation
    • +
      +

      For serverless-operator.v1.13.0:

      -

    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephFilesystemMirror: provided API should have an example annotation
    • +
    • "ERROR" knativekafkas.operator.serverless.openshift.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value ceph.rook.io/v1, Kind=CephObjectZoneGroup: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value noobaa.io/v1alpha1, Kind=BackingStore: provided API should have an example annotation
    • +
    • "ERROR" source does not have a spec descriptor
    • -
    • "WARNING" Warning: Value objectbucket.io/v1alpha1, Kind=ObjectBucketClaim: provided API should have an example annotation
    • +
    • "ERROR" channel does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for manageNodes
    • -
    • "WARNING" Add a spec descriptor for monPVCTemplate
    • +
    • "WARNING" Add a spec descriptor for source
    • -
    • "WARNING" Add a spec descriptor for storageDeviceSets
    • +
    • "WARNING" Add a spec descriptor for channel
    • @@ -3373,110 +2902,58 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ocs-operator.v4.7.3:

      - - -

    • "WARNING" this bundle is using APIs which were 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: (["ocs-metrics-exporter"]),ClusterRoleBinding: (["ocs-metrics-exporter"]),Role: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),RoleBinding: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • +

      For serverless-operator.v1.10.2:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])

    • -

      For ocs-operator.v4.8.1:

      - - -

    • "WARNING" this bundle is using APIs which were 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: (["ocs-metrics-exporter"]),ClusterRoleBinding: (["ocs-metrics-exporter"]),Role: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),RoleBinding: (["ocs-metrics-svc" "noobaa-metrics" "rook-ceph-metrics" "rook-ceph-monitor"]),
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • +

      For serverless-operator.v1.7.2:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For serverless-operator.v1.7.2:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For serverless-operator.v1.16.0:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For serverless-operator.v1.13.0:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For serverless-operator.v1.13.0:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["knativeeventings.operator.knative.dev" "knativeservings.operator.knative.dev"])
    • @@ -3486,32 +2963,34 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade C
    (500)
    eapred-hat-camel-k -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • techpreview
    • + +
    • 1.4.x
    @@ -3520,11 +2999,11 @@
    Grade

    NOT USED

    @@ -3532,27 +3011,104 @@
    Grade

    NOT USED

    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For eap-operator.v2.1.4:

      +

      For red-hat-camel-k-operator.v1.3.3:

      +

    • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
    • -
    • "WARNING" Warning: Value : (eap-operator.v2.1.4) example annotations not found
    • +
    • "ERROR" integrations.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" builds.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" kamelets.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" flows does not have a spec descriptor
    • + +
    • "ERROR" definition does not have a spec descriptor
    • + +
    • "ERROR" flow does not have a spec descriptor
    • + +
    • "ERROR" sink does not have a spec descriptor
    • + +
    • "ERROR" source does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for flows
    • + +
    • "WARNING" Add a spec descriptor for definition
    • + +
    • "WARNING" Add a spec descriptor for flow
    • + +
    • "WARNING" Add a spec descriptor for sink
    • + +
    • "WARNING" Add a spec descriptor for source
    • + + +
      +

      For red-hat-camel-k-operator.v1.4.0:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" builds.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" integrations.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" kamelets.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
    • + +
    • "ERROR" error spec does not exist
    • + +
    • "ERROR" flows does not have a spec descriptor
    • + +
    • "ERROR" definition does not have a spec descriptor
    • + +
    • "ERROR" flow does not have a spec descriptor
    • + +
    • "ERROR" source does not have a spec descriptor
    • + +
    • "ERROR" sink does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for flows
    • + +
    • "WARNING" Add a spec descriptor for definition
    • + +
    • "WARNING" Add a spec descriptor for flow
    • + +
    • "WARNING" Add a spec descriptor for source
    • + +
    • "WARNING" Add a spec descriptor for sink
    • @@ -3563,27 +3119,30 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For eap-operator.v2.1.4:

      +

      For red-hat-camel-k-operator.v1.3.3:

      -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["wildflyservers.wildfly.org"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["builds.camel.apache.org" "camelcatalogs.camel.apache.org" "integrationkits.camel.apache.org" "integrationplatforms.camel.apache.org" "integrations.camel.apache.org" "kameletbindings.camel.apache.org" "kamelets.camel.apache.org"])
    • + + +
      +

      For red-hat-camel-k-operator.v1.4.0:

      -

    • "WARNING" (eap-operator.v2.1.4) example annotations not found
    • @@ -3593,159 +3152,90 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (500)
    quay-bridge-operatorweb-terminal -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • quay-v3.4
    • - -
    • quay-v3.3
    • - -
    • quay-v3.5
    • +
    • alpha
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • quay-bridge-operator.v3.4.6
    • - -
    • quay-bridge-operator.v3.3.4
    • - -
    • quay-bridge-operator.v3.5.5
    • - -
    -
    -

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For quay-bridge-operator.v3.4.6:

      - -

    • "ERROR" quayintegrations.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" clusterID does not have a spec descriptor
    • - -
    • "ERROR" credentialsSecretName does not have a spec descriptor
    • - -
    • "ERROR" quayHostname does not have a spec descriptor
    • - -
    • "ERROR" insecureRegistry does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for clusterID
    • - -
    • "WARNING" Add a spec descriptor for credentialsSecretName
    • - -
    • "WARNING" Add a spec descriptor for quayHostname
    • - -
    • "WARNING" Add a spec descriptor for insecureRegistry
    • +

      For web-terminal.v1.2.1:

      +

    • "ERROR" template does not have a spec descriptor
    • -
      -

      For quay-bridge-operator.v3.3.4:

      +

    • "ERROR" routingClass does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" clusterID does not have a spec descriptor
    • - -
    • "ERROR" credentialsSecretName does not have a spec descriptor
    • - -
    • "ERROR" quayHostname does not have a spec descriptor
    • - -
    • "ERROR" insecureRegistry does not have a spec descriptor
    • - -
    • "ERROR" quayintegrations.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "WARNING" Add a spec descriptor for clusterID
    • +
    • "WARNING" Add a spec descriptor for template
    • -
    • "WARNING" Add a spec descriptor for credentialsSecretName
    • +
    • "WARNING" Add a spec descriptor for routingClass
    • -
    • "WARNING" Add a spec descriptor for quayHostname
    • +
    • "WARNING" Warning: Value controller.devfile.io/v1alpha1, Kind=Component: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for insecureRegistry
    • +
    • "WARNING" Warning: Value controller.devfile.io/v1alpha1, Kind=WorkspaceRouting: provided API should have an example annotation

    • -

      For quay-bridge-operator.v3.5.5:

      - -

    • "ERROR" clusterID does not have a spec descriptor
    • - -
    • "ERROR" credentialsSecretName does not have a spec descriptor
    • - -
    • "ERROR" quayHostname does not have a spec descriptor
    • - -
    • "ERROR" insecureRegistry does not have a spec descriptor
    • - -
    • "ERROR" quayintegrations.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for clusterID
    • - -
    • "WARNING" Add a spec descriptor for credentialsSecretName
    • - -
    • "WARNING" Add a spec descriptor for quayHostname
    • +

      For web-terminal.v1.3.0:

      -

    • "WARNING" Add a spec descriptor for insecureRegistry
    • @@ -3756,45 +3246,42 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For quay-bridge-operator.v3.4.6:

      - - -

    • "WARNING" (quay-bridge-operator.v3.4.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +

      For web-terminal.v1.2.1:

      -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayintegrations.redhatcop.redhat.io"])
    • +
    • "WARNING" (web-terminal.v1.2.1) csv.Spec.Icon not specified
    • -
      -

      For quay-bridge-operator.v3.3.4:

      +

    • "WARNING" (web-terminal.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["components.controller.devfile.io" "workspaceroutings.controller.devfile.io" "devworkspaces.workspace.devfile.io"])
    • -
    • "WARNING" (quay-bridge-operator.v3.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayintegrations.redhatcop.redhat.io"])
    • +
    • "WARNING" provided API should have an example annotation

    • -

      For quay-bridge-operator.v3.5.5:

      +

      For web-terminal.v1.3.0:

      -

    • "WARNING" (quay-bridge-operator.v3.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (web-terminal.v1.3.0) csv.Spec.Icon not specified
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayintegrations.redhatcop.redhat.io"])
    • +
    • "WARNING" (web-terminal.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -3804,32 +3291,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (500)
    sandboxed-containers-operatorwindows-machine-config-operator -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • preview-1.0
    • +
    • preview
    @@ -3838,11 +3325,11 @@
    Grade

    NOT USED

    @@ -3850,31 +3337,116 @@
    Grade

    USED

    -

    ONLY ERRORS

    +

    PASS

    - +Info -
    +
    +

    PASS

    + + +

    NOT USED

    Grade A
    (900)
    ansible-automation-platform-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • early-access
    • + +
    +
    + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +

      -

      For sandboxed-containers-operator.v1.0.0:

      +

      For ansible-automation-platform-operator.v2.0.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" error spec does not exist
    • -
    • "ERROR" kataconfigs.kataconfiguration.openshift.io does not have a status descriptor
    • +
    • "WARNING" Warning: Value automationcontroller.ansible.com/v1beta1, Kind=AutomationControllerBackup: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value automationcontroller.ansible.com/v1beta1, Kind=AutomationControllerRestore: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value automationcontroller.ansible.com/v1beta1, Kind=AutomationController: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value automationhub.ansible.com/v1beta1, Kind=AutomationHub: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value automationhub.ansible.com/v1beta1, Kind=AutomationHubBackup: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value automationhub.ansible.com/v1beta1, Kind=AutomationHubRestore: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value tower.ansible.com/v1alpha1, Kind=AnsibleJob: provided API should have an example annotation
    • +
    • "WARNING" Warning: Value tower.ansible.com/v1alpha1, Kind=JobTemplate: provided API should have an example annotation
    • @@ -3883,29 +3455,47 @@
      Grade
    -

    ONLY WARNINGS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For sandboxed-containers-operator.v1.0.0:

      +

      For ansible-automation-platform-operator.v2.0.0:

      +

    • "ERROR" (ansible-automation-platform-operator.v2.0.0) csv.Spec.Maintainers elements should contain both name and email
    • -
    • "WARNING" (sandboxed-containers-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kataconfigs.kataconfiguration.openshift.io"])
    • +
    • "WARNING" (ansible-automation-platform-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ansiblejobs.tower.ansible.com" "jobtemplates.tower.ansible.com"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -3915,45 +3505,49 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade D
    (100)
    servicemeshoperatorfuse-apicurito -

    NOT COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 1.0
    • +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.9.x
    -

    USED

    +

    NOT USED

    @@ -3963,88 +3557,47 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For servicemeshoperator.v2.0.7.1:

      - -

    • "ERROR" servicemeshmemberrolls.maistra.io does not have a status descriptor
    • - -
    • "ERROR" servicemeshmembers.maistra.io does not have a status descriptor
    • - -
    • "ERROR" telemetry does not have a spec descriptor
    • - -
    • "ERROR" addons does not have a spec descriptor
    • - -
    • "ERROR" tracing does not have a spec descriptor
    • - -
    • "ERROR" policy does not have a spec descriptor
    • - -
    • "ERROR" members does not have a spec descriptor
    • +

      For apicuritooperator.v7.7.1:

      -

    • "ERROR" controlPlaneRef does not have a spec descriptor
    • +
    • "ERROR" apicuritos.apicur.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for telemetry
    • - -
    • "WARNING" Add a spec descriptor for addons
    • - -
    • "WARNING" Add a spec descriptor for tracing
    • - -
    • "WARNING" Add a spec descriptor for policy
    • - -
    • "WARNING" Add a spec descriptor for members
    • - -
    • "WARNING" Add a spec descriptor for controlPlaneRef
    • +
    • "WARNING" Add CRD validation for spec field `size` in Apicurito/v1alpha1

    • -

      For servicemeshoperator.v2.0.7.1:

      - -

    • "ERROR" servicemeshmemberrolls.maistra.io does not have a status descriptor
    • - -
    • "ERROR" servicemeshmembers.maistra.io does not have a status descriptor
    • - -
    • "ERROR" telemetry does not have a spec descriptor
    • - -
    • "ERROR" addons does not have a spec descriptor
    • - -
    • "ERROR" tracing does not have a spec descriptor
    • - -
    • "ERROR" policy does not have a spec descriptor
    • - -
    • "ERROR" members does not have a spec descriptor
    • +

      For fuse-apicurito.v7.8.1:

      -

    • "ERROR" controlPlaneRef does not have a spec descriptor
    • +
    • "ERROR" apicuritoes.apicur.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for telemetry
    • - -
    • "WARNING" Add a spec descriptor for addons
    • -
    • "WARNING" Add a spec descriptor for tracing
    • +
      +

      For fuse-apicurito.v7.9.0:

      -

    • "WARNING" Add a spec descriptor for policy
    • +
    • "ERROR" apicuritoes.apicur.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for members
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for controlPlaneRef
    • @@ -4055,36 +3608,45 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For servicemeshoperator.v2.0.7.1:

      +

      For apicuritooperator.v7.7.1:

      -

    • "WARNING" (servicemeshoperator.v2.0.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (apicuritooperator.v7.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["servicemeshcontrolplanes.maistra.io" "servicemeshmemberrolls.maistra.io" "servicemeshmembers.maistra.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicuritos.apicur.io"])

    • -

      For servicemeshoperator.v2.0.7.1:

      +

      For fuse-apicurito.v7.8.1:

      -

    • "WARNING" (servicemeshoperator.v2.0.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (fuse-apicurito.v7.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["servicemeshcontrolplanes.maistra.io" "servicemeshmemberrolls.maistra.io" "servicemeshmembers.maistra.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicuritoes.apicur.io"])
    • + + +
      +

      For fuse-apicurito.v7.9.0:

      + + +

    • "WARNING" (fuse-apicurito.v7.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicuritoes.apicur.io"])
    • @@ -4094,22 +3656,22 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    smart-gateway-operatoramq-online -

    PARTIAL COMPLY

    +

    COMPLY

    COMPLY

    @@ -4118,41 +3680,103 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +
      - -
      -

      For smart-gateway-operator.v2.2.0:

      + +
      +

      For amq-online.1.7.1-0.1628610187.p:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" standardinfraconfigs.admin.enmasse.io does not have a status descriptor
    • + +
    • "ERROR" brokeredinfraconfigs.admin.enmasse.io does not have a status descriptor
    • + +
    • "ERROR" addressplans.admin.enmasse.io does not have a status descriptor
    • + +
    • "ERROR" addressspaceplans.admin.enmasse.io does not have a status descriptor
    • + +
    • "ERROR" authenticationservices.admin.enmasse.io does not have a status descriptor
    • + +
    • "ERROR" messagingusers.user.enmasse.io does not have a status descriptor
    • + +
    • "ERROR" broker does not have a spec descriptor
    • + +
    • "ERROR" router does not have a spec descriptor
    • + +
    • "ERROR" broker does not have a spec descriptor
    • + +
    • "ERROR" addressType does not have a spec descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" addressSpaceType does not have a spec descriptor
    • + +
    • "ERROR" resourceLimits does not have a spec descriptor
    • + +
    • "ERROR" addressPlans does not have a spec descriptor
    • + +
    • "ERROR" standard does not have a spec descriptor
    • + +
    • "ERROR" address does not have a spec descriptor
    • + +
    • "ERROR" authentication does not have a spec descriptor
    • + +
    • "ERROR" authorization does not have a spec descriptor
    • + + +
    • "WARNING" Warning: Value admin.enmasse.io/v1beta1, Kind=ConsoleService: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value enmasse.io/v1beta1, Kind=AddressSpaceSchema: provided API should have an example annotation
    • + +
    • "WARNING" Add a spec descriptor for broker
    • + +
    • "WARNING" Add a spec descriptor for router
    • + +
    • "WARNING" Add a spec descriptor for broker
    • + +
    • "WARNING" Add a spec descriptor for addressType
    • + +
    • "WARNING" Add a spec descriptor for resources
    • + +
    • "WARNING" Add a spec descriptor for addressSpaceType
    • + +
    • "WARNING" Add a spec descriptor for resourceLimits
    • + +
    • "WARNING" Add a spec descriptor for addressPlans
    • -
    • "ERROR" resetIndex does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for standard
    • + +
    • "WARNING" Add a spec descriptor for address
    • +
    • "WARNING" Add a spec descriptor for authentication
    • -
    • "WARNING" Add a spec descriptor for resetIndex
    • +
    • "WARNING" Add a spec descriptor for authorization
    • @@ -4163,27 +3787,29 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For smart-gateway-operator.v2.2.0:

      +

      For amq-online.1.7.1-0.1628610187.p:

      -

    • "WARNING" (smart-gateway-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (amq-online.1.7.1-0.1628610187.p) csv.metadata.Name amq-online.1.7.1-0.1628610187.p is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["smartgateways.smartgateway.infra.watch"])
    • +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -4193,32 +3819,36 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade B
    (600)
    vertical-pod-autoscalerfuse-console

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.8
    • +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-console-7.7.x
    @@ -4227,11 +3857,11 @@
    Grade

    NOT USED

    @@ -4241,59 +3871,63 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For verticalpodautoscaler.4.8.0-202107291502:

      +

      For fuse-console.v7.8.2:

      -

    • "ERROR" verticalpodautoscalercontrollers.autoscaling.openshift.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" verticalpodautoscalers.autoscaling.k8s.io does not have a status descriptor
    • +
    • "ERROR" hawtios.hawt.io does not have a status descriptor
    • -
    • "ERROR" podMinCPUMillicores does not have a spec descriptor
    • +
    • "ERROR" resources does not have a spec descriptor
    • -
    • "ERROR" podMinMemoryMb does not have a spec descriptor
    • +
    • "ERROR" type does not have a spec descriptor
    • -
    • "ERROR" recommendationOnly does not have a spec descriptor
    • -
    • "ERROR" safetyMarginFraction does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "ERROR" minReplicas does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for type
    • -
    • "ERROR" targetRef does not have a spec descriptor
    • -
    • "ERROR" resourcePolicy does not have a spec descriptor
    • +
      +

      For fuse-console.v7.9.0:

      + +

    • "ERROR" hawtios.hawt.io does not have a status descriptor
    • + +
    • "ERROR" resources does not have a spec descriptor
    • + +
    • "ERROR" type does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value autoscaling.k8s.io/v1, Kind=VerticalPodAutoscalerCheckpoint: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for resources
    • -
    • "WARNING" Add a spec descriptor for podMinCPUMillicores
    • +
    • "WARNING" Add a spec descriptor for type
    • -
    • "WARNING" Add a spec descriptor for podMinMemoryMb
    • -
    • "WARNING" Add a spec descriptor for recommendationOnly
    • +
      +

      For fuse-console.v7.7.1:

      -

    • "WARNING" Add a spec descriptor for safetyMarginFraction
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for minReplicas
    • +
    • "ERROR" hawtios.hawt.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for targetRef
    • -
    • "WARNING" Add a spec descriptor for resourcePolicy
    • +
    • "WARNING" Add CRD validation for Hawtio/v1alpha1
    • @@ -4304,27 +3938,43 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For verticalpodautoscaler.4.8.0-202107291502:

      +

      For fuse-console.v7.8.2:

      -

    • "WARNING" (verticalpodautoscaler.4.8.0-202107291502) csv.metadata.Name verticalpodautoscaler.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (fuse-console.v7.8.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hawtios.hawt.io"])
    • + + +
      +

      For fuse-console.v7.9.0:

      + + +

    • "WARNING" (fuse-console.v7.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + + +
      +

      For fuse-console.v7.7.1:

      + + +

    • "WARNING" (fuse-console.v7.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hawtios.hawt.io"])
    • @@ -4338,464 +3988,653 @@
      Grade
    advanced-cluster-managementfuse-online

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • release-2.3
    • - -
    • release-2.2
    • +
    • 7.9.x
    • -
    • release-2.1
    • +
    • fuse-online-v7.8.x
    • -
    • release-2.0
    • +
    • fuse-online-7.7.x
    -

    USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • fuse-online.v7.9.0
    • + +
    • fuse-online-operator.v7.8.1
    • + +
    • fuse-online-operator.v7.7.1
    • + +
    +
    +

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For advanced-cluster-management.v2.3.1:

      - -

    • "ERROR" placementImagePullSpec does not have a spec descriptor
    • - -
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • - -
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • - -
    • "ERROR" observabilityAddonSpec does not have a spec descriptor
    • - -
    • "ERROR" storageConfigObject does not have a spec descriptor
    • - -
    • "ERROR" enableMetrics does not have a spec descriptor
    • - -
    • "ERROR" interval does not have a spec descriptor
    • - -
    • "ERROR" observabilityAddonSpec does not have a spec descriptor
    • - -
    • "ERROR" storageConfig does not have a spec descriptor
    • +

      For fuse-online.v7.9.0:

      -

    • "ERROR" type does not have a spec descriptor
    • +
    • "ERROR" syndesises.syndesis.io does not have a status descriptor
    • -
    • "ERROR" pathname does not have a spec descriptor
    • +
    • "ERROR" addons does not have a spec descriptor
    • -
    • "ERROR" packageFilter does not have a spec descriptor
    • -
    • "ERROR" packageOverrides does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for addons
    • -
    • "ERROR" placement does not have a spec descriptor
    • -
    • "ERROR" managedDomains does not have a spec descriptor
    • +
      +

      For fuse-online-operator.v7.8.1:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • - -
    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • - -
    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • - -
    • "ERROR" observabilityaddons.observability.open-cluster-management.io does not have a status descriptor
    • - -
    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • - -
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • - -
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for placementImagePullSpec
    • - -
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • - -
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • - -
    • "WARNING" Add a spec descriptor for observabilityAddonSpec
    • - -
    • "WARNING" Add a spec descriptor for storageConfigObject
    • - -
    • "WARNING" Add a spec descriptor for enableMetrics
    • - -
    • "WARNING" Add a spec descriptor for interval
    • - -
    • "WARNING" Add a spec descriptor for observabilityAddonSpec
    • - -
    • "WARNING" Add a spec descriptor for storageConfig
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for pathname
    • - -
    • "WARNING" Add a spec descriptor for packageFilter
    • - -
    • "WARNING" Add a spec descriptor for packageOverrides
    • - -
    • "WARNING" Add a spec descriptor for placement
    • - -
    • "WARNING" Add a spec descriptor for managedDomains
    • - -
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • +
    • "ERROR" syndesises.syndesis.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • +
    • "ERROR" addons does not have a spec descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for Syndesis/v1beta2
    • -
    • "WARNING" Warning: Value core.observatorium.io/v1alpha1, Kind=Observatorium: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for addons
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
    • +
      +

      For fuse-online-operator.v7.7.1:

      -

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
    • +
    • "ERROR" addons does not have a spec descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
    • +
    • "ERROR" syndesises.syndesis.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for addons
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1alpha1, Kind=GitOpsCluster: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for Syndesis/v1beta1
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=FakeClusterInstall: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
    • +
      +

      For fuse-online.v7.9.0:

      -

    • "WARNING" Warning: Value submarineraddon.open-cluster-management.io/v1alpha1, Kind=SubmarinerConfig: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • +
    • "WARNING" (fuse-online.v7.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • +
      +

      For fuse-online-operator.v7.8.1:

      -

    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
    • +
    • "WARNING" (fuse-online-operator.v7.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["syndesises.syndesis.io"])
    • -
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
    • +
      +

      For fuse-online-operator.v7.7.1:

      -
      -

      For advanced-cluster-management.v2.2.7:

      +

    • "WARNING" (fuse-online-operator.v7.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["syndesises.syndesis.io"])
    • -
    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • +
    +
    + +

    NOT USED

    Grade B
    (600)
    service-registry-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • serviceregistry-1.0
    • + +
    • serviceregistry-1.1
    • + +
    • serviceregistry-1
    • + +
    • 2.x
    • + +
    • 2.0.x
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • + +
      +

      For service-registry-operator.v1.0.2:

      -

    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • +
    • "ERROR" error spec does not exist
    • -
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" storageConfigObject does not have a spec descriptor
    • -
    • "ERROR" managedDomains does not have a spec descriptor
    • +
      +

      For service-registry-operator.v1.1.4:

      -

    • "ERROR" type does not have a spec descriptor
    • +
    • "ERROR" error spec does not exist
    • -
    • "ERROR" pathname does not have a spec descriptor
    • -
    • "ERROR" packageFilter does not have a spec descriptor
    • -
    • "ERROR" packageOverrides does not have a spec descriptor
    • +
      +

      For service-registry-operator.v1.1.4:

      -

    • "ERROR" placement does not have a spec descriptor
    • +
    • "ERROR" error spec does not exist
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • +
      +

      For service-registry-operator.v2.0.2:

      -

    • "WARNING" Warning: Value core.observatorium.io/v1alpha1, Kind=Observatorium: provided API should have an example annotation
    • +
    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
    • +
    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
    • +
    • "ERROR" configuration does not have a spec descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
    • +
    • "ERROR" configuration does not have a spec descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for configuration
    • -
    • "WARNING" Warning: Value observability.open-cluster-management.io/v1beta1, Kind=ObservabilityAddon: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for configuration
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
    • +
      +

      For service-registry-operator.v2.0.2:

      -

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
    • +
    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
    • +
    • "ERROR" apicurioregistries.registry.apicur.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
    • +
    • "ERROR" configuration does not have a spec descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
    • +
    • "ERROR" configuration does not have a spec descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for configuration
    • -
    • "WARNING" Warning: Value submarineraddon.open-cluster-management.io/v1alpha1, Kind=SubmarinerConfig: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for configuration
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • +
      +

      For service-registry-operator.v1.0.2:

      -

    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • +
    • "WARNING" (service-registry-operator.v1.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
    • -
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • -
    • "WARNING" Add a spec descriptor for storageConfigObject
    • +
      +

      For service-registry-operator.v1.1.4:

      -

    • "WARNING" Add a spec descriptor for managedDomains
    • -
    • "WARNING" Add a spec descriptor for type
    • +
    • "WARNING" (service-registry-operator.v1.1.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for pathname
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
    • -
    • "WARNING" Add a spec descriptor for packageFilter
    • -
    • "WARNING" Add a spec descriptor for packageOverrides
    • +
      +

      For service-registry-operator.v1.1.4:

      -

    • "WARNING" Add a spec descriptor for placement
    • +
    • "WARNING" (service-registry-operator.v1.1.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
      -

      For advanced-cluster-management.v2.1.6:

      +

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicurioregistries.apicur.io"])
    • -
    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • +
      +

      For service-registry-operator.v2.0.2:

      -

    • "ERROR" multiclusterobservabilities.observability.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • +
    • "WARNING" (service-registry-operator.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • +
      +

      For service-registry-operator.v2.0.2:

      -

    • "ERROR" workImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" storageConfigObject does not have a spec descriptor
    • +
    • "WARNING" (service-registry-operator.v2.0.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "ERROR" managedDomains does not have a spec descriptor
    • -
    • "ERROR" type does not have a spec descriptor
    • -
    • "ERROR" pathname does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade C
    (500)
    service-telemetry-operator +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" placement does not have a spec descriptor
    • + +
      +

      For service-telemetry-operator.v1.2.0:

      -

    • "ERROR" packageFilter does not have a spec descriptor
    • +
    • "ERROR" graphingEnabled does not have a spec descriptor
    • -
    • "ERROR" packageOverrides does not have a spec descriptor
    • +
    • "ERROR" metricsEnabled does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" eventsEnabled does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for graphingEnabled
    • -
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for metricsEnabled
    • -
    • "WARNING" Add a spec descriptor for storageConfigObject
    • +
    • "WARNING" Add a spec descriptor for eventsEnabled
    • -
    • "WARNING" Add a spec descriptor for managedDomains
    • +
    • "WARNING" Add CRD validation for spec field `metricsEnabled` in ServiceTelemetry/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for type
    • +
    • "WARNING" Add CRD validation for spec field `eventsEnabled` in ServiceTelemetry/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for pathname
    • +
    • "WARNING" Add CRD validation for spec field `graphingEnabled` in ServiceTelemetry/v1alpha1
    • -
    • "WARNING" Add a spec descriptor for placement
    • +
    • "WARNING" Add CRD validation for spec field `alerting` in ServiceTelemetry/v1beta1
    • -
    • "WARNING" Add a spec descriptor for packageFilter
    • +
    • "WARNING" Add CRD validation for spec field `backends` in ServiceTelemetry/v1beta1
    • -
    • "WARNING" Add a spec descriptor for packageOverrides
    • +
    • "WARNING" Add CRD validation for spec field `graphing` in ServiceTelemetry/v1beta1
    • -
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • +
    • "WARNING" Add CRD validation for spec field `highAvailability` in ServiceTelemetry/v1beta1
    • -
    • "WARNING" Warning: Value core.observatorium.io/v1alpha1, Kind=Observatorium: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `transports` in ServiceTelemetry/v1beta1
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeprovision: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePoolNameLease: provided API should have an example annotation
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterState: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterImageSet: provided API should have an example annotation
    • +
      +

      For service-telemetry-operator.v1.2.0:

      -

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterProvision: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSync: provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["servicetelemetrys.infra.watch"])
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterDeployment: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterPool: provided API should have an example annotation
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    amq7-cert-manager-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 1.x
    • + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterRelocate: provided API should have an example annotation
    • + +
      +

      For amq7-cert-manager.v1.0.1:

      -

    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=Checkpoint: provided API should have an example annotation
    • +
    • "ERROR" organization does not have a spec descriptor
    • -
    • "WARNING" Warning: Value hiveinternal.openshift.io/v1alpha1, Kind=ClusterSyncLease: provided API should have an example annotation
    • +
    • "ERROR" issuerRef does not have a spec descriptor
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • +
    • "ERROR" error spec does not exist
    • -
    • "WARNING" Warning: Value observability.open-cluster-management.io/v1beta1, Kind=ObservabilityAddon: provided API should have an example annotation
    • +
    • "ERROR" certificates.certmanager.k8s.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=ClusterClaim: provided API should have an example annotation
    • +
    • "ERROR" issuers.certmanager.k8s.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncSet: provided API should have an example annotation
    • +
    • "ERROR" clusterissuers.certmanager.k8s.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • +
    • "ERROR" orders.certmanager.k8s.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=MachinePool: provided API should have an example annotation
    • +
    • "ERROR" challenges.certmanager.k8s.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncSet: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=DNSZone: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for organization
    • -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SelectorSyncIdentityProvider: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for issuerRef

    • -

      For advanced-cluster-management.v2.0.10:

      +

      For amq7-cert-manager.v1.0.1:

      -

    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • +
    • "ERROR" organization does not have a spec descriptor
    • -
    • "ERROR" managedDomains does not have a spec descriptor
    • +
    • "ERROR" issuerRef does not have a spec descriptor
    • -
    • "ERROR" type does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" pathname does not have a spec descriptor
    • +
    • "ERROR" error spec does not exist
    • -
    • "ERROR" packageFilter does not have a spec descriptor
    • +
    • "ERROR" certificates.certmanager.k8s.io does not have a status descriptor
    • -
    • "ERROR" packageOverrides does not have a spec descriptor
    • +
    • "ERROR" issuers.certmanager.k8s.io does not have a status descriptor
    • -
    • "ERROR" placement does not have a spec descriptor
    • +
    • "ERROR" clusterissuers.certmanager.k8s.io does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" orders.certmanager.k8s.io does not have a status descriptor
    • -
    • "ERROR" multiclusterhubs.operator.open-cluster-management.io does not have a status descriptor
    • +
    • "ERROR" challenges.certmanager.k8s.io does not have a status descriptor
    • -
    • "ERROR" clustermanagers.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" hiveconfigs.hive.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for organization
    • -
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for issuerRef
    • -
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • -
    • "WARNING" Add a spec descriptor for managedDomains
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for type
    • -
    • "WARNING" Add a spec descriptor for pathname
    • +
      +

      For amq7-cert-manager.v1.0.1:

      -

    • "WARNING" Add a spec descriptor for packageFilter
    • -
    • "WARNING" Add a spec descriptor for packageOverrides
    • +
    • "WARNING" (amq7-cert-manager.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for placement
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certificates.certmanager.k8s.io" "challenges.certmanager.k8s.io" "clusterissuers.certmanager.k8s.io" "issuers.certmanager.k8s.io" "orders.certmanager.k8s.io"])
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=HelmRelease: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: provided API should have an example annotation
    • +
      +

      For amq7-cert-manager.v1.0.1:

      -

    • "WARNING" Warning: Value app.k8s.io/v1beta1, Kind=Application: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=PlacementRule: provided API should have an example annotation
    • +
    • "WARNING" (amq7-cert-manager.v1.0.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["certificates.certmanager.k8s.io" "challenges.certmanager.k8s.io" "clusterissuers.certmanager.k8s.io" "issuers.certmanager.k8s.io" "orders.certmanager.k8s.io"])
    • @@ -4803,186 +4642,289 @@
      Grade

    NOT USED

    Grade D
    (100)
    compliance-operator +

    COMPLY

    +
    -

    ONLY WARNINGS

    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 4.7
    • + +
    • release-0.1
    • + +
    +
    + +
    +

    REQUIRED

    - +Info -
    -

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      + +
      +

      For compliance-operator.v0.1.32:

      -
      -

      For advanced-cluster-management.v2.3.1:

      +

    • "ERROR" content does not have a spec descriptor
    • +
    • "ERROR" profile does not have a spec descriptor
    • -
    • "WARNING" (advanced-cluster-management.v2.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" content does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" profile does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scanType does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" autoApplyRemediations does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scans does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" schedule does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" contentFile does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" contentImage does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" extends does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" setValues does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" title does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" disableRules does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" error spec does not exist
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" compliancesuites.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" profilebundles.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scansettings.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scansettingbindings.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" tailoredprofiles.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceCheckResult: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceRemediation: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Variable: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Profile: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Rule: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for content
    • -
      -

      For advanced-cluster-management.v2.2.7:

      +

    • "WARNING" Add a spec descriptor for profile
    • +
    • "WARNING" Add a spec descriptor for content
    • -
    • "WARNING" (advanced-cluster-management.v2.2.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for profile
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io" "observatoria.core.observatorium.io" "checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io" "multiclusterobservabilities.observability.open-cluster-management.io" "observabilityaddons.observability.open-cluster-management.io" "clustermanagers.operator.open-cluster-management.io" "multiclusterhubs.operator.open-cluster-management.io" "submarinerconfigs.submarineraddon.open-cluster-management.io"])
    • +
    • "WARNING" Add a spec descriptor for scanType
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for autoApplyRemediations
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for scans
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for schedule
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for contentFile
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for contentImage
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for extends
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for setValues
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for title
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for disableRules
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For compliance-operator.v0.1.39:

      -

    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" compliancesuites.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" profilebundles.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scansettings.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scansettingbindings.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" tailoredprofiles.compliance.openshift.io does not have a status descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" profile does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" content does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" content does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" profile does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scanType does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" scans does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" schedule does not have a spec descriptor
    • +
    • "ERROR" autoApplyRemediations does not have a spec descriptor
    • -
      -

      For advanced-cluster-management.v2.1.6:

      +

    • "ERROR" contentFile does not have a spec descriptor
    • +
    • "ERROR" contentImage does not have a spec descriptor
    • -
    • "WARNING" (advanced-cluster-management.v2.1.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" setValues does not have a spec descriptor
    • + +
    • "ERROR" title does not have a spec descriptor
    • + +
    • "ERROR" disableRules does not have a spec descriptor
    • + +
    • "ERROR" extends does not have a spec descriptor
    • + +
    • "ERROR" error spec does not exist
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for profile
    • + +
    • "WARNING" Add a spec descriptor for content
    • + +
    • "WARNING" Add a spec descriptor for content
    • + +
    • "WARNING" Add a spec descriptor for profile
    • + +
    • "WARNING" Add a spec descriptor for scanType
    • + +
    • "WARNING" Add a spec descriptor for scans
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clustermanagers.operator.open-cluster-management.io" "applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io" "observatoria.core.observatorium.io" "checkpoints.hive.openshift.io" "clusterclaims.hive.openshift.io" "clusterdeployments.hive.openshift.io" "clusterdeprovisions.hive.openshift.io" "clusterimagesets.hive.openshift.io" "clusterpools.hive.openshift.io" "clusterprovisions.hive.openshift.io" "clusterrelocates.hive.openshift.io" "clusterstates.hive.openshift.io" "dnszones.hive.openshift.io" "hiveconfigs.hive.openshift.io" "machinepoolnameleases.hive.openshift.io" "machinepools.hive.openshift.io" "selectorsyncidentityproviders.hive.openshift.io" "selectorsyncsets.hive.openshift.io" "syncidentityproviders.hive.openshift.io" "syncsets.hive.openshift.io" "clustersyncleases.hiveinternal.openshift.io" "clustersyncs.hiveinternal.openshift.io" "multiclusterobservabilities.observability.open-cluster-management.io" "observabilityaddons.observability.open-cluster-management.io" "multiclusterhubs.operator.open-cluster-management.io"])
    • +
    • "WARNING" Add a spec descriptor for schedule
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for autoApplyRemediations
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for contentFile
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for contentImage
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for setValues
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for title
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for disableRules
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for extends
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceCheckResult: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceRemediation: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Profile: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Rule: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Variable: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For compliance-operator.v0.1.32:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (compliance-operator.v0.1.32) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • "WARNING" provided API should have an example annotation
    • @@ -4996,12 +4938,12 @@
      Grade

      -

      For advanced-cluster-management.v2.0.10:

      +

      For compliance-operator.v0.1.39:

      -

    • "WARNING" (advanced-cluster-management.v2.0.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (compliance-operator.v0.1.39) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clustermanagers.operator.open-cluster-management.io" "applications.app.k8s.io" "channels.apps.open-cluster-management.io" "deployables.apps.open-cluster-management.io" "helmreleases.apps.open-cluster-management.io" "placementrules.apps.open-cluster-management.io" "subscriptions.apps.open-cluster-management.io" "hiveconfigs.hive.openshift.io" "multiclusterhubs.operator.open-cluster-management.io"])
    • +
    • "WARNING" provided API should have an example annotation
    • "WARNING" provided API should have an example annotation
    • @@ -5019,32 +4961,32 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade C
    (500)
    cluster-kube-descheduler-operatorjws-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.8
    • +
    • alpha
    @@ -5053,11 +4995,11 @@
    Grade

    NOT USED

    @@ -5067,39 +5009,53 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For clusterkubedescheduleroperator.4.8.0-202107291502:

      +

      For jws-operator.v1.0.3:

      -

    • "ERROR" kubedeschedulers.operator.openshift.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" profiles does not have a spec descriptor
    • +
    • "ERROR" webservers.web.servers.org does not have a status descriptor
    • -
    • "ERROR" deschedulingIntervalSeconds does not have a spec descriptor
    • +
    • "ERROR" webservers.web.servers.org does not have a status descriptor
    • -
    • "ERROR" managementState does not have a spec descriptor
    • +
    • "ERROR" applicationName does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "ERROR" webImage does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for profiles
    • +
    • "ERROR" applicationName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deschedulingIntervalSeconds
    • +
    • "ERROR" replicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "ERROR" webImageStream does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for applicationName
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for webImage
    • + +
    • "WARNING" Add a spec descriptor for applicationName
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for webImageStream
    • @@ -5110,25 +5066,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For clusterkubedescheduleroperator.4.8.0-202107291502:

      +

      For jws-operator.v1.0.3:

      -

    • "WARNING" (clusterkubedescheduleroperator.4.8.0-202107291502) csv.metadata.Name clusterkubedescheduleroperator.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (jws-operator.v1.0.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["webservers.web.servers.org"])
    • @@ -5138,127 +5096,159 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    datagridquay-bridge-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 8.1.x
    • +
    • quay-v3.4
    • -
    • 8.2.x
    • +
    • quay-v3.3
    • -
    • 8.0.x
    • +
    • quay-v3.5
    -

    USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • quay-bridge-operator.v3.4.6
    • + +
    • quay-bridge-operator.v3.3.4
    • + +
    • quay-bridge-operator.v3.5.5
    • + +
    +
    +

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For datagrid-operator.v8.1.7:

      +

      For quay-bridge-operator.v3.4.6:

      + +

    • "ERROR" quayintegrations.redhatcop.redhat.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" caches.infinispan.org does not have a status descriptor
    • +
    • "ERROR" clusterID does not have a spec descriptor
    • -
    • "ERROR" clusterName does not have a spec descriptor
    • +
    • "ERROR" credentialsSecretName does not have a spec descriptor
    • -
    • "ERROR" name does not have a spec descriptor
    • +
    • "ERROR" quayHostname does not have a spec descriptor
    • -
    • "ERROR" adminAuth does not have a spec descriptor
    • +
    • "ERROR" insecureRegistry does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "WARNING" Add a spec descriptor for clusterID
    • -
    • "WARNING" Add a spec descriptor for name
    • +
    • "WARNING" Add a spec descriptor for credentialsSecretName
    • -
    • "WARNING" Add a spec descriptor for adminAuth
    • +
    • "WARNING" Add a spec descriptor for quayHostname
    • + +
    • "WARNING" Add a spec descriptor for insecureRegistry

    • -

      For datagrid-operator.v8.2.4:

      +

      For quay-bridge-operator.v3.3.4:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" container does not have a spec descriptor
    • +
    • "ERROR" clusterID does not have a spec descriptor
    • -
    • "ERROR" adminAuth does not have a spec descriptor
    • +
    • "ERROR" credentialsSecretName does not have a spec descriptor
    • -
    • "ERROR" name does not have a spec descriptor
    • +
    • "ERROR" quayHostname does not have a spec descriptor
    • -
    • "ERROR" container does not have a spec descriptor
    • +
    • "ERROR" insecureRegistry does not have a spec descriptor
    • -
    • "ERROR" backups.infinispan.org does not have a status descriptor
    • +
    • "ERROR" quayintegrations.redhatcop.redhat.io does not have a status descriptor
    • -
    • "ERROR" caches.infinispan.org does not have a status descriptor
    • -
    • "ERROR" restores.infinispan.org does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for clusterID
    • +
    • "WARNING" Add a spec descriptor for credentialsSecretName
    • -
    • "WARNING" Add a spec descriptor for container
    • +
    • "WARNING" Add a spec descriptor for quayHostname
    • -
    • "WARNING" Add a spec descriptor for adminAuth
    • +
    • "WARNING" Add a spec descriptor for insecureRegistry
    • -
    • "WARNING" Add a spec descriptor for name
    • -
    • "WARNING" Add a spec descriptor for container
    • +
      +

      For quay-bridge-operator.v3.5.5:

      +

    • "ERROR" clusterID does not have a spec descriptor
    • -
      -

      For datagrid-operator.v8.0.3:

      +

    • "ERROR" credentialsSecretName does not have a spec descriptor
    • +
    • "ERROR" quayHostname does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for Infinispan/v1
    • +
    • "ERROR" insecureRegistry does not have a spec descriptor
    • + +
    • "ERROR" quayintegrations.redhatcop.redhat.io does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for clusterID
    • + +
    • "WARNING" Add a spec descriptor for credentialsSecretName
    • + +
    • "WARNING" Add a spec descriptor for quayHostname
    • + +
    • "WARNING" Add a spec descriptor for insecureRegistry
    • @@ -5269,37 +5259,45 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For datagrid-operator.v8.1.7:

      +

      For quay-bridge-operator.v3.4.6:

      -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["caches.infinispan.org" "infinispans.infinispan.org"])
    • +
    • "WARNING" (quay-bridge-operator.v3.4.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayintegrations.redhatcop.redhat.io"])

    • -

      For datagrid-operator.v8.2.4:

      +

      For quay-bridge-operator.v3.3.4:

      + + +

    • "WARNING" (quay-bridge-operator.v3.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayintegrations.redhatcop.redhat.io"])

    • -

      For datagrid-operator.v8.0.3:

      +

      For quay-bridge-operator.v3.5.5:

      -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infinispans.infinispan.org"])
    • +
    • "WARNING" (quay-bridge-operator.v3.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayintegrations.redhatcop.redhat.io"])
    • @@ -5309,32 +5307,36 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    rhsso-operatorrhacs-operator -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • latest
    • + +
    • rhacs-3.64
    • + +
    • rhacs-3.62
    @@ -5343,11 +5345,84 @@
    Grade

    NOT USED

    + +

    USED

    +

    PASS

    + + +
    +

    PASS

    + + +

    NOT USED

    Grade A
    (900)
    rhmtv-operator +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • release-v2.0.0-beta
    • + +
    +
    + +
    +

    NOT USED

    + @@ -5357,67 +5432,57 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For rhsso-operator.7.4.8:

      - -

    • "ERROR" keycloaks.keycloak.org does not have a status descriptor
    • - -
    • "ERROR" keycloakrealms.keycloak.org does not have a status descriptor
    • - -
    • "ERROR" keycloakbackups.keycloak.org does not have a status descriptor
    • - -
    • "ERROR" keycloakclients.keycloak.org does not have a status descriptor
    • - -
    • "ERROR" keycloakusers.keycloak.org does not have a status descriptor
    • +

      For rhmtv-operator.2.0.0-beta.1:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" instances does not have a spec descriptor
    • +
    • "ERROR" type does not have a spec descriptor
    • -
    • "ERROR" externalAccess does not have a spec descriptor
    • +
    • "ERROR" secret does not have a spec descriptor
    • -
    • "ERROR" realm does not have a spec descriptor
    • +
    • "ERROR" url does not have a spec descriptor
    • -
    • "ERROR" instanceSelector does not have a spec descriptor
    • +
    • "ERROR" plan does not have a spec descriptor
    • -
    • "ERROR" realmSelector does not have a spec descriptor
    • +
    • "ERROR" forkliftcontrollers.forklift.konveyor.io does not have a status descriptor
    • -
    • "ERROR" client does not have a spec descriptor
    • +
    • "ERROR" providers.forklift.konveyor.io does not have a status descriptor
    • -
    • "ERROR" realmSelector does not have a spec descriptor
    • +
    • "ERROR" plans.forklift.konveyor.io does not have a status descriptor
    • -
    • "ERROR" user does not have a spec descriptor
    • +
    • "ERROR" migrations.forklift.konveyor.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for instances
    • +
    • "WARNING" Add a spec descriptor for type
    • -
    • "WARNING" Add a spec descriptor for externalAccess
    • +
    • "WARNING" Add a spec descriptor for secret
    • -
    • "WARNING" Add a spec descriptor for realm
    • +
    • "WARNING" Add a spec descriptor for url
    • -
    • "WARNING" Add a spec descriptor for instanceSelector
    • +
    • "WARNING" Add a spec descriptor for plan
    • -
    • "WARNING" Add a spec descriptor for realmSelector
    • +
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=Provisioner: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for client
    • +
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=Host: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for realmSelector
    • +
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=NetworkMap: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for user
    • +
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=StorageMap: provided API should have an example annotation
    • @@ -5428,27 +5493,35 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For rhsso-operator.7.4.8:

      +

      For rhmtv-operator.2.0.0-beta.1:

      -

    • "WARNING" (rhsso-operator.7.4.8) csv.metadata.Name rhsso-operator.7.4.8 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (rhmtv-operator.2.0.0-beta.1) csv.metadata.Name rhmtv-operator.2.0.0-beta.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["keycloakbackups.keycloak.org" "keycloakclients.keycloak.org" "keycloakrealms.keycloak.org" "keycloaks.keycloak.org" "keycloakusers.keycloak.org"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["forkliftcontrollers.forklift.konveyor.io" "hosts.forklift.konveyor.io" "migrations.forklift.konveyor.io" "networkmaps.forklift.konveyor.io" "plans.forklift.konveyor.io" "providers.forklift.konveyor.io" "provisioners.forklift.konveyor.io" "storagemaps.forklift.konveyor.io"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -5458,28 +5531,28 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade D
    (100)
    web-terminalamq-broker-lts -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      @@ -5492,11 +5565,11 @@
      Grade

    NOT USED

    @@ -5506,42 +5579,37 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For web-terminal.v1.2.1:

      - -

    • "ERROR" template does not have a spec descriptor
    • +

      For amq-broker-operator.v0.9.3:

      -

    • "ERROR" routingClass does not have a spec descriptor
    • +
    • "ERROR" deploymentPlan does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" activemqartemises.broker.amq.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for template
    • - -
    • "WARNING" Add a spec descriptor for routingClass
    • - -
    • "WARNING" Warning: Value controller.devfile.io/v1alpha1, Kind=Component: provided API should have an example annotation
    • +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value controller.devfile.io/v1alpha1, Kind=WorkspaceRouting: provided API should have an example annotation
    • +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • -
      -

      For web-terminal.v1.3.0:

      +

    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "WARNING" Add CRD validation for spec field `deploymentPlan` in ActiveMQArtemis/v2alpha1
    • @@ -5552,42 +5620,27 @@
      Grade

    ONLY WARNINGS

    - - +Info -
    -
      - - -
      -

      For web-terminal.v1.2.1:

      - - -

    • "WARNING" (web-terminal.v1.2.1) csv.Spec.Icon not specified
    • - -
    • "WARNING" (web-terminal.v1.2.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["components.controller.devfile.io" "workspaceroutings.controller.devfile.io" "devworkspaces.workspace.devfile.io"])
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • + } + + #validators-showamq-broker-lts:target { + display: block; + } + + + +Info +
      +

        -

        For web-terminal.v1.3.0:

        +

        For amq-broker-operator.v0.9.3:

        -

      • "WARNING" (web-terminal.v1.3.0) csv.Spec.Icon not specified
      • +
      • "WARNING" (amq-broker-operator.v0.9.3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" (web-terminal.v1.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
      • @@ -5597,45 +5650,49 @@
        Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    clusterresourceoverridedatagrid -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.8
    • +
    • 8.1.x
    • + +
    • 8.2.x
    • + +
    • 8.0.x
    -

    NOT USED

    +

    USED

    @@ -5645,31 +5702,75 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For clusterresourceoverride-operator.4.8.0-202107291502:

      +

      For datagrid-operator.v8.1.7:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" caches.infinispan.org does not have a status descriptor
    • + +
    • "ERROR" clusterName does not have a spec descriptor
    • + +
    • "ERROR" name does not have a spec descriptor
    • + +
    • "ERROR" adminAuth does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for clusterName
    • + +
    • "WARNING" Add a spec descriptor for name
    • + +
    • "WARNING" Add a spec descriptor for adminAuth
    • -
    • "ERROR" clusterresourceoverrides.operator.autoscaling.openshift.io does not have a status descriptor
    • + +
      +

      For datagrid-operator.v8.2.4:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" podResourceOverride does not have a spec descriptor
    • +
    • "ERROR" container does not have a spec descriptor
    • +
    • "ERROR" adminAuth does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for podResourceOverride
    • +
    • "ERROR" name does not have a spec descriptor
    • + +
    • "ERROR" container does not have a spec descriptor
    • + +
    • "ERROR" backups.infinispan.org does not have a status descriptor
    • + +
    • "ERROR" caches.infinispan.org does not have a status descriptor
    • + +
    • "ERROR" restores.infinispan.org does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for container
    • + +
    • "WARNING" Add a spec descriptor for adminAuth
    • + +
    • "WARNING" Add a spec descriptor for name
    • + +
    • "WARNING" Add a spec descriptor for container
    • + + +
      +

      For datagrid-operator.v8.0.3:

      + + +

    • "WARNING" Add CRD validation for Infinispan/v1
    • @@ -5680,27 +5781,37 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For clusterresourceoverride-operator.4.8.0-202107291502:

      +

      For datagrid-operator.v8.1.7:

      -

    • "WARNING" (clusterresourceoverride-operator.4.8.0-202107291502) csv.metadata.Name clusterresourceoverride-operator.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["caches.infinispan.org" "infinispans.infinispan.org"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterresourceoverrides.operator.autoscaling.openshift.io"])
    • + +
      +

      For datagrid-operator.v8.2.4:

      + + + +
      +

      For datagrid-operator.v8.0.3:

      + + +

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["infinispans.infinispan.org"])
    • @@ -5710,34 +5821,32 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade B
    (600)
    compliance-operatorkubevirt-hyperconverged

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.7
    • - -
    • release-0.1
    • +
    • 2.4
    @@ -5746,23 +5855,21 @@
    Grade

    REQUIRED

    - +Info -
    + +Info +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
    • compliance-operator.v0.1.32
    • - -
    • compliance-operator.v0.1.39
    • +
    • kubevirt-hyperconverged-operator.v4.8.1
    @@ -5772,336 +5879,248 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For compliance-operator.v0.1.32:

      - -

    • "ERROR" content does not have a spec descriptor
    • - -
    • "ERROR" profile does not have a spec descriptor
    • - -
    • "ERROR" content does not have a spec descriptor
    • - -
    • "ERROR" profile does not have a spec descriptor
    • - -
    • "ERROR" scanType does not have a spec descriptor
    • +

      For kubevirt-hyperconverged-operator.v4.8.1:

      -

    • "ERROR" autoApplyRemediations does not have a spec descriptor
    • +
    • "ERROR" hyperconvergeds.hco.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" scans does not have a spec descriptor
    • +
    • "ERROR" networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" schedule does not have a spec descriptor
    • +
    • "ERROR" kubevirts.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" contentFile does not have a spec descriptor
    • +
    • "ERROR" ssps.ssp.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" contentImage does not have a spec descriptor
    • +
    • "ERROR" cdis.cdi.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" extends does not have a spec descriptor
    • +
    • "ERROR" nodemaintenances.nodemaintenance.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" setValues does not have a spec descriptor
    • +
    • "ERROR" hostpathprovisioners.hostpathprovisioner.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" title does not have a spec descriptor
    • +
    • "ERROR" vmimportconfigs.v2v.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" disableRules does not have a spec descriptor
    • +
    • "ERROR" kubeMacPool does not have a spec descriptor
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" linuxBridge does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" macvtap does not have a spec descriptor
    • -
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" multus does not have a spec descriptor
    • -
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" nmstate does not have a spec descriptor
    • -
    • "ERROR" compliancesuites.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" ovs does not have a spec descriptor
    • -
    • "ERROR" profilebundles.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" scansettings.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" scansettingbindings.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" commonTemplates does not have a spec descriptor
    • -
    • "ERROR" tailoredprofiles.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" templateValidator does not have a spec descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceCheckResult: provided API should have an example annotation
    • +
    • "ERROR" nodeName does not have a spec descriptor
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceRemediation: provided API should have an example annotation
    • +
    • "ERROR" reason does not have a spec descriptor
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Variable: provided API should have an example annotation
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Profile: provided API should have an example annotation
    • +
    • "ERROR" pathConfig does not have a spec descriptor
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Rule: provided API should have an example annotation
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for content
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for profile
    • -
    • "WARNING" Add a spec descriptor for content
    • +
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=OVirtProvider: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for profile
    • +
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=V2VVmware: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for scanType
    • +
    • "WARNING" Add a spec descriptor for kubeMacPool
    • -
    • "WARNING" Add a spec descriptor for autoApplyRemediations
    • +
    • "WARNING" Add a spec descriptor for linuxBridge
    • -
    • "WARNING" Add a spec descriptor for scans
    • +
    • "WARNING" Add a spec descriptor for macvtap
    • -
    • "WARNING" Add a spec descriptor for schedule
    • +
    • "WARNING" Add a spec descriptor for multus
    • -
    • "WARNING" Add a spec descriptor for contentFile
    • +
    • "WARNING" Add a spec descriptor for nmstate
    • -
    • "WARNING" Add a spec descriptor for contentImage
    • +
    • "WARNING" Add a spec descriptor for ovs
    • -
    • "WARNING" Add a spec descriptor for extends
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add a spec descriptor for setValues
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add a spec descriptor for title
    • +
    • "WARNING" Add a spec descriptor for commonTemplates
    • -
    • "WARNING" Add a spec descriptor for disableRules
    • +
    • "WARNING" Add a spec descriptor for templateValidator
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
      -

      For compliance-operator.v0.1.39:

      +

    • "WARNING" Add a spec descriptor for nodeName
    • -
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for reason
    • -
    • "ERROR" compliancescans.compliance.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "ERROR" compliancesuites.compliance.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for pathConfig
    • -
    • "ERROR" profilebundles.compliance.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "ERROR" scansettings.compliance.openshift.io does not have a status descriptor
    • -
    • "ERROR" scansettingbindings.compliance.openshift.io does not have a status descriptor
    • +
      +

      For kubevirt-hyperconverged-operator.v2.4.5:

      -

    • "ERROR" tailoredprofiles.compliance.openshift.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" profile does not have a spec descriptor
    • +
    • "ERROR" hyperconvergeds.hco.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" content does not have a spec descriptor
    • +
    • "ERROR" networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" content does not have a spec descriptor
    • +
    • "ERROR" kubevirts.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" profile does not have a spec descriptor
    • +
    • "ERROR" kubevirtcommontemplatesbundles.ssp.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" scanType does not have a spec descriptor
    • +
    • "ERROR" kubevirtmetricsaggregations.ssp.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" scans does not have a spec descriptor
    • +
    • "ERROR" kubevirtnodelabellerbundles.ssp.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" schedule does not have a spec descriptor
    • +
    • "ERROR" kubevirttemplatevalidators.ssp.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" autoApplyRemediations does not have a spec descriptor
    • +
    • "ERROR" cdis.cdi.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" contentFile does not have a spec descriptor
    • +
    • "ERROR" nodemaintenances.nodemaintenance.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" contentImage does not have a spec descriptor
    • +
    • "ERROR" hostpathprovisioners.hostpathprovisioner.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" setValues does not have a spec descriptor
    • +
    • "ERROR" vmimportconfigs.v2v.kubevirt.io does not have a status descriptor
    • -
    • "ERROR" title does not have a spec descriptor
    • +
    • "ERROR" BareMetalPlatform does not have a spec descriptor
    • -
    • "ERROR" disableRules does not have a spec descriptor
    • +
    • "ERROR" ovs does not have a spec descriptor
    • -
    • "ERROR" extends does not have a spec descriptor
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" kubeMacPool does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" linuxBridge does not have a spec descriptor
    • +
    • "ERROR" macvtap does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for profile
    • +
    • "ERROR" multus does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for content
    • +
    • "ERROR" nmstate does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for content
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for profile
    • +
    • "ERROR" version does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for scanType
    • +
    • "ERROR" version does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for scans
    • +
    • "ERROR" version does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for schedule
    • +
    • "ERROR" templateValidatorReplicas does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for autoApplyRemediations
    • +
    • "ERROR" version does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for contentFile
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for contentImage
    • +
    • "ERROR" nodeName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for setValues
    • +
    • "ERROR" reason does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for title
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for disableRules
    • +
    • "ERROR" pathConfig does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for extends
    • +
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceCheckResult: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=ComplianceRemediation: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `BareMetalPlatform` in HyperConverged/v1alpha1
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Profile: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `ovs` in NetworkAddonsConfig/v1alpha1
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Rule: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in NetworkAddonsConfig/v1alpha1
    • -
    • "WARNING" Warning: Value compliance.openshift.io/v1alpha1, Kind=Variable: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for spec field `kubeMacPool` in NetworkAddonsConfig/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `linuxBridge` in NetworkAddonsConfig/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `macvtap` in NetworkAddonsConfig/v1alpha1
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add CRD validation for spec field `multus` in NetworkAddonsConfig/v1alpha1
    • +
    • "WARNING" Add CRD validation for spec field `nmstate` in NetworkAddonsConfig/v1alpha1
    • -
      -

      For compliance-operator.v0.1.32:

      +

    • "WARNING" Add CRD validation for KubeVirt/v1alpha3
    • +
    • "WARNING" Add CRD validation for KubevirtCommonTemplatesBundle/v1
    • -
    • "WARNING" (compliance-operator.v0.1.32) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add CRD validation for KubevirtMetricsAggregation/v1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for KubevirtNodeLabellerBundle/v1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for KubevirtTemplateValidator/v1
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=V2VVmware: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=OVirtProvider: provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for BareMetalPlatform
    • +
    • "WARNING" Add a spec descriptor for ovs
    • -
      -

      For compliance-operator.v0.1.39:

      +

    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for kubeMacPool
    • -
    • "WARNING" (compliance-operator.v0.1.39) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for linuxBridge
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for macvtap
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for multus
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for nmstate
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for version
    • -
    -
    - -

    NOT USED

    Grade C
    (500)
    cincinnati-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • v1
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for templateValidatorReplicas
    • - -
      -

      For update-service-operator.v4.6.0:

      +

    • "WARNING" Add a spec descriptor for version
    • -
    • "ERROR" updateservices.updateservice.operator.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for nodeName
    • -
    • "ERROR" foo does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for reason
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add CRD validation for spec field `foo` in UpdateService/v1
    • +
    • "WARNING" Add a spec descriptor for pathConfig
    • -
    • "WARNING" Add a spec descriptor for foo
    • +
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • @@ -6112,27 +6131,42 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For update-service-operator.v4.6.0:

      +

      For kubevirt-hyperconverged-operator.v4.8.1:

      -

    • "WARNING" (update-service-operator.v4.6.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (kubevirt-hyperconverged-operator.v4.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["updateservices.updateservice.operator.openshift.io"]),ClusterRole: (["metrics-reader"]),
    • +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • + + +
      +

      For kubevirt-hyperconverged-operator.v2.4.5:

      + + +

    • "WARNING" (kubevirt-hyperconverged-operator.v2.4.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io" "hostpathprovisioners.hostpathprovisioner.kubevirt.io" "hyperconvergeds.hco.kubevirt.io" "v2vvmwares.v2v.kubevirt.io" "ovirtproviders.v2v.kubevirt.io" "kubevirtcommontemplatesbundles.ssp.kubevirt.io" "kubevirtmetricsaggregations.ssp.kubevirt.io" "kubevirtnodelabellerbundles.ssp.kubevirt.io" "kubevirttemplatevalidators.ssp.kubevirt.io" "nodemaintenances.nodemaintenance.kubevirt.io" "cdis.cdi.kubevirt.io" "kubevirts.kubevirt.io" "vmimportconfigs.v2v.kubevirt.io"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -6142,36 +6176,32 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (500)
    rhacs-operatorintegration-operator

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • latest
    • - -
    • rhacs-3.64
    • - -
    • rhacs-3.62
    • +
    • 1.x
    @@ -6180,11 +6210,11 @@
    Grade

    NOT USED

    @@ -6192,116 +6222,210 @@
    Grade

    USED

    -

    PASS

    +

    ONLY ERRORS

    + +Info +
    +
      + + +
      +

      For integration-operator.v1.1.0:

      + +

    • "ERROR" installations.integration.redhat.com does not have a status descriptor
    • + + + + +
    +
    +
    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For integration-operator.v1.1.0:

      + + +

    • "WARNING" (integration-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + + + +
    +
    +

    NOT USED

    Grade A
    (900)
    Grade B
    (600)
    ansible-automation-platform-operatorjaeger-product -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • early-access
    • +
    • 1.20-stable
    • + +
    • 1.17-stable
    • + +
    • tech-preview
    • + +
    • 1.24-stable
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • jaeger-operator.v1.20.4
    • + +
    • jaeger-operator.v1.17.10
    • + +
    • jaeger-operator.v2.0.0-tp.1
    • + +
    • jaeger-operator.v1.24.1
    • + +
    • jaeger-operator.v1.24.1
    • + +
    +
    +

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ansible-automation-platform-operator.v2.0.0:

      +

      For jaeger-operator.v1.20.4:

      + +

    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • + +
    • "ERROR" error spec does not exist
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value automationcontroller.ansible.com/v1beta1, Kind=AutomationControllerBackup: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for Jaeger/v1
    • -
    • "WARNING" Warning: Value automationcontroller.ansible.com/v1beta1, Kind=AutomationControllerRestore: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value automationcontroller.ansible.com/v1beta1, Kind=AutomationController: provided API should have an example annotation
    • +
      +

      For jaeger-operator.v1.17.10:

      -

    • "WARNING" Warning: Value automationhub.ansible.com/v1beta1, Kind=AutomationHub: provided API should have an example annotation
    • +
    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value automationhub.ansible.com/v1beta1, Kind=AutomationHubBackup: provided API should have an example annotation
    • +
    • "ERROR" error spec does not exist
    • -
    • "WARNING" Warning: Value automationhub.ansible.com/v1beta1, Kind=AutomationHubRestore: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value tower.ansible.com/v1alpha1, Kind=AnsibleJob: provided API should have an example annotation
    • -
    • "WARNING" Warning: Value tower.ansible.com/v1alpha1, Kind=JobTemplate: provided API should have an example annotation
    • +
    • "WARNING" Add CRD validation for Jaeger/v1
    • + + +
      +

      For jaeger-operator.v2.0.0-tp.1:

      + +

    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • + +
    • "ERROR" error spec does not exist
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add CRD validation for Jaeger/v1
    • + + +
      +

      For jaeger-operator.v1.24.1:

      + +

    • "ERROR" error spec does not exist
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • + + + +
      +

      For jaeger-operator.v1.24.1:

      + +

    • "ERROR" error spec does not exist
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • + @@ -6310,47 +6434,61 @@
      Grade
    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For ansible-automation-platform-operator.v2.0.0:

      +

      For jaeger-operator.v1.20.4:

      -

    • "ERROR" (ansible-automation-platform-operator.v2.0.0) csv.Spec.Maintainers elements should contain both name and email
    • +
    • "WARNING" (jaeger-operator.v1.20.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" (ansible-automation-platform-operator.v2.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jaegers.jaegertracing.io"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ansiblejobs.tower.ansible.com" "jobtemplates.tower.ansible.com"])
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For jaeger-operator.v1.17.10:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (jaeger-operator.v1.17.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jaegers.jaegertracing.io"])
    • -
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For jaeger-operator.v2.0.0-tp.1:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (jaeger-operator.v2.0.0-tp.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jaegers.jaegertracing.io"])
    • + + +
      +

      For jaeger-operator.v1.24.1:

      + + +

    • "WARNING" (jaeger-operator.v1.24.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + + +
      +

      For jaeger-operator.v1.24.1:

      + + +

    • "WARNING" (jaeger-operator.v1.24.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -6360,152 +6498,101 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (500)
    red-hat-camel-knfd

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • techpreview
    • - -
    • 1.4.x
    • +
    • 4.8
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • node-feature-discovery-operator.v4.8.0
    • + +
    +
    +

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For red-hat-camel-k-operator.v1.3.3:

      - -

    • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" integrations.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" builds.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" kamelets.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" flows does not have a spec descriptor
    • - -
    • "ERROR" definition does not have a spec descriptor
    • - -
    • "ERROR" flow does not have a spec descriptor
    • - -
    • "ERROR" sink does not have a spec descriptor
    • - -
    • "ERROR" source does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for flows
    • - -
    • "WARNING" Add a spec descriptor for definition
    • - -
    • "WARNING" Add a spec descriptor for flow
    • - -
    • "WARNING" Add a spec descriptor for sink
    • - -
    • "WARNING" Add a spec descriptor for source
    • - - -
      -

      For red-hat-camel-k-operator.v1.4.0:

      +

      For node-feature-discovery-operator.v4.8.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" builds.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" camelcatalogs.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" integrations.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" integrationkits.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" integrationplatforms.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" kamelets.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" kameletbindings.camel.apache.org does not have a status descriptor
    • - -
    • "ERROR" error spec does not exist
    • - -
    • "ERROR" flows does not have a spec descriptor
    • - -
    • "ERROR" definition does not have a spec descriptor
    • +
    • "ERROR" nodefeaturediscoveries.nfd.openshift.io does not have a status descriptor
    • -
    • "ERROR" flow does not have a spec descriptor
    • +
    • "ERROR" customConfig does not have a spec descriptor
    • -
    • "ERROR" source does not have a spec descriptor
    • +
    • "ERROR" instance does not have a spec descriptor
    • -
    • "ERROR" sink does not have a spec descriptor
    • +
    • "ERROR" operand does not have a spec descriptor
    • +
    • "ERROR" workerConfig does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for flows
    • -
    • "WARNING" Add a spec descriptor for definition
    • +
    • "WARNING" Add a spec descriptor for customConfig
    • -
    • "WARNING" Add a spec descriptor for flow
    • +
    • "WARNING" Add a spec descriptor for instance
    • -
    • "WARNING" Add a spec descriptor for source
    • +
    • "WARNING" Add a spec descriptor for operand
    • -
    • "WARNING" Add a spec descriptor for sink
    • +
    • "WARNING" Add a spec descriptor for workerConfig
    • @@ -6514,1341 +6601,928 @@
      Grade
    -

    ONLY WARNINGS

    +

    PASS

    - +Info -
    -
      - - -
      -

      For red-hat-camel-k-operator.v1.3.3:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["builds.camel.apache.org" "camelcatalogs.camel.apache.org" "integrationkits.camel.apache.org" "integrationplatforms.camel.apache.org" "integrations.camel.apache.org" "kameletbindings.camel.apache.org" "kamelets.camel.apache.org"])
    • - - -
      -

      For red-hat-camel-k-operator.v1.4.0:

      - - - - -

    -
    -

    NOT USED

    Grade C
    (500)
    Grade B
    (700)
    amq-broker3scale-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • current
    • +
    • threescale-2.6
    • -
    • 7.x
    • +
    • threescale-2.10
    • -
    • 7.8.x
    • +
    • threescale-2.7
    • -
    • current-76
    • +
    • threescale-2.9
    • -
    • alpha
    • +
    • threescale-2.8
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • 3scale-operator.v0.3.0
    • + +
    • 3scale-operator.v0.4.2
    • + +
    • 3scale-operator.v0.6.1
    • + +
    • 3scale-operator.v0.5.5
    • + +
    +
    +

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For amq-broker-operator.v7.8.1-opr-3:

      - -

    • "ERROR" deploymentPlan does not have a spec descriptor
    • - -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • - -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • - - -
      -

      For amq-broker-operator.v0.13.0:

      - -

    • "ERROR" deploymentPlan does not have a spec descriptor
    • - -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • - -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • +

      For 3scale-operator.v0.3.0:

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" apis.capabilities.3scale.net does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "ERROR" bindings.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" limits.capabilities.3scale.net does not have a status descriptor
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3:

      +

    • "ERROR" mappingrules.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "ERROR" metrics.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" plans.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" highAvailability does not have a spec descriptor
    • +
    • "ERROR" system does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "ERROR" description does not have a spec descriptor
    • +
    • "ERROR" integrationMethod does not have a spec descriptor
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3:

      +

    • "ERROR" APISelector does not have a spec descriptor
    • -
    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "ERROR" credentialsRef does not have a spec descriptor
    • -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" description does not have a spec descriptor
    • -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" maxValue does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" metricRef does not have a spec descriptor
    • +
    • "ERROR" period does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "ERROR" increment does not have a spec descriptor
    • +
    • "ERROR" method does not have a spec descriptor
    • -
      -

      For amq-broker-operator.v0.9.1:

      +

    • "ERROR" metricRef does not have a spec descriptor
    • -
    • "ERROR" activemqartemises.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" path does not have a spec descriptor
    • -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" unit does not have a spec descriptor
    • -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • +
    • "ERROR" description does not have a spec descriptor
    • -
    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "ERROR" incrementHits does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" trialPeriod does not have a spec descriptor
    • +
    • "ERROR" approvalRequired does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "ERROR" costs does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `deploymentPlan` in ActiveMQArtemis/v2alpha1
    • +
    • "ERROR" default does not have a spec descriptor
    • +
    • "ERROR" limitSelector does not have a spec descriptor
    • +
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • +
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3:

      +

    • "ERROR" username does not have a spec descriptor
    • +
    • "ERROR" email does not have a spec descriptor
    • -
    • "WARNING" (amq-broker-operator.v7.8.1-opr-3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "ERROR" organizationName does not have a spec descriptor
    • -
      -

      For amq-broker-operator.v0.13.0:

      +

    • "WARNING" Add a spec descriptor for highAvailability
    • +
    • "WARNING" Add a spec descriptor for system
    • -
    • "WARNING" (amq-broker-operator.v0.13.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for description
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "WARNING" Add a spec descriptor for integrationMethod
    • +
    • "WARNING" Add a spec descriptor for APISelector
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3:

      +

    • "WARNING" Add a spec descriptor for credentialsRef
    • +
    • "WARNING" Add a spec descriptor for description
    • -
    • "WARNING" (amq-broker-operator.v7.8.1-opr-3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for maxValue
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "WARNING" Add a spec descriptor for metricRef
    • +
    • "WARNING" Add a spec descriptor for period
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3:

      +

    • "WARNING" Add a spec descriptor for increment
    • +
    • "WARNING" Add a spec descriptor for method
    • -
    • "WARNING" (amq-broker-operator.v7.8.1-opr-3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for metricRef
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "WARNING" Add a spec descriptor for path
    • +
    • "WARNING" Add a spec descriptor for unit
    • -
      -

      For amq-broker-operator.v0.9.1:

      +

    • "WARNING" Add a spec descriptor for description
    • +
    • "WARNING" Add a spec descriptor for incrementHits
    • -
    • "WARNING" (amq-broker-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for trialPeriod
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "WARNING" Add a spec descriptor for approvalRequired
    • +
    • "WARNING" Add a spec descriptor for costs
    • +
    • "WARNING" Add a spec descriptor for default
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    amq-broker-rhel8 -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • 7.x
    • - -
    • 7.8.x
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for limitSelector
    • - -
      -

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      +

    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for username
    • -
    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for email
    • +
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "WARNING" Add a spec descriptor for organizationName
    • +
    • "WARNING" Add CRD validation for spec field `APISelector` in Binding/v1alpha1
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      +

    • "WARNING" Add CRD validation for spec field `description` in Limit/v1alpha1
    • -
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • -
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • +
      +

      For 3scale-operator.v0.4.2:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" highAvailability does not have a spec descriptor
    • -
    • "ERROR" deploymentPlan does not have a spec descriptor
    • +
    • "ERROR" system does not have a spec descriptor
    • +
    • "ERROR" description does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for deploymentPlan
    • +
    • "ERROR" integrationMethod does not have a spec descriptor
    • +
    • "ERROR" APISelector does not have a spec descriptor
    • +
    • "ERROR" credentialsRef does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" metricRef does not have a spec descriptor
    • +
    • "ERROR" period does not have a spec descriptor
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      +

    • "ERROR" description does not have a spec descriptor
    • +
    • "ERROR" maxValue does not have a spec descriptor
    • -
    • "WARNING" (amq-broker-operator.v7.8.1-opr-3-rhel8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" metricRef does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "ERROR" path does not have a spec descriptor
    • +
    • "ERROR" increment does not have a spec descriptor
    • -
      -

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      +

    • "ERROR" method does not have a spec descriptor
    • +
    • "ERROR" unit does not have a spec descriptor
    • -
    • "WARNING" (amq-broker-operator.v7.8.1-opr-3-rhel8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" description does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • +
    • "ERROR" incrementHits does not have a spec descriptor
    • +
    • "ERROR" approvalRequired does not have a spec descriptor
    • +
    • "ERROR" costs does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    klusterlet-product -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • release-2.3
    • - -
    • release-2.2
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" default does not have a spec descriptor
    • - -
      -

      For klusterlet-product.v2.3.1:

      +

    • "ERROR" limitSelector does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" trialPeriod does not have a spec descriptor
    • -
    • "ERROR" clusterName does not have a spec descriptor
    • +
    • "ERROR" organizationName does not have a spec descriptor
    • -
    • "ERROR" externalServerURLs does not have a spec descriptor
    • +
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • -
    • "ERROR" namespace does not have a spec descriptor
    • +
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • -
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • +
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • -
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • +
    • "ERROR" username does not have a spec descriptor
    • -
    • "ERROR" klusterlets.operator.open-cluster-management.io does not have a status descriptor
    • +
    • "ERROR" email does not have a spec descriptor
    • +
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "ERROR" apis.capabilities.3scale.net does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for externalServerURLs
    • +
    • "ERROR" bindings.capabilities.3scale.net does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for namespace
    • +
    • "ERROR" limits.capabilities.3scale.net does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • +
    • "ERROR" mappingrules.capabilities.3scale.net does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • +
    • "ERROR" metrics.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" plans.capabilities.3scale.net does not have a status descriptor
    • -
      -

      For klusterlet-product.v2.2.7:

      +

    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" klusterlets.operator.open-cluster-management.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" clusterName does not have a spec descriptor
    • -
    • "ERROR" externalServerURLs does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for highAvailability
    • -
    • "ERROR" namespace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for system
    • -
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for description
    • -
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for integrationMethod
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for APISelector
    • +
    • "WARNING" Add a spec descriptor for credentialsRef
    • -
    • "WARNING" Add a spec descriptor for clusterName
    • +
    • "WARNING" Add a spec descriptor for metricRef
    • -
    • "WARNING" Add a spec descriptor for externalServerURLs
    • +
    • "WARNING" Add a spec descriptor for period
    • -
    • "WARNING" Add a spec descriptor for namespace
    • +
    • "WARNING" Add a spec descriptor for description
    • -
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for maxValue
    • -
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • +
    • "WARNING" Add a spec descriptor for metricRef
    • +
    • "WARNING" Add a spec descriptor for path
    • +
    • "WARNING" Add a spec descriptor for increment
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for method
    • +
    • "WARNING" Add a spec descriptor for unit
    • -
      -

      For klusterlet-product.v2.3.1:

      +

    • "WARNING" Add a spec descriptor for description
    • +
    • "WARNING" Add a spec descriptor for incrementHits
    • -
    • "WARNING" (klusterlet-product.v2.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for approvalRequired
    • +
    • "WARNING" Add a spec descriptor for costs
    • -
      -

      For klusterlet-product.v2.2.7:

      +

    • "WARNING" Add a spec descriptor for default
    • +
    • "WARNING" Add a spec descriptor for limitSelector
    • -
    • "WARNING" (klusterlet-product.v2.2.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for trialPeriod
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["klusterlets.operator.open-cluster-management.io"])
    • +
    • "WARNING" Add a spec descriptor for organizationName
    • +
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • + +
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • + +
    • "WARNING" Add a spec descriptor for username
    • + +
    • "WARNING" Add a spec descriptor for email
    • + +
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • + +
    • "WARNING" Add CRD validation for spec field `APISelector` in Binding/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `description` in Limit/v1alpha1
    • -
    -
    - -

    NOT USED

    Grade B
    (600)
    submariner -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha-0.9
    • - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      -
      -

      For submariner.v0.9.0:

      +

      For 3scale-operator.v0.6.1:

      -

    • "ERROR" brokers.submariner.io does not have a status descriptor
    • +
    • "ERROR" apimanagerbackups.apps.3scale.net does not have a status descriptor
    • -
    • "ERROR" submariners.submariner.io does not have a status descriptor
    • +
    • "ERROR" apimanagerrestores.apps.3scale.net does not have a status descriptor
    • -
    • "ERROR" components does not have a spec descriptor
    • +
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" defaultGlobalnetClusterSize does not have a spec descriptor
    • +
    • "ERROR" backends.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" globalnetEnabled does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" ceIPSecIKEPort does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" debug does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" natEnabled does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" broker does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" brokerK8sApiServer does not have a spec descriptor
    • +
    • "ERROR" apicast does not have a spec descriptor
    • -
    • "ERROR" brokerK8sCA does not have a spec descriptor
    • +
    • "ERROR" backend does not have a spec descriptor
    • -
    • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
    • +
    • "ERROR" system does not have a spec descriptor
    • -
    • "ERROR" ceIPSecNATTPort does not have a spec descriptor
    • +
    • "ERROR" zync does not have a spec descriptor
    • -
    • "ERROR" namespace does not have a spec descriptor
    • +
    • "ERROR" podDisruptionBudget does not have a spec descriptor
    • -
    • "ERROR" globalCIDR does not have a spec descriptor
    • +
    • "ERROR" highAvailability does not have a spec descriptor
    • -
    • "ERROR" repository does not have a spec descriptor
    • +
    • "ERROR" monitoring does not have a spec descriptor
    • -
    • "ERROR" serviceCIDR does not have a spec descriptor
    • +
    • "ERROR" system does not have a spec descriptor
    • -
    • "ERROR" cableDriver does not have a spec descriptor
    • +
    • "ERROR" backupDestination does not have a spec descriptor
    • + +
    • "ERROR" restoreSource does not have a spec descriptor
    • + +
    • "ERROR" organizationName does not have a spec descriptor
    • + +
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • + +
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • + +
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • + +
    • "ERROR" username does not have a spec descriptor
    • + +
    • "ERROR" email does not have a spec descriptor
    • + +
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • + +
    • "ERROR" name does not have a spec descriptor
    • + +
    • "ERROR" privateBaseURL does not have a spec descriptor
    • + +
    • "ERROR" systemName does not have a spec descriptor
    • + +
    • "ERROR" name does not have a spec descriptor
    • + +
    • "ERROR" name does not have a spec descriptor
    • + +
    • "ERROR" deployment does not have a spec descriptor
    • + +
    • "ERROR" deployment does not have a spec descriptor
    • + +
    • "ERROR" name does not have a spec descriptor
    • + +
    • "ERROR" applicationPlans does not have a spec descriptor
    • + +
    • "ERROR" metrics does not have a spec descriptor
    • + +
    • "ERROR" name does not have a spec descriptor
    • -
    • "ERROR" ceIPSecPSK does not have a spec descriptor
    • +
    • "ERROR" applicationPlans does not have a spec descriptor
    • -
    • "ERROR" connectionHealthCheck does not have a spec descriptor
    • +
    • "ERROR" metrics does not have a spec descriptor
    • -
    • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
    • +
    • "ERROR" name does not have a spec descriptor
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "ERROR" metrics does not have a spec descriptor
    • -
    • "ERROR" ceIPSecDebug does not have a spec descriptor
    • +
    • "ERROR" name does not have a spec descriptor
    • -
    • "ERROR" clusterCIDR does not have a spec descriptor
    • +
    • "ERROR" mappingRules does not have a spec descriptor
    • -
    • "ERROR" clusterID does not have a spec descriptor
    • +
    • "ERROR" methods does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for components
    • +
    • "WARNING" Add a spec descriptor for apicast
    • -
    • "WARNING" Add a spec descriptor for defaultGlobalnetClusterSize
    • +
    • "WARNING" Add a spec descriptor for backend
    • -
    • "WARNING" Add a spec descriptor for globalnetEnabled
    • +
    • "WARNING" Add a spec descriptor for system
    • -
    • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
    • +
    • "WARNING" Add a spec descriptor for zync
    • -
    • "WARNING" Add a spec descriptor for ceIPSecIKEPort
    • +
    • "WARNING" Add a spec descriptor for podDisruptionBudget
    • -
    • "WARNING" Add a spec descriptor for debug
    • +
    • "WARNING" Add a spec descriptor for highAvailability
    • -
    • "WARNING" Add a spec descriptor for natEnabled
    • +
    • "WARNING" Add a spec descriptor for monitoring
    • -
    • "WARNING" Add a spec descriptor for broker
    • +
    • "WARNING" Add a spec descriptor for system
    • -
    • "WARNING" Add a spec descriptor for brokerK8sApiServer
    • +
    • "WARNING" Add a spec descriptor for backupDestination
    • -
    • "WARNING" Add a spec descriptor for brokerK8sCA
    • +
    • "WARNING" Add a spec descriptor for restoreSource
    • -
    • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
    • +
    • "WARNING" Add a spec descriptor for organizationName
    • -
    • "WARNING" Add a spec descriptor for ceIPSecNATTPort
    • +
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • -
    • "WARNING" Add a spec descriptor for namespace
    • +
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • -
    • "WARNING" Add a spec descriptor for globalCIDR
    • +
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • -
    • "WARNING" Add a spec descriptor for repository
    • +
    • "WARNING" Add a spec descriptor for username
    • -
    • "WARNING" Add a spec descriptor for serviceCIDR
    • +
    • "WARNING" Add a spec descriptor for email
    • -
    • "WARNING" Add a spec descriptor for cableDriver
    • +
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • -
    • "WARNING" Add a spec descriptor for ceIPSecPSK
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "WARNING" Add a spec descriptor for connectionHealthCheck
    • +
    • "WARNING" Add a spec descriptor for privateBaseURL
    • -
    • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled
    • +
    • "WARNING" Add a spec descriptor for systemName
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "WARNING" Add a spec descriptor for ceIPSecDebug
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "WARNING" Add a spec descriptor for clusterCIDR
    • +
    • "WARNING" Add a spec descriptor for deployment
    • -
    • "WARNING" Add a spec descriptor for clusterID
    • +
    • "WARNING" Add a spec descriptor for deployment
    • +
    • "WARNING" Add a spec descriptor for name
    • -
      -

      For submariner.v0.8.1:

      +

    • "WARNING" Add a spec descriptor for applicationPlans
    • -
    • "ERROR" broker does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for metrics
    • -
    • "ERROR" cableDriver does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "ERROR" debug does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for applicationPlans
    • -
    • "ERROR" namespace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for metrics
    • -
    • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "ERROR" ceIPSecDebug does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for metrics
    • -
    • "ERROR" ceIPSecIKEPort does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "ERROR" ceIPSecNATTPort does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for mappingRules
    • -
    • "ERROR" colorCodes does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for methods
    • -
    • "ERROR" globalCIDR does not have a spec descriptor
    • -
    • "ERROR" serviceCIDR does not have a spec descriptor
    • +
      +

      For 3scale-operator.v0.7.0:

      -

    • "ERROR" brokerK8sApiServer does not have a spec descriptor
    • +
    • "ERROR" apimanagerbackups.apps.3scale.net does not have a status descriptor
    • -
    • "ERROR" brokerK8sCA does not have a spec descriptor
    • +
    • "ERROR" apimanagerrestores.apps.3scale.net does not have a status descriptor
    • -
    • "ERROR" natEnabled does not have a spec descriptor
    • +
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
    • +
    • "ERROR" backends.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" ceIPSecPSK does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" clusterCIDR does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" clusterID does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • -
    • "ERROR" submariners.submariner.io does not have a status descriptor
    • +
    • "ERROR" products.capabilities.3scale.net does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for broker
    • +
    • "ERROR" backend does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for cableDriver
    • +
    • "ERROR" system does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for debug
    • +
    • "ERROR" zync does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for namespace
    • +
    • "ERROR" apicast does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
    • +
    • "ERROR" podDisruptionBudget does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ceIPSecDebug
    • +
    • "ERROR" highAvailability does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ceIPSecIKEPort
    • +
    • "ERROR" monitoring does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ceIPSecNATTPort
    • +
    • "ERROR" system does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for colorCodes
    • +
    • "ERROR" backupDestination does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for globalCIDR
    • +
    • "ERROR" restoreSource does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for serviceCIDR
    • +
    • "ERROR" email does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for brokerK8sApiServer
    • +
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for brokerK8sCA
    • +
    • "ERROR" organizationName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for natEnabled
    • +
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
    • +
    • "ERROR" systemMasterUrl does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ceIPSecPSK
    • +
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for clusterCIDR
    • +
    • "ERROR" username does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for clusterID
    • +
    • "ERROR" name does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled
    • +
    • "ERROR" privateBaseURL does not have a spec descriptor
    • +
    • "ERROR" systemName does not have a spec descriptor
    • +
    • "ERROR" name does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" name does not have a spec descriptor
    • +
    • "ERROR" deployment does not have a spec descriptor
    • -
      -

      For submariner.v0.9.0:

      +

    • "ERROR" name does not have a spec descriptor
    • +
    • "ERROR" deployment does not have a spec descriptor
    • -
    • "WARNING" (submariner.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" applicationPlans does not have a spec descriptor
    • +
    • "ERROR" metrics does not have a spec descriptor
    • -
      -

      For submariner.v0.8.1:

      +

    • "ERROR" name does not have a spec descriptor
    • +
    • "ERROR" applicationPlans does not have a spec descriptor
    • -
    • "WARNING" (submariner.v0.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" metrics does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["submariners.submariner.io"])
    • +
    • "ERROR" name does not have a spec descriptor
    • +
    • "ERROR" mappingRules does not have a spec descriptor
    • +
    • "ERROR" methods does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade B
    (600)
    apicast-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • threescale-2.8
    • - -
    • threescale-2.9
    • - -
    • threescale-2.10
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" metrics does not have a spec descriptor
    • - -
      -

      For apicast-operator.v0.2.4:

      +

    • "ERROR" name does not have a spec descriptor
    • -
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • -
    • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for backend
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for system
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for zync
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for apicast
    • +
    • "WARNING" Add a spec descriptor for podDisruptionBudget
    • -
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for highAvailability
    • -
    • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
    • +
    • "WARNING" Add a spec descriptor for monitoring
    • +
    • "WARNING" Add a spec descriptor for system
    • -
      -

      For apicast-operator.v0.3.1:

      +

    • "WARNING" Add a spec descriptor for backupDestination
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for restoreSource
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for email
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • -
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for organizationName
    • -
    • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • -
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • -
    • "ERROR" exposedHost does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for username
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for privateBaseURL
    • +
    • "WARNING" Add a spec descriptor for systemName
    • -
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for deployment
    • -
    • "WARNING" Add a spec descriptor for exposedHost
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • +
    • "WARNING" Add a spec descriptor for deployment
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for applicationPlans
    • +
    • "WARNING" Add a spec descriptor for metrics
    • -
      -

      For apicast-operator.v0.4.0:

      +

    • "WARNING" Add a spec descriptor for name
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for applicationPlans
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for metrics
    • -
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for mappingRules
    • -
    • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for methods
    • -
    • "ERROR" replicas does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for metrics
    • -
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for name
    • -
    • "ERROR" exposedHost does not have a spec descriptor
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • +
      +

      For 3scale-operator.v0.5.5:

      + +

    • "ERROR" apis.capabilities.3scale.net does not have a status descriptor
    • + +
    • "ERROR" bindings.capabilities.3scale.net does not have a status descriptor
    • + +
    • "ERROR" limits.capabilities.3scale.net does not have a status descriptor
    • + +
    • "ERROR" mappingrules.capabilities.3scale.net does not have a status descriptor
    • + +
    • "ERROR" metrics.capabilities.3scale.net does not have a status descriptor
    • + +
    • "ERROR" plans.capabilities.3scale.net does not have a status descriptor
    • + +
    • "ERROR" tenants.capabilities.3scale.net does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" highAvailability does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • +
    • "ERROR" system does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
    • +
    • "ERROR" description does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "ERROR" integrationMethod does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • +
    • "ERROR" APISelector does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for exposedHost
    • +
    • "ERROR" credentialsRef does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • +
    • "ERROR" period does not have a spec descriptor
    • +
    • "ERROR" description does not have a spec descriptor
    • +
    • "ERROR" maxValue does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" metricRef does not have a spec descriptor
    • + +
    • "ERROR" method does not have a spec descriptor
    • +
    • "ERROR" metricRef does not have a spec descriptor
    • -
      -

      For apicast-operator.v0.2.4:

      +

    • "ERROR" path does not have a spec descriptor
    • +
    • "ERROR" increment does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
    • +
    • "ERROR" description does not have a spec descriptor
    • +
    • "ERROR" incrementHits does not have a spec descriptor
    • -
      -

      For apicast-operator.v0.3.1:

      +

    • "ERROR" unit does not have a spec descriptor
    • +
    • "ERROR" costs does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
    • +
    • "ERROR" default does not have a spec descriptor
    • +
    • "ERROR" limitSelector does not have a spec descriptor
    • -
      -

      For apicast-operator.v0.4.0:

      +

    • "ERROR" trialPeriod does not have a spec descriptor
    • +
    • "ERROR" approvalRequired does not have a spec descriptor
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
    • +
    • "ERROR" email does not have a spec descriptor
    • +
    • "ERROR" masterCredentialsRef does not have a spec descriptor
    • +
    • "ERROR" organizationName does not have a spec descriptor
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    codeready-workspaces -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • latest
    • - -
    -
    - -
    -

    REQUIRED

    - - - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • crwoperator.v2.10.1
    • - -
    -
    - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" passwordCredentialsRef does not have a spec descriptor
    • - -
      -

      For crwoperator.v2.10.1:

      +

    • "ERROR" systemMasterUrl does not have a spec descriptor
    • + +
    • "ERROR" tenantSecretRef does not have a spec descriptor
    • + +
    • "ERROR" username does not have a spec descriptor
    • + + +
    • "WARNING" Add CRD validation for spec field `APISelector` in Binding/v1alpha1
    • + +
    • "WARNING" Add CRD validation for spec field `description` in Limit/v1alpha1
    • + +
    • "WARNING" Add a spec descriptor for highAvailability
    • + +
    • "WARNING" Add a spec descriptor for system
    • + +
    • "WARNING" Add a spec descriptor for description
    • + +
    • "WARNING" Add a spec descriptor for integrationMethod
    • + +
    • "WARNING" Add a spec descriptor for APISelector
    • + +
    • "WARNING" Add a spec descriptor for credentialsRef
    • + +
    • "WARNING" Add a spec descriptor for period
    • -
    • "ERROR" database does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for description
    • -
    • "ERROR" devWorkspace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for maxValue
    • -
    • "ERROR" metrics does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for metricRef
    • -
    • "ERROR" server does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for method
    • -
    • "ERROR" storage does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for metricRef
    • -
    • "ERROR" auth does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for path
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for increment
    • +
    • "WARNING" Add a spec descriptor for description
    • -
    • "WARNING" Add a spec descriptor for database
    • +
    • "WARNING" Add a spec descriptor for incrementHits
    • -
    • "WARNING" Add a spec descriptor for devWorkspace
    • +
    • "WARNING" Add a spec descriptor for unit
    • -
    • "WARNING" Add a spec descriptor for metrics
    • +
    • "WARNING" Add a spec descriptor for costs
    • -
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add a spec descriptor for default
    • -
    • "WARNING" Add a spec descriptor for storage
    • +
    • "WARNING" Add a spec descriptor for limitSelector
    • -
    • "WARNING" Add a spec descriptor for auth
    • +
    • "WARNING" Add a spec descriptor for trialPeriod
    • +
    • "WARNING" Add a spec descriptor for approvalRequired
    • +
    • "WARNING" Add a spec descriptor for email
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for masterCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for organizationName
    • -
      -

      For crwoperator.v2.10.1:

      +

    • "WARNING" Add a spec descriptor for passwordCredentialsRef
    • +
    • "WARNING" Add a spec descriptor for systemMasterUrl
    • -
    • "WARNING" (crwoperator.v2.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for tenantSecretRef
    • + +
    • "WARNING" Add a spec descriptor for username
    -

    NOT USED

    Grade C
    (500)
    kiali-ossm -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - -
    -

    USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    +

    ONLY WARNINGS

    - +Info -
    -
      - - -
      -

      For kiali-operator.v1.24.8:

      - -

    • "ERROR" kialis.kiali.io does not have a status descriptor
    • + +Info +
      +
        -
      • "ERROR" monitoringdashboards.monitoring.kiali.io does not have a status descriptor
      • -
      • "ERROR" istio_namespace does not have a spec descriptor
      • +
        +

        For 3scale-operator.v0.3.0:

        -

      • "ERROR" deployment does not have a spec descriptor
      • -
      • "ERROR" external_services does not have a spec descriptor
      • +
      • "WARNING" (3scale-operator.v0.3.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "ERROR" server does not have a spec descriptor
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apps.3scale.net" "apis.capabilities.3scale.net" "bindings.capabilities.3scale.net" "limits.capabilities.3scale.net" "mappingrules.capabilities.3scale.net" "metrics.capabilities.3scale.net" "plans.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
      • -
      • "ERROR" installation_tag does not have a spec descriptor
      • -
      • "ERROR" items does not have a spec descriptor
      • +
        +

        For 3scale-operator.v0.4.2:

        -

      • "ERROR" Owned CRDs do not have resources specified
      • +
      • "WARNING" (3scale-operator.v0.4.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for istio_namespace
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apps.3scale.net" "apis.capabilities.3scale.net" "bindings.capabilities.3scale.net" "limits.capabilities.3scale.net" "mappingrules.capabilities.3scale.net" "metrics.capabilities.3scale.net" "plans.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
      • -
      • "WARNING" Add a spec descriptor for deployment
      • -
      • "WARNING" Add a spec descriptor for external_services
      • +
        +

        For 3scale-operator.v0.6.1:

        -

      • "WARNING" Add a spec descriptor for server
      • -
      • "WARNING" Add a spec descriptor for installation_tag
      • +
      • "WARNING" (3scale-operator.v0.6.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      • "WARNING" Add a spec descriptor for items
      • +
      • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagerbackups.apps.3scale.net" "apimanagerrestores.apps.3scale.net" "apimanagers.apps.3scale.net" "backends.capabilities.3scale.net" "products.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
      • -
      • "WARNING" Add CRD validation for Kiali/v1alpha1
      • -
      • "WARNING" Add CRD validation for MonitoringDashboard/v1alpha1
      • +
        +

        For 3scale-operator.v0.7.0:

        +

      • "WARNING" (3scale-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
      • -
      -
      - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagerbackups.apps.3scale.net" "apimanagerrestores.apps.3scale.net" "apimanagers.apps.3scale.net" "backends.capabilities.3scale.net" "products.capabilities.3scale.net" "tenants.capabilities.3scale.net"])

    • -

      For kiali-operator.v1.24.8:

      +

      For 3scale-operator.v0.5.5:

      -

    • "WARNING" (kiali-operator.v1.24.8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (3scale-operator.v0.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kialis.kiali.io" "monitoringdashboards.monitoring.kiali.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apimanagers.apps.3scale.net" "apis.capabilities.3scale.net" "bindings.capabilities.3scale.net" "limits.capabilities.3scale.net" "mappingrules.capabilities.3scale.net" "metrics.capabilities.3scale.net" "plans.capabilities.3scale.net" "tenants.capabilities.3scale.net"])
    • @@ -7858,7 +7532,7 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (100)
    amq-streamsklusterlet-product

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • amq-streams-1.x
    • - -
    • amq-streams-1.8.x
    • +
    • release-2.3
    • -
    • amq-streams-1.7.x
    • +
    • release-2.2
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • amqstreams.v1.8.0
    • - -
    • amqstreams.v1.8.0
    • - -
    • amqstreams.v1.7.3
    • - -
    • amqstreams.v1.8.0
    • - -
    -
    -

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For amqstreams.v1.8.0:

      - -

    • "ERROR" kafka does not have a spec descriptor
    • - -
    • "ERROR" zookeeper does not have a spec descriptor
    • - -
    • "ERROR" entityOperator does not have a spec descriptor
    • - -
    • "ERROR" tls does not have a spec descriptor
    • - -
    • "ERROR" tls does not have a spec descriptor
    • - -
    • "ERROR" consumer does not have a spec descriptor
    • - -
    • "ERROR" producer does not have a spec descriptor
    • - -
    • "ERROR" http does not have a spec descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" authentication does not have a spec descriptor
    • - -
    • "ERROR" authorization does not have a spec descriptor
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" clusters does not have a spec descriptor
    • - -
    • "ERROR" mirrors does not have a spec descriptor
    • - -
    • "ERROR" goals does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for kafka
    • - -
    • "WARNING" Add a spec descriptor for zookeeper
    • +

      For klusterlet-product.v2.3.1:

      -

    • "WARNING" Add a spec descriptor for entityOperator
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for tls
    • +
    • "ERROR" clusterName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for tls
    • +
    • "ERROR" externalServerURLs does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for consumer
    • +
    • "ERROR" namespace does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for producer
    • +
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for http
    • +
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "ERROR" klusterlets.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for authentication
    • -
    • "WARNING" Add a spec descriptor for authorization
    • +
    • "WARNING" Add a spec descriptor for clusterName
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "WARNING" Add a spec descriptor for externalServerURLs
    • -
    • "WARNING" Add a spec descriptor for clusters
    • +
    • "WARNING" Add a spec descriptor for namespace
    • -
    • "WARNING" Add a spec descriptor for mirrors
    • +
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • -
    • "WARNING" Add a spec descriptor for goals
    • +
    • "WARNING" Add a spec descriptor for workImagePullSpec

    • -

      For amqstreams.v1.8.0:

      +

      For klusterlet-product.v2.2.7:

      -

    • "ERROR" kafka does not have a spec descriptor
    • +
    • "ERROR" klusterlets.operator.open-cluster-management.io does not have a status descriptor
    • -
    • "ERROR" zookeeper does not have a spec descriptor
    • +
    • "ERROR" clusterName does not have a spec descriptor
    • -
    • "ERROR" entityOperator does not have a spec descriptor
    • +
    • "ERROR" externalServerURLs does not have a spec descriptor
    • -
    • "ERROR" tls does not have a spec descriptor
    • +
    • "ERROR" namespace does not have a spec descriptor
    • -
    • "ERROR" tls does not have a spec descriptor
    • +
    • "ERROR" registrationImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" consumer does not have a spec descriptor
    • +
    • "ERROR" workImagePullSpec does not have a spec descriptor
    • -
    • "ERROR" producer does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" http does not have a spec descriptor
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for clusterName
    • -
    • "ERROR" authentication does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for externalServerURLs
    • -
    • "ERROR" authorization does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for namespace
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for registrationImagePullSpec
    • -
    • "ERROR" clusters does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for workImagePullSpec
    • -
    • "ERROR" mirrors does not have a spec descriptor
    • -
    • "ERROR" goals does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for kafka
    • +
      +

      For klusterlet-product.v2.3.1:

      -

    • "WARNING" Add a spec descriptor for zookeeper
    • -
    • "WARNING" Add a spec descriptor for entityOperator
    • +
    • "WARNING" (klusterlet-product.v2.3.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for tls
    • -
    • "WARNING" Add a spec descriptor for tls
    • +
      +

      For klusterlet-product.v2.2.7:

      -

    • "WARNING" Add a spec descriptor for consumer
    • -
    • "WARNING" Add a spec descriptor for producer
    • +
    • "WARNING" (klusterlet-product.v2.2.7) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for http
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["klusterlets.operator.open-cluster-management.io"])
    • -
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for authentication
    • -
    • "WARNING" Add a spec descriptor for authorization
    • +
    +
    + +

    NOT USED

    Grade B
    (600)
    cluster-kube-descheduler-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 4.8
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for config
    • + +
      +

      For clusterkubedescheduleroperator.4.8.0-202107291502:

      -

    • "WARNING" Add a spec descriptor for clusters
    • +
    • "ERROR" kubedeschedulers.operator.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for mirrors
    • +
    • "ERROR" profiles does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for goals
    • +
    • "ERROR" deschedulingIntervalSeconds does not have a spec descriptor
    • +
    • "ERROR" managementState does not have a spec descriptor
    • -
      -

      For amqstreams.v1.7.3:

      +

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" kafka does not have a spec descriptor
    • -
    • "ERROR" zookeeper does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for profiles
    • -
    • "ERROR" entityOperator does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for deschedulingIntervalSeconds
    • -
    • "ERROR" tls does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for managementState
    • -
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" consumer does not have a spec descriptor
    • -
    • "ERROR" producer does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" http does not have a spec descriptor
    • -
    • "ERROR" config does not have a spec descriptor
    • +
      +

      For clusterkubedescheduleroperator.4.8.0-202107291502:

      -

    • "ERROR" authentication does not have a spec descriptor
    • -
    • "ERROR" authorization does not have a spec descriptor
    • +
    • "WARNING" (clusterkubedescheduleroperator.4.8.0-202107291502) csv.metadata.Name clusterkubedescheduleroperator.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" clusters does not have a spec descriptor
    • -
    • "ERROR" mirrors does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade C
    (500)
    devworkspace-operator +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" goals does not have a spec descriptor
    • + +
      +

      For devworkspace-operator.v0.9.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for kafka
    • - -
    • "WARNING" Add a spec descriptor for zookeeper
    • - -
    • "WARNING" Add a spec descriptor for entityOperator
    • +
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha1, Kind=DevWorkspace: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for tls
    • +
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha2, Kind=DevWorkspace: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for tls
    • +
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha1, Kind=DevWorkspaceTemplate: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for consumer
    • +
    • "WARNING" Warning: Value workspace.devfile.io/v1alpha2, Kind=DevWorkspaceTemplate: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for producer
    • +
    • "WARNING" Warning: Value controller.devfile.io/v1alpha1, Kind=DevWorkspaceRouting: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for http
    • -
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for authentication
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for authorization
    • -
    • "WARNING" Add a spec descriptor for config
    • +
      +

      For devworkspace-operator.v0.9.0:

      -

    • "WARNING" Add a spec descriptor for clusters
    • -
    • "WARNING" Add a spec descriptor for mirrors
    • +
    • "WARNING" (devworkspace-operator.v0.9.0) csv.Spec.Icon not specified
    • -
    • "WARNING" Add a spec descriptor for goals
    • +
    • "WARNING" (devworkspace-operator.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" provided API should have an example annotation
    • -
      -

      For amqstreams.v1.8.0:

      +

    • "WARNING" provided API should have an example annotation
    • -
    • "ERROR" kafka does not have a spec descriptor
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "ERROR" zookeeper does not have a spec descriptor
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "ERROR" entityOperator does not have a spec descriptor
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" consumer does not have a spec descriptor
    • +
    +
    + +

    NOT USED

    Grade B
    (700)
    eap +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • alpha
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" producer does not have a spec descriptor
    • + +
      +

      For eap-operator.v2.1.4:

      -

    • "ERROR" http does not have a spec descriptor
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    • "WARNING" Warning: Value : (eap-operator.v2.1.4) example annotations not found
    • -
    • "ERROR" authentication does not have a spec descriptor
    • -
    • "ERROR" authorization does not have a spec descriptor
    • -
    • "ERROR" config does not have a spec descriptor
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "ERROR" clusters does not have a spec descriptor
    • -
    • "ERROR" mirrors does not have a spec descriptor
    • +
      +

      For eap-operator.v2.1.4:

      -

    • "ERROR" goals does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["wildflyservers.wildfly.org"])
    • +
    • "WARNING" (eap-operator.v2.1.4) example annotations not found
    • -
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" Add a spec descriptor for zookeeper
    • -
    • "WARNING" Add a spec descriptor for entityOperator
    • +
    +
    + +

    NOT USED

    Grade D
    (200)
    ptp-operator +

    COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 4.8
    • + +
    +
    + +
    +

    REQUIRED

    + + + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • ptp-operator.4.8.0-202108090903
    • + +
    +
    + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for tls
    • + +
      +

      For ptp-operator.4.8.0-202108090903:

      -

    • "WARNING" Add a spec descriptor for tls
    • +
    • "ERROR" ptpconfigs.ptp.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for consumer
    • +
    • "ERROR" nodeptpdevices.ptp.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for producer
    • +
    • "ERROR" ptpoperatorconfigs.ptp.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for http
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for config
    • +
    • "ERROR" profile does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for authentication
    • +
    • "ERROR" recommend does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for authorization
    • +
    • "ERROR" daemonNodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for clusters
    • +
    • "WARNING" Add a spec descriptor for profile
    • -
    • "WARNING" Add a spec descriptor for mirrors
    • +
    • "WARNING" Add a spec descriptor for recommend
    • -
    • "WARNING" Add a spec descriptor for goals
    • +
    • "WARNING" Add a spec descriptor for daemonNodeSelector
    • @@ -8521,40 +8452,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For amqstreams.v1.8.0:

      - - - -
      -

      For amqstreams.v1.8.0:

      - - - -
      -

      For amqstreams.v1.7.3:

      - - -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
    • - +

      For ptp-operator.4.8.0-202108090903:

      -
      -

      For amqstreams.v1.8.0:

      +

    • "WARNING" (ptp-operator.4.8.0-202108090903) csv.metadata.Name ptp-operator.4.8.0-202108090903 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • @@ -8568,34 +8484,32 @@
      Grade
    jaeger-productquay-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 1.20-stable
    • - -
    • 1.17-stable
    • +
    • quay-v3.4
    • -
    • tech-preview
    • +
    • quay-v3.5
    • -
    • 1.24-stable
    • +
    • quay-v3.3
    @@ -8604,29 +8518,21 @@
    Grade

    REQUIRED

    - +Info -
    + +Info +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
    • jaeger-operator.v1.20.4
    • - -
    • jaeger-operator.v1.17.10
    • - -
    • jaeger-operator.v2.0.0-tp.1
    • - -
    • jaeger-operator.v1.24.1
    • - -
    • jaeger-operator.v1.24.1
    • +
    • red-hat-quay.v3.3.4
    @@ -8636,79 +8542,89 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For jaeger-operator.v1.20.4:

      +

      For quay-operator.v3.4.6:

      -

    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" error spec does not exist
    • + +
    • "WARNING" Warning: Value redhatcop.redhat.io/v1alpha1, Kind=QuayEcosystem: provided API should have an example annotation
    • + + +
      +

      For quay-operator.v3.5.5:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add CRD validation for Jaeger/v1
    • +
    • "WARNING" Warning: Value redhatcop.redhat.io/v1alpha1, Kind=QuayEcosystem: provided API should have an example annotation

    • -

      For jaeger-operator.v1.17.10:

      - -

    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • +

      For red-hat-quay.v3.3.4:

      -

    • "ERROR" error spec does not exist
    • +
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • +
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • -
    • "WARNING" Add CRD validation for Jaeger/v1
    • +
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • +
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • -
      -

      For jaeger-operator.v2.0.0-tp.1:

      +

    • "ERROR" clair does not have a spec descriptor
    • -
    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • +
    • "ERROR" quay does not have a spec descriptor
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" clair does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" quay does not have a spec descriptor
    • +
    • "ERROR" redis does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for Jaeger/v1
    • +
    • "ERROR" quay does not have a spec descriptor
    • +
    • "ERROR" quay does not have a spec descriptor
    • -
      -

      For jaeger-operator.v1.24.1:

      +

    • "ERROR" clair does not have a spec descriptor
    • -
    • "ERROR" error spec does not exist
    • +
    • "ERROR" quay does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for clair
    • + +
    • "WARNING" Add a spec descriptor for quay
    • +
    • "WARNING" Add a spec descriptor for clair
    • -
      -

      For jaeger-operator.v1.24.1:

      +

    • "WARNING" Add a spec descriptor for quay
    • -
    • "ERROR" error spec does not exist
    • +
    • "WARNING" Add a spec descriptor for redis
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for quay
    • -
    • "ERROR" jaegers.jaegertracing.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for quay
    • + +
    • "WARNING" Add a spec descriptor for clair
    • +
    • "WARNING" Add a spec descriptor for quay
    • @@ -8719,59 +8635,128 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For jaeger-operator.v1.20.4:

      +

      For quay-operator.v3.4.6:

      -

    • "WARNING" (jaeger-operator.v1.20.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (quay-operator.v3.4.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jaegers.jaegertracing.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io" "quayregistries.quay.redhat.com"])
    • + +
    • "WARNING" provided API should have an example annotation

    • -

      For jaeger-operator.v1.17.10:

      +

      For quay-operator.v3.5.5:

      -

    • "WARNING" (jaeger-operator.v1.17.10) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (quay-operator.v3.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jaegers.jaegertracing.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io" "quayregistries.quay.redhat.com"])
    • +
    • "WARNING" provided API should have an example annotation
    • -
      -

      For jaeger-operator.v2.0.0-tp.1:

      +
      +

      For red-hat-quay.v3.3.4:

      -

    • "WARNING" (jaeger-operator.v2.0.0-tp.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["jaegers.jaegertracing.io"])
    • +
    • "WARNING" (red-hat-quay.v3.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io"])
    • -
      -

      For jaeger-operator.v1.24.1:

      -

    • "WARNING" (jaeger-operator.v1.24.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    +
    + +

    NOT USED

    Grade D
    (100)
    businessautomation-operator +

    COMPLY

    +
    +

    COMPLY

    + + +
    +

    USED

    + + +

    NOT USED

    +

    PASS

    + + +
    +

    ONLY WARNINGS

    + + + +Info +
    +

      -

      For jaeger-operator.v1.24.1:

      +

      For businessautomation-operator.7.11.1-1:

      -

    • "WARNING" (jaeger-operator.v1.24.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (businessautomation-operator.7.11.1-1) csv.metadata.Name businessautomation-operator.7.11.1-1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • @@ -8781,32 +8766,34 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade A
    (900)
    nfdcluster-logging

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.8
    • +
    • 4.6
    • + +
    • 5.0
    @@ -8815,67 +8802,180 @@
    Grade

    REQUIRED

    - +Info -
    + +Info +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
    • node-feature-discovery-operator.v4.8.0
    • +
    • cluster-logging.5.1.0-75
    • + +
    • cluster-logging.5.1.0-75
    • + +
    • clusterlogging.4.6.0-202103010126.p0
    • + +
    • cluster-logging.5.0.6-40

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For node-feature-discovery-operator.v4.8.0:

      +

      For cluster-logging.5.1.0-75:

      + +

    • "ERROR" logStore does not have a spec descriptor
    • + +
    • "ERROR" visualization does not have a spec descriptor
    • + +
    • "ERROR" collection does not have a spec descriptor
    • + +
    • "ERROR" managementState does not have a spec descriptor
    • + +
    • "ERROR" outputs does not have a spec descriptor
    • + +
    • "ERROR" pipelines does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" nodefeaturediscoveries.nfd.openshift.io does not have a status descriptor
    • -
    • "ERROR" customConfig does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for logStore
    • -
    • "ERROR" instance does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for visualization
    • -
    • "ERROR" operand does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for collection
    • -
    • "ERROR" workerConfig does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "WARNING" Add a spec descriptor for outputs
    • -
    • "WARNING" Add a spec descriptor for customConfig
    • +
    • "WARNING" Add a spec descriptor for pipelines
    • -
    • "WARNING" Add a spec descriptor for instance
    • -
    • "WARNING" Add a spec descriptor for operand
    • +
      +

      For cluster-logging.5.1.0-75:

      + +

    • "ERROR" logStore does not have a spec descriptor
    • + +
    • "ERROR" visualization does not have a spec descriptor
    • + +
    • "ERROR" collection does not have a spec descriptor
    • + +
    • "ERROR" managementState does not have a spec descriptor
    • + +
    • "ERROR" outputs does not have a spec descriptor
    • + +
    • "ERROR" pipelines does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for logStore
    • + +
    • "WARNING" Add a spec descriptor for visualization
    • + +
    • "WARNING" Add a spec descriptor for collection
    • + +
    • "WARNING" Add a spec descriptor for managementState
    • + +
    • "WARNING" Add a spec descriptor for outputs
    • + +
    • "WARNING" Add a spec descriptor for pipelines
    • + + +
      +

      For clusterlogging.4.6.0-202103010126.p0:

      + +

    • "ERROR" managementState does not have a spec descriptor
    • + +
    • "ERROR" logStore does not have a spec descriptor
    • + +
    • "ERROR" visualization does not have a spec descriptor
    • + +
    • "ERROR" curation does not have a spec descriptor
    • + +
    • "ERROR" collection does not have a spec descriptor
    • + +
    • "ERROR" outputs does not have a spec descriptor
    • + +
    • "ERROR" pipelines does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for workerConfig
    • + +
    • "WARNING" Add a spec descriptor for managementState
    • + +
    • "WARNING" Add a spec descriptor for logStore
    • + +
    • "WARNING" Add a spec descriptor for visualization
    • + +
    • "WARNING" Add a spec descriptor for curation
    • + +
    • "WARNING" Add a spec descriptor for collection
    • + +
    • "WARNING" Add a spec descriptor for outputs
    • + +
    • "WARNING" Add a spec descriptor for pipelines
    • + + +
      +

      For cluster-logging.5.0.6-40:

      + +

    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" logStore does not have a spec descriptor
    • + +
    • "ERROR" visualization does not have a spec descriptor
    • + +
    • "ERROR" curation does not have a spec descriptor
    • + +
    • "ERROR" collection does not have a spec descriptor
    • + +
    • "ERROR" managementState does not have a spec descriptor
    • + +
    • "ERROR" outputs does not have a spec descriptor
    • + +
    • "ERROR" pipelines does not have a spec descriptor
    • + + +
    • "WARNING" Add a spec descriptor for logStore
    • + +
    • "WARNING" Add a spec descriptor for visualization
    • + +
    • "WARNING" Add a spec descriptor for curation
    • + +
    • "WARNING" Add a spec descriptor for collection
    • + +
    • "WARNING" Add a spec descriptor for managementState
    • + +
    • "WARNING" Add a spec descriptor for outputs
    • + +
    • "WARNING" Add a spec descriptor for pipelines
    • @@ -8884,46 +8984,85 @@
      Grade
    -

    PASS

    +

    ONLY WARNINGS

    + +Info +
    +
      + + +
      +

      For cluster-logging.5.1.0-75:

      + + +

    • "WARNING" (cluster-logging.5.1.0-75) csv.metadata.Name cluster-logging.5.1.0-75 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + + +
      +

      For cluster-logging.5.1.0-75:

      + + +

    • "WARNING" (cluster-logging.5.1.0-75) csv.metadata.Name cluster-logging.5.1.0-75 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + + +
      +

      For clusterlogging.4.6.0-202103010126.p0:

      + + +

    • "WARNING" (clusterlogging.4.6.0-202103010126.p0) csv.metadata.Name clusterlogging.4.6.0-202103010126.p0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + + +
      +

      For cluster-logging.5.0.6-40:

      + + +

    • "WARNING" (cluster-logging.5.0.6-40) csv.metadata.Name cluster-logging.5.0.6-40 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + + + +
    +
    +

    NOT USED

    Grade B
    (700)
    Grade C
    (500)
    poison-pill-manageramq7-interconnect-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • alpha
    • +
    • 1.2.0
    • + +
    • 1.10.x
    @@ -8932,49 +9071,50 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For poison-pill.v0.1.2:

      +

      For amq7-interconnect-operator.v1.10.1:

      + +

    • "ERROR" deploymentPlan does not have a spec descriptor
    • -
    • "ERROR" poisonpillconfigs.poison-pill.medik8s.io does not have a status descriptor
    • -
    • "ERROR" poisonpillremediations.poison-pill.medik8s.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • -
    • "ERROR" poisonpillremediationtemplates.poison-pill.medik8s.io does not have a status descriptor
    • -
    • "ERROR" template does not have a spec descriptor
    • +
      +

      For amq7-interconnect-operator.v1.10.1:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" deploymentPlan does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for template
    • +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • @@ -8985,25 +9125,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For poison-pill.v0.1.2:

      +

      For amq7-interconnect-operator.v1.10.1:

      -

    • "WARNING" (poison-pill.v0.1.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (amq7-interconnect-operator.v1.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["interconnects.interconnectedcloud.github.io"])
    • + + +
      +

      For amq7-interconnect-operator.v1.10.1:

      + + +

    • "WARNING" (amq7-interconnect-operator.v1.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["interconnects.interconnectedcloud.github.io"])
    • @@ -9013,105 +9164,107 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    rhmtv-operatorcodeready-workspaces -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • release-v2.0.0-beta
    • +
    • latest
    -

    NOT USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • crwoperator.v2.10.1
    • + +
    +
    +

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For rhmtv-operator.2.0.0-beta.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" secret does not have a spec descriptor
    • - -
    • "ERROR" url does not have a spec descriptor
    • +

      For crwoperator.v2.10.1:

      -

    • "ERROR" plan does not have a spec descriptor
    • +
    • "ERROR" database does not have a spec descriptor
    • -
    • "ERROR" forkliftcontrollers.forklift.konveyor.io does not have a status descriptor
    • +
    • "ERROR" devWorkspace does not have a spec descriptor
    • -
    • "ERROR" providers.forklift.konveyor.io does not have a status descriptor
    • +
    • "ERROR" metrics does not have a spec descriptor
    • -
    • "ERROR" plans.forklift.konveyor.io does not have a status descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "ERROR" migrations.forklift.konveyor.io does not have a status descriptor
    • +
    • "ERROR" storage does not have a spec descriptor
    • +
    • "ERROR" auth does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for type
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for secret
    • -
    • "WARNING" Add a spec descriptor for url
    • +
    • "WARNING" Add a spec descriptor for database
    • -
    • "WARNING" Add a spec descriptor for plan
    • +
    • "WARNING" Add a spec descriptor for devWorkspace
    • -
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=Provisioner: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for metrics
    • -
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=Host: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for server
    • -
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=NetworkMap: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for storage
    • -
    • "WARNING" Warning: Value forklift.konveyor.io/v1alpha1, Kind=StorageMap: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for auth
    • @@ -9122,35 +9275,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For rhmtv-operator.2.0.0-beta.1:

      - - -

    • "WARNING" (rhmtv-operator.2.0.0-beta.1) csv.metadata.Name rhmtv-operator.2.0.0-beta.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["forkliftcontrollers.forklift.konveyor.io" "hosts.forklift.konveyor.io" "migrations.forklift.konveyor.io" "networkmaps.forklift.konveyor.io" "plans.forklift.konveyor.io" "providers.forklift.konveyor.io" "provisioners.forklift.konveyor.io" "storagemaps.forklift.konveyor.io"])
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • +

      For crwoperator.v2.10.1:

      -

    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" (crwoperator.v2.10.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -9160,216 +9303,106 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade C
    (500)
    cluster-loggingfile-integrity-operator

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.6
    • +
    • release-0.1
    • -
    • 5.0
    • +
    • 4.7
    -

    REQUIRED

    +

    USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • cluster-logging.5.1.0-75
    • - -
    • cluster-logging.5.1.0-75
    • - -
    • clusterlogging.4.6.0-202103010126.p0
    • - -
    • cluster-logging.5.0.6-40
    • - -
    -
    -

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For cluster-logging.5.1.0-75:

      - -

    • "ERROR" logStore does not have a spec descriptor
    • - -
    • "ERROR" visualization does not have a spec descriptor
    • - -
    • "ERROR" collection does not have a spec descriptor
    • - -
    • "ERROR" managementState does not have a spec descriptor
    • - -
    • "ERROR" outputs does not have a spec descriptor
    • - -
    • "ERROR" pipelines does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for logStore
    • - -
    • "WARNING" Add a spec descriptor for visualization
    • - -
    • "WARNING" Add a spec descriptor for collection
    • - -
    • "WARNING" Add a spec descriptor for managementState
    • - -
    • "WARNING" Add a spec descriptor for outputs
    • - -
    • "WARNING" Add a spec descriptor for pipelines
    • - - -
      -

      For cluster-logging.5.1.0-75:

      - -

    • "ERROR" logStore does not have a spec descriptor
    • - -
    • "ERROR" visualization does not have a spec descriptor
    • - -
    • "ERROR" collection does not have a spec descriptor
    • - -
    • "ERROR" managementState does not have a spec descriptor
    • - -
    • "ERROR" outputs does not have a spec descriptor
    • - -
    • "ERROR" pipelines does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for logStore
    • - -
    • "WARNING" Add a spec descriptor for visualization
    • - -
    • "WARNING" Add a spec descriptor for collection
    • - -
    • "WARNING" Add a spec descriptor for managementState
    • - -
    • "WARNING" Add a spec descriptor for outputs
    • - -
    • "WARNING" Add a spec descriptor for pipelines
    • - - -
      -

      For clusterlogging.4.6.0-202103010126.p0:

      - -

    • "ERROR" managementState does not have a spec descriptor
    • - -
    • "ERROR" logStore does not have a spec descriptor
    • - -
    • "ERROR" visualization does not have a spec descriptor
    • - -
    • "ERROR" curation does not have a spec descriptor
    • - -
    • "ERROR" collection does not have a spec descriptor
    • - -
    • "ERROR" outputs does not have a spec descriptor
    • - -
    • "ERROR" pipelines does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • +

      For file-integrity-operator.v0.1.16:

      +

    • "ERROR" fileintegrities.fileintegrity.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for logStore
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for visualization
    • +
    • "ERROR" debug does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for curation
    • -
    • "WARNING" Add a spec descriptor for collection
    • +
    • "WARNING" Warning: Value fileintegrity.openshift.io/v1alpha1, Kind=FileIntegrityNodeStatus: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for outputs
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for pipelines
    • +
    • "WARNING" Add a spec descriptor for debug

    • -

      For cluster-logging.5.0.6-40:

      +

      For file-integrity-operator.v0.1.13:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" logStore does not have a spec descriptor
    • - -
    • "ERROR" visualization does not have a spec descriptor
    • - -
    • "ERROR" curation does not have a spec descriptor
    • - -
    • "ERROR" collection does not have a spec descriptor
    • - -
    • "ERROR" managementState does not have a spec descriptor
    • - -
    • "ERROR" outputs does not have a spec descriptor
    • - -
    • "ERROR" pipelines does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for logStore
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for visualization
    • +
    • "ERROR" debug does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for curation
    • +
    • "ERROR" fileintegrities.fileintegrity.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for collection
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "WARNING" Warning: Value fileintegrity.openshift.io/v1alpha1, Kind=FileIntegrityNodeStatus: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for outputs
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for pipelines
    • +
    • "WARNING" Add a spec descriptor for debug
    • @@ -9380,46 +9413,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For cluster-logging.5.1.0-75:

      - - -

    • "WARNING" (cluster-logging.5.1.0-75) csv.metadata.Name cluster-logging.5.1.0-75 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - +

      For file-integrity-operator.v0.1.16:

      -
      -

      For cluster-logging.5.1.0-75:

      +

    • "WARNING" (file-integrity-operator.v0.1.16) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" (cluster-logging.5.1.0-75) csv.metadata.Name cluster-logging.5.1.0-75 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" provided API should have an example annotation

    • -

      For clusterlogging.4.6.0-202103010126.p0:

      - - -

    • "WARNING" (clusterlogging.4.6.0-202103010126.p0) csv.metadata.Name clusterlogging.4.6.0-202103010126.p0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - +

      For file-integrity-operator.v0.1.13:

      -
      -

      For cluster-logging.5.0.6-40:

      +

    • "WARNING" (file-integrity-operator.v0.1.13) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" (cluster-logging.5.0.6-40) csv.metadata.Name cluster-logging.5.0.6-40 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" provided API should have an example annotation
    • @@ -9429,181 +9452,180 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade B
    (600)
    metering-ocpgatekeeper-operator-product -

    COMPLY

    +

    NOT COMPLY

    -

    NOT COMPLY

    +

    COMPLY

    - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • 4.8
    • - -
    -
    -
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • metering-operator.4.8.0-202108061927
    • - -
    -
    -

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For metering-operator.4.8.0-202108061927:

      - -

    • "ERROR" meteringconfigs.metering.openshift.io does not have a status descriptor
    • - -
    • "ERROR" reports.metering.openshift.io does not have a status descriptor
    • - -
    • "ERROR" reportqueries.metering.openshift.io does not have a status descriptor
    • - -
    • "ERROR" reportdatasources.metering.openshift.io does not have a status descriptor
    • - -
    • "ERROR" storagelocations.metering.openshift.io does not have a status descriptor
    • - -
    • "ERROR" prestotables.metering.openshift.io does not have a status descriptor
    • - -
    • "ERROR" hivetables.metering.openshift.io does not have a status descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • - -
    • "ERROR" schedule does not have a spec descriptor
    • - -
    • "ERROR" columns does not have a spec descriptor
    • - -
    • "ERROR" inputs does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • - -
    • "ERROR" prometheusMetricsImporter does not have a spec descriptor
    • - -
    • "ERROR" hive does not have a spec descriptor
    • - -
    • "ERROR" schema does not have a spec descriptor
    • - -
    • "ERROR" tableName does not have a spec descriptor
    • - -
    • "ERROR" catalog does not have a spec descriptor
    • - -
    • "ERROR" columns does not have a spec descriptor
    • - -
    • "ERROR" createTableAs does not have a spec descriptor
    • - -
    • "ERROR" query does not have a spec descriptor
    • - -
    • "ERROR" columns does not have a spec descriptor
    • - -
    • "ERROR" databaseName does not have a spec descriptor
    • - -
    • "ERROR" external does not have a spec descriptor
    • +

      For gatekeeper-operator-product.v0.1.2-0.1627931308:

      -

    • "ERROR" fileFormat does not have a spec descriptor
    • +
    • "ERROR" webhook does not have a spec descriptor
    • -
    • "ERROR" location does not have a spec descriptor
    • +
    • "ERROR" audit does not have a spec descriptor
    • -
    • "ERROR" rowFormat does not have a spec descriptor
    • +
    • "ERROR" image does not have a spec descriptor
    • -
    • "ERROR" tableName does not have a spec descriptor
    • +
    • "ERROR" validatingWebhook does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" gatekeepers.operator.gatekeeper.sh does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for storage
    • - -
    • "WARNING" Add a spec descriptor for query
    • -
    • "WARNING" Add a spec descriptor for schedule
    • +
    • "WARNING" Add a spec descriptor for webhook
    • -
    • "WARNING" Add a spec descriptor for columns
    • +
    • "WARNING" Add a spec descriptor for audit
    • -
    • "WARNING" Add a spec descriptor for inputs
    • +
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" Add a spec descriptor for validatingWebhook
    • -
    • "WARNING" Add a spec descriptor for prometheusMetricsImporter
    • -
    • "WARNING" Add a spec descriptor for hive
    • -
    • "WARNING" Add a spec descriptor for schema
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for tableName
    • -
    • "WARNING" Add a spec descriptor for catalog
    • +
      +

      For gatekeeper-operator-product.v0.1.2-0.1627931308:

      -

    • "WARNING" Add a spec descriptor for columns
    • -
    • "WARNING" Add a spec descriptor for createTableAs
    • +
    • "WARNING" (gatekeeper-operator-product.v0.1.2-0.1627931308) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for query
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gatekeepers.operator.gatekeeper.sh"]),ClusterRole: (["gatekeeper-operator-metrics-reader"]),
    • -
    • "WARNING" Add a spec descriptor for columns
    • -
    • "WARNING" Add a spec descriptor for databaseName
    • -
    • "WARNING" Add a spec descriptor for external
    • +
    +
    + +

    NOT USED

    Grade D
    (300)
    smart-gateway-operator +

    NOT COMPLY

    +
    +

    COMPLY

    + + +
    +

    NOT USED

    + + +

    USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for fileFormat
    • + +
      +

      For smart-gateway-operator.v2.2.0:

      -

    • "WARNING" Add a spec descriptor for location
    • +
    • "ERROR" resetIndex does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for rowFormat
    • -
    • "WARNING" Add a spec descriptor for tableName
    • +
    • "WARNING" Add a spec descriptor for resetIndex
    • @@ -9614,25 +9636,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For metering-operator.4.8.0-202108061927:

      +

      For smart-gateway-operator.v2.2.0:

      -

    • "WARNING" (metering-operator.4.8.0-202108061927) csv.metadata.Name metering-operator.4.8.0-202108061927 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (smart-gateway-operator.v2.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["smartgateways.smartgateway.infra.watch"])
    • @@ -9642,81 +9666,153 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (300)
    gatekeeper-operator-productamq-broker -

    PARTIAL COMPLY

    +

    NOT COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • current
    • + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    • current-76
    • + +
    • alpha
    • + +
    +
    +

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For gatekeeper-operator-product.v0.1.2-0.1627931308:

      +

      For amq-broker-operator.v7.8.1-opr-3:

      -

    • "ERROR" webhook does not have a spec descriptor
    • +
    • "ERROR" deploymentPlan does not have a spec descriptor
    • -
    • "ERROR" audit does not have a spec descriptor
    • +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • -
    • "ERROR" image does not have a spec descriptor
    • +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • -
    • "ERROR" validatingWebhook does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • + + +
      +

      For amq-broker-operator.v0.13.0:

      + +

    • "ERROR" deploymentPlan does not have a spec descriptor
    • + +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" gatekeepers.operator.gatekeeper.sh does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • -
    • "WARNING" Add a spec descriptor for webhook
    • -
    • "WARNING" Add a spec descriptor for audit
    • +
      +

      For amq-broker-operator.v7.8.1-opr-3:

      -

    • "WARNING" Add a spec descriptor for image
    • +
    • "ERROR" deploymentPlan does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for validatingWebhook
    • +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • + + +
      +

      For amq-broker-operator.v7.8.1-opr-3:

      + +

    • "ERROR" deploymentPlan does not have a spec descriptor
    • + +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • + + +
      +

      For amq-broker-operator.v0.9.1:

      + +

    • "ERROR" activemqartemises.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • + +
    • "ERROR" deploymentPlan does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • + +
    • "WARNING" Add CRD validation for spec field `deploymentPlan` in ActiveMQArtemis/v2alpha1
    • @@ -9727,27 +9823,63 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For gatekeeper-operator-product.v0.1.2-0.1627931308:

      +

      For amq-broker-operator.v7.8.1-opr-3:

      -

    • "WARNING" (gatekeeper-operator-product.v0.1.2-0.1627931308) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (amq-broker-operator.v7.8.1-opr-3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • + + +
      +

      For amq-broker-operator.v0.13.0:

      + + +

    • "WARNING" (amq-broker-operator.v0.13.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • + + +
      +

      For amq-broker-operator.v7.8.1-opr-3:

      + + +

    • "WARNING" (amq-broker-operator.v7.8.1-opr-3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • + + +
      +

      For amq-broker-operator.v7.8.1-opr-3:

      + + +

    • "WARNING" (amq-broker-operator.v7.8.1-opr-3) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gatekeepers.operator.gatekeeper.sh"]),ClusterRole: (["gatekeeper-operator-metrics-reader"]),
    • + +
      +

      For amq-broker-operator.v0.9.1:

      + + +

    • "WARNING" (amq-broker-operator.v0.9.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • @@ -9757,32 +9889,36 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade D
    (100)
    kubevirt-hyperconvergedamq-streams

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 2.4
    • +
    • amq-streams-1.x
    • + +
    • amq-streams-1.8.x
    • + +
    • amq-streams-1.7.x
    @@ -9791,21 +9927,27 @@
    Grade

    REQUIRED

    - +Info -
    + +Info +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
    • kubevirt-hyperconverged-operator.v4.8.1
    • +
    • amqstreams.v1.7.3
    • + +
    • amqstreams.v1.8.0
    • + +
    • amqstreams.v1.8.0
    • + +
    • amqstreams.v1.8.0
    @@ -9815,382 +9957,286 @@
    Grade

    ERRORS AND WARNINGS

    - - +Info -
    + + +Info +

      -

      For kubevirt-hyperconverged-operator.v4.8.1:

      - -

    • "ERROR" hyperconvergeds.hco.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" kubevirts.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" ssps.ssp.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" cdis.cdi.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" nodemaintenances.nodemaintenance.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" hostpathprovisioners.hostpathprovisioner.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" vmimportconfigs.v2v.kubevirt.io does not have a status descriptor
    • - -
    • "ERROR" kubeMacPool does not have a spec descriptor
    • +

      For amqstreams.v1.7.3:

      -

    • "ERROR" linuxBridge does not have a spec descriptor
    • +
    • "ERROR" kafka does not have a spec descriptor
    • -
    • "ERROR" macvtap does not have a spec descriptor
    • +
    • "ERROR" zookeeper does not have a spec descriptor
    • -
    • "ERROR" multus does not have a spec descriptor
    • +
    • "ERROR" entityOperator does not have a spec descriptor
    • -
    • "ERROR" nmstate does not have a spec descriptor
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" ovs does not have a spec descriptor
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" consumer does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" producer does not have a spec descriptor
    • -
    • "ERROR" commonTemplates does not have a spec descriptor
    • +
    • "ERROR" http does not have a spec descriptor
    • -
    • "ERROR" templateValidator does not have a spec descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" authentication does not have a spec descriptor
    • -
    • "ERROR" nodeName does not have a spec descriptor
    • +
    • "ERROR" authorization does not have a spec descriptor
    • -
    • "ERROR" reason does not have a spec descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" clusters does not have a spec descriptor
    • -
    • "ERROR" pathConfig does not have a spec descriptor
    • +
    • "ERROR" mirrors does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" goals does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=OVirtProvider: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=V2VVmware: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for zookeeper
    • -
    • "WARNING" Add a spec descriptor for kubeMacPool
    • +
    • "WARNING" Add a spec descriptor for entityOperator
    • -
    • "WARNING" Add a spec descriptor for linuxBridge
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "WARNING" Add a spec descriptor for macvtap
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "WARNING" Add a spec descriptor for multus
    • +
    • "WARNING" Add a spec descriptor for consumer
    • -
    • "WARNING" Add a spec descriptor for nmstate
    • +
    • "WARNING" Add a spec descriptor for producer
    • -
    • "WARNING" Add a spec descriptor for ovs
    • +
    • "WARNING" Add a spec descriptor for http
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for authentication
    • -
    • "WARNING" Add a spec descriptor for commonTemplates
    • +
    • "WARNING" Add a spec descriptor for authorization
    • -
    • "WARNING" Add a spec descriptor for templateValidator
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for clusters
    • -
    • "WARNING" Add a spec descriptor for nodeName
    • +
    • "WARNING" Add a spec descriptor for mirrors
    • -
    • "WARNING" Add a spec descriptor for reason
    • +
    • "WARNING" Add a spec descriptor for goals
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • -
    • "WARNING" Add a spec descriptor for pathConfig
    • +
      +

      For amqstreams.v1.8.0:

      -

    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "ERROR" kafka does not have a spec descriptor
    • +
    • "ERROR" zookeeper does not have a spec descriptor
    • -
      -

      For kubevirt-hyperconverged-operator.v2.4.5:

      +

    • "ERROR" entityOperator does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" hyperconvergeds.hco.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "ERROR" networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" consumer does not have a spec descriptor
    • -
    • "ERROR" kubevirts.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" producer does not have a spec descriptor
    • -
    • "ERROR" kubevirtcommontemplatesbundles.ssp.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" http does not have a spec descriptor
    • -
    • "ERROR" kubevirtmetricsaggregations.ssp.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" kubevirtnodelabellerbundles.ssp.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" authentication does not have a spec descriptor
    • -
    • "ERROR" kubevirttemplatevalidators.ssp.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" authorization does not have a spec descriptor
    • -
    • "ERROR" cdis.cdi.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "ERROR" nodemaintenances.nodemaintenance.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" clusters does not have a spec descriptor
    • -
    • "ERROR" hostpathprovisioners.hostpathprovisioner.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" mirrors does not have a spec descriptor
    • -
    • "ERROR" vmimportconfigs.v2v.kubevirt.io does not have a status descriptor
    • +
    • "ERROR" goals does not have a spec descriptor
    • -
    • "ERROR" BareMetalPlatform does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ovs does not have a spec descriptor
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "ERROR" kubeMacPool does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for zookeeper
    • -
    • "ERROR" linuxBridge does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for entityOperator
    • -
    • "ERROR" macvtap does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "ERROR" multus does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "ERROR" nmstate does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for consumer
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for producer
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for http
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for authentication
    • -
    • "ERROR" templateValidatorReplicas does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for authorization
    • -
    • "ERROR" version does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for clusters
    • -
    • "ERROR" nodeName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for mirrors
    • -
    • "ERROR" reason does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for goals
    • -
    • "ERROR" imagePullPolicy does not have a spec descriptor
    • -
    • "ERROR" pathConfig does not have a spec descriptor
    • +
      +

      For amqstreams.v1.8.0:

      -

    • "ERROR" imagePullPolicy does not have a spec descriptor
    • +
    • "ERROR" kafka does not have a spec descriptor
    • +
    • "ERROR" zookeeper does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `BareMetalPlatform` in HyperConverged/v1alpha1
    • +
    • "ERROR" entityOperator does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `ovs` in NetworkAddonsConfig/v1alpha1
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `imagePullPolicy` in NetworkAddonsConfig/v1alpha1
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `kubeMacPool` in NetworkAddonsConfig/v1alpha1
    • +
    • "ERROR" consumer does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `linuxBridge` in NetworkAddonsConfig/v1alpha1
    • +
    • "ERROR" producer does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `macvtap` in NetworkAddonsConfig/v1alpha1
    • +
    • "ERROR" http does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `multus` in NetworkAddonsConfig/v1alpha1
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for spec field `nmstate` in NetworkAddonsConfig/v1alpha1
    • +
    • "ERROR" authentication does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for KubeVirt/v1alpha3
    • +
    • "ERROR" authorization does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for KubevirtCommonTemplatesBundle/v1
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for KubevirtMetricsAggregation/v1
    • +
    • "ERROR" clusters does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for KubevirtNodeLabellerBundle/v1
    • +
    • "ERROR" mirrors does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for KubevirtTemplateValidator/v1
    • +
    • "ERROR" goals does not have a spec descriptor
    • -
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=V2VVmware: provided API should have an example annotation
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value v2v.kubevirt.io/v1alpha1, Kind=OVirtProvider: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for BareMetalPlatform
    • +
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" Add a spec descriptor for ovs
    • +
    • "WARNING" Add a spec descriptor for zookeeper
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for entityOperator
    • -
    • "WARNING" Add a spec descriptor for kubeMacPool
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "WARNING" Add a spec descriptor for linuxBridge
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    • "WARNING" Add a spec descriptor for macvtap
    • +
    • "WARNING" Add a spec descriptor for consumer
    • -
    • "WARNING" Add a spec descriptor for multus
    • +
    • "WARNING" Add a spec descriptor for producer
    • -
    • "WARNING" Add a spec descriptor for nmstate
    • +
    • "WARNING" Add a spec descriptor for http
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for authentication
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for authorization
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for templateValidatorReplicas
    • +
    • "WARNING" Add a spec descriptor for clusters
    • -
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for mirrors
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "WARNING" Add a spec descriptor for goals
    • -
    • "WARNING" Add a spec descriptor for nodeName
    • -
    • "WARNING" Add a spec descriptor for reason
    • +
      +

      For amqstreams.v1.8.0:

      -

    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "ERROR" kafka does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for pathConfig
    • +
    • "ERROR" zookeeper does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • +
    • "ERROR" entityOperator does not have a spec descriptor
    • +
    • "ERROR" tls does not have a spec descriptor
    • +
    • "ERROR" tls does not have a spec descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "ERROR" consumer does not have a spec descriptor
    • +
    • "ERROR" producer does not have a spec descriptor
    • -
      -

      For kubevirt-hyperconverged-operator.v4.8.1:

      +

    • "ERROR" http does not have a spec descriptor
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" (kubevirt-hyperconverged-operator.v4.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "ERROR" authentication does not have a spec descriptor
    • + +
    • "ERROR" authorization does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" config does not have a spec descriptor
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "ERROR" clusters does not have a spec descriptor
    • +
    • "ERROR" mirrors does not have a spec descriptor
    • -
      -

      For kubevirt-hyperconverged-operator.v2.4.5:

      +

    • "ERROR" goals does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" (kubevirt-hyperconverged-operator.v2.4.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["networkaddonsconfigs.networkaddonsoperator.network.kubevirt.io" "hostpathprovisioners.hostpathprovisioner.kubevirt.io" "hyperconvergeds.hco.kubevirt.io" "v2vvmwares.v2v.kubevirt.io" "ovirtproviders.v2v.kubevirt.io" "kubevirtcommontemplatesbundles.ssp.kubevirt.io" "kubevirtmetricsaggregations.ssp.kubevirt.io" "kubevirtnodelabellerbundles.ssp.kubevirt.io" "kubevirttemplatevalidators.ssp.kubevirt.io" "nodemaintenances.nodemaintenance.kubevirt.io" "cdis.cdi.kubevirt.io" "kubevirts.kubevirt.io" "vmimportconfigs.v2v.kubevirt.io"])
    • +
    • "WARNING" Add a spec descriptor for kafka
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for zookeeper
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for entityOperator
    • +
    • "WARNING" Add a spec descriptor for tls
    • +
    • "WARNING" Add a spec descriptor for tls
    • -
    -
    - -

    NOT USED

    Grade C
    (500)
    openshift-jenkins-operator -

    PARTIAL COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for consumer
    • - -
      -

      For jenkins-operator.0.7.1:

      +

    • "WARNING" Add a spec descriptor for producer
    • -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • +
    • "WARNING" Add a spec descriptor for http
    • -
    • "ERROR" error getting custom resources
    • +
    • "WARNING" Add a spec descriptor for config
    • -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • +
    • "WARNING" Add a spec descriptor for authentication
    • -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • +
    • "WARNING" Add a spec descriptor for authorization
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for config
    • +
    • "WARNING" Add a spec descriptor for clusters
    • -
    • "WARNING" Warning: Value jenkins.io/v1alpha2, Kind=JenkinsImage: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for mirrors
    • -
    • "WARNING" Warning: Value jenkins.io/v1alpha2, Kind=Restore: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for goals
    • @@ -10201,31 +10247,40 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For jenkins-operator.0.7.1:

      +

      For amqstreams.v1.7.3:

      -

    • "WARNING" (jenkins-operator.0.7.1) csv.metadata.Name jenkins-operator.0.7.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kafkabridges.kafka.strimzi.io" "kafkaconnectors.kafka.strimzi.io" "kafkaconnects.kafka.strimzi.io" "kafkaconnects2is.kafka.strimzi.io" "kafkamirrormaker2s.kafka.strimzi.io" "kafkamirrormakers.kafka.strimzi.io" "kafkarebalances.kafka.strimzi.io" "kafkas.kafka.strimzi.io" "kafkatopics.kafka.strimzi.io" "kafkausers.kafka.strimzi.io"])
    • -
    • "WARNING" this bundle is using APIs which were deprecated 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.jenkins.io" "backupconfigs.jenkins.io" "jenkins.jenkins.io" "jenkinsimages.jenkins.io" "restores.jenkins.io"])
    • -
    • "WARNING" provided API should have an example annotation
    • +
      +

      For amqstreams.v1.8.0:

      + + + +
      +

      For amqstreams.v1.8.0:

      + + + +
      +

      For amqstreams.v1.8.0:

      -

    • "WARNING" provided API should have an example annotation
    • @@ -10235,240 +10290,187 @@
      Grade

    NOT USED

    Grade D
    (300)
    Grade C
    (500)
    ptp-operatorcontainer-security-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.8
    • +
    • quay-v3.3
    • + +
    • quay-v3.4
    • + +
    • quay-v3.5
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • ptp-operator.4.8.0-202108090903
    • - -
    -
    -

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For ptp-operator.4.8.0-202108090903:

      - -

    • "ERROR" ptpconfigs.ptp.openshift.io does not have a status descriptor
    • - -
    • "ERROR" nodeptpdevices.ptp.openshift.io does not have a status descriptor
    • - -
    • "ERROR" ptpoperatorconfigs.ptp.openshift.io does not have a status descriptor
    • +

      For container-security-operator.v3.3.4:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" profile does not have a spec descriptor
    • -
    • "ERROR" recommend does not have a spec descriptor
    • +
    • "WARNING" Warning: Value : (container-security-operator.v3.3.4) example annotations not found
    • -
    • "ERROR" daemonNodeSelector does not have a spec descriptor
    • +
      +

      For container-security-operator.v3.4.6:

      -

    • "WARNING" Add a spec descriptor for profile
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for recommend
    • +
    • "ERROR" error spec does not exist
    • -
    • "WARNING" Add a spec descriptor for daemonNodeSelector
    • +
    • "ERROR" imagemanifestvulns.secscan.quay.redhat.com does not have a status descriptor
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
      +

      For container-security-operator.v3.5.5:

      +

    • "ERROR" error spec does not exist
    • -
      -

      For ptp-operator.4.8.0-202108090903:

      +

    • "ERROR" imagemanifestvulns.secscan.quay.redhat.com does not have a status descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" (ptp-operator.4.8.0-202108090903) csv.metadata.Name ptp-operator.4.8.0-202108090903 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    -
    - -

    NOT USED

    Grade C
    (500)
    windows-machine-config-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • preview
    • - -
    +
    -

    NOT USED

    - - -

    USED

    -

    PASS

    +

    ONLY WARNINGS

    -
    -

    PASS

    - + +Info +
    +
      + + +
      +

      For container-security-operator.v3.3.4:

      + + +

    • "WARNING" (container-security-operator.v3.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
    • + +
    • "WARNING" (container-security-operator.v3.3.4) example annotations not found
    • + + +
      +

      For container-security-operator.v3.4.6:

      + + +

    • "WARNING" (container-security-operator.v3.4.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
    • + + +
      +

      For container-security-operator.v3.5.5:

      + + +

    • "WARNING" (container-security-operator.v3.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
    • + + + +
    +

    NOT USED

    Grade A
    (900)
    Grade D
    (100)
    elasticsearch-operatorsriov-network-operator

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 5.0
    • - -
    • 4.6
    • +
    • 4.8
    @@ -10477,160 +10479,143 @@
    Grade

    REQUIRED

    - +Info -
    + +Info +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
    • elasticsearch-operator.5.0.6-40
    • - -
    • elasticsearch-operator.4.6.0-202103010126.p0
    • - -
    • elasticsearch-operator.5.1.0-96
    • - -
    • elasticsearch-operator.5.1.0-96
    • +
    • sriov-network-operator.4.8.0-202108051934

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For elasticsearch-operator.5.0.6-40:

      - -

    • "ERROR" nodes does not have a spec descriptor
    • - -
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • - -
    • "ERROR" indexManagement does not have a spec descriptor
    • - -
    • "ERROR" managementState does not have a spec descriptor
    • - -
    • "ERROR" nodeSpec does not have a spec descriptor
    • - -
    • "ERROR" managementState does not have a spec descriptor
    • - +

      For sriov-network-operator.4.8.0-202108051934:

      -

    • "WARNING" Add a spec descriptor for nodes
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • +
    • "ERROR" sriovoperatorconfigs.sriovnetwork.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for indexManagement
    • +
    • "ERROR" sriovnetworknodepolicies.sriovnetwork.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "ERROR" sriovnetworks.sriovnetwork.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSpec
    • +
    • "ERROR" sriovibnetworks.sriovnetwork.openshift.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "ERROR" sriovnetworknodestates.sriovnetwork.openshift.io does not have a status descriptor
    • +
    • "ERROR" enableInjector does not have a spec descriptor
    • -
      -

      For elasticsearch-operator.4.6.0-202103010126.p0:

      +

    • "ERROR" enableOperatorWebhook does not have a spec descriptor
    • -
    • "ERROR" managementState does not have a spec descriptor
    • +
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "ERROR" nodeSpec does not have a spec descriptor
    • +
    • "ERROR" priority does not have a spec descriptor
    • -
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • +
    • "ERROR" mtu does not have a spec descriptor
    • -
    • "ERROR" nodes does not have a spec descriptor
    • +
    • "ERROR" numVfs does not have a spec descriptor
    • -
    • "ERROR" managementState does not have a spec descriptor
    • +
    • "ERROR" nicSelector does not have a spec descriptor
    • +
    • "ERROR" deviceType does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "ERROR" resourceName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSpec
    • +
    • "ERROR" nodeSelector does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • +
    • "ERROR" trust does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for nodes
    • +
    • "ERROR" resourceName does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "ERROR" networkNamespace does not have a spec descriptor
    • +
    • "ERROR" ipam does not have a spec descriptor
    • -
      -

      For elasticsearch-operator.5.1.0-96:

      +

    • "ERROR" vlan does not have a spec descriptor
    • -
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • +
    • "ERROR" spoofChk does not have a spec descriptor
    • -
    • "ERROR" indexManagement does not have a spec descriptor
    • +
    • "ERROR" linkState does not have a spec descriptor
    • -
    • "ERROR" managementState does not have a spec descriptor
    • +
    • "ERROR" resourceName does not have a spec descriptor
    • -
    • "ERROR" nodeSpec does not have a spec descriptor
    • +
    • "ERROR" networkNamespace does not have a spec descriptor
    • -
    • "ERROR" nodes does not have a spec descriptor
    • +
    • "ERROR" ipam does not have a spec descriptor
    • -
    • "ERROR" managementState does not have a spec descriptor
    • +
    • "ERROR" interfaces does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • +
    • "WARNING" Add a spec descriptor for enableInjector
    • -
    • "WARNING" Add a spec descriptor for indexManagement
    • +
    • "WARNING" Add a spec descriptor for enableOperatorWebhook
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "WARNING" Add a spec descriptor for logLevel
    • -
    • "WARNING" Add a spec descriptor for nodeSpec
    • +
    • "WARNING" Add a spec descriptor for priority
    • -
    • "WARNING" Add a spec descriptor for nodes
    • +
    • "WARNING" Add a spec descriptor for mtu
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "WARNING" Add a spec descriptor for numVfs
    • +
    • "WARNING" Add a spec descriptor for nicSelector
    • -
      -

      For elasticsearch-operator.5.1.0-96:

      +

    • "WARNING" Add a spec descriptor for deviceType
    • -
    • "ERROR" redundancyPolicy does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for resourceName
    • -
    • "ERROR" indexManagement does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for nodeSelector
    • -
    • "ERROR" managementState does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for trust
    • -
    • "ERROR" nodeSpec does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for resourceName
    • -
    • "ERROR" nodes does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for networkNamespace
    • -
    • "ERROR" managementState does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ipam
    • +
    • "WARNING" Add a spec descriptor for vlan
    • -
    • "WARNING" Add a spec descriptor for redundancyPolicy
    • +
    • "WARNING" Add a spec descriptor for spoofChk
    • -
    • "WARNING" Add a spec descriptor for indexManagement
    • +
    • "WARNING" Add a spec descriptor for linkState
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "WARNING" Add a spec descriptor for resourceName
    • -
    • "WARNING" Add a spec descriptor for nodeSpec
    • +
    • "WARNING" Add a spec descriptor for networkNamespace
    • -
    • "WARNING" Add a spec descriptor for nodes
    • +
    • "WARNING" Add a spec descriptor for ipam
    • -
    • "WARNING" Add a spec descriptor for managementState
    • +
    • "WARNING" Add a spec descriptor for interfaces
    • @@ -10641,50 +10626,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For elasticsearch-operator.5.0.6-40:

      - - -

    • "WARNING" (elasticsearch-operator.5.0.6-40) csv.metadata.Name elasticsearch-operator.5.0.6-40 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - - -
      -

      For elasticsearch-operator.4.6.0-202103010126.p0:

      - - -

    • "WARNING" (elasticsearch-operator.4.6.0-202103010126.p0) csv.metadata.Name elasticsearch-operator.4.6.0-202103010126.p0 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - - -
      -

      For elasticsearch-operator.5.1.0-96:

      - - -

    • "WARNING" (elasticsearch-operator.5.1.0-96) csv.metadata.Name elasticsearch-operator.5.1.0-96 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • - -
    • "WARNING" this bundle is using APIs which were 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: (["metrics-reader"])
    • - - -
      -

      For elasticsearch-operator.5.1.0-96:

      - +

      For sriov-network-operator.4.8.0-202108051934:

      -

    • "WARNING" (elasticsearch-operator.5.1.0-96) csv.metadata.Name elasticsearch-operator.5.1.0-96 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were 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: (["metrics-reader"])
    • +
    • "WARNING" (sriov-network-operator.4.8.0-202108051934) csv.metadata.Name sriov-network-operator.4.8.0-202108051934 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • @@ -10694,36 +10654,34 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade C
    (500)
    fuse-consolesubmariner

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • fuse-console-7.8.x
    • - -
    • 7.9.x
    • +
    • alpha-0.9
    • -
    • fuse-console-7.7.x
    • +
    • alpha
    @@ -10732,216 +10690,224 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For fuse-console.v7.8.2:

      +

      For submariner.v0.9.0:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" brokers.submariner.io does not have a status descriptor
    • -
    • "ERROR" hawtios.hawt.io does not have a status descriptor
    • +
    • "ERROR" submariners.submariner.io does not have a status descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" components does not have a spec descriptor
    • -
    • "ERROR" type does not have a spec descriptor
    • +
    • "ERROR" defaultGlobalnetClusterSize does not have a spec descriptor
    • +
    • "ERROR" globalnetEnabled does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for type
    • +
    • "ERROR" ceIPSecIKEPort does not have a spec descriptor
    • +
    • "ERROR" debug does not have a spec descriptor
    • -
      -

      For fuse-console.v7.9.0:

      +

    • "ERROR" natEnabled does not have a spec descriptor
    • -
    • "ERROR" hawtios.hawt.io does not have a status descriptor
    • +
    • "ERROR" broker does not have a spec descriptor
    • -
    • "ERROR" resources does not have a spec descriptor
    • +
    • "ERROR" brokerK8sApiServer does not have a spec descriptor
    • -
    • "ERROR" type does not have a spec descriptor
    • +
    • "ERROR" brokerK8sCA does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
    • +
    • "ERROR" ceIPSecNATTPort does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resources
    • +
    • "ERROR" namespace does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for type
    • +
    • "ERROR" globalCIDR does not have a spec descriptor
    • +
    • "ERROR" repository does not have a spec descriptor
    • -
      -

      For fuse-console.v7.7.1:

      +

    • "ERROR" serviceCIDR does not have a spec descriptor
    • + +
    • "ERROR" cableDriver does not have a spec descriptor
    • + +
    • "ERROR" ceIPSecPSK does not have a spec descriptor
    • + +
    • "ERROR" connectionHealthCheck does not have a spec descriptor
    • + +
    • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
    • + +
    • "ERROR" version does not have a spec descriptor
    • + +
    • "ERROR" ceIPSecDebug does not have a spec descriptor
    • + +
    • "ERROR" clusterCIDR does not have a spec descriptor
    • + +
    • "ERROR" clusterID does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" hawtios.hawt.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for components
    • -
    • "WARNING" Add CRD validation for Hawtio/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for defaultGlobalnetClusterSize
    • +
    • "WARNING" Add a spec descriptor for globalnetEnabled
    • +
    • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
    • -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" Add a spec descriptor for ceIPSecIKEPort
    • + +
    • "WARNING" Add a spec descriptor for debug
    • +
    • "WARNING" Add a spec descriptor for natEnabled
    • -
      -

      For fuse-console.v7.8.2:

      +

    • "WARNING" Add a spec descriptor for broker
    • +
    • "WARNING" Add a spec descriptor for brokerK8sApiServer
    • -
    • "WARNING" (fuse-console.v7.8.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for brokerK8sCA
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hawtios.hawt.io"])
    • +
    • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
    • +
    • "WARNING" Add a spec descriptor for ceIPSecNATTPort
    • -
      -

      For fuse-console.v7.9.0:

      +

    • "WARNING" Add a spec descriptor for namespace
    • +
    • "WARNING" Add a spec descriptor for globalCIDR
    • -
    • "WARNING" (fuse-console.v7.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for repository
    • +
    • "WARNING" Add a spec descriptor for serviceCIDR
    • -
      -

      For fuse-console.v7.7.1:

      +

    • "WARNING" Add a spec descriptor for cableDriver
    • +
    • "WARNING" Add a spec descriptor for ceIPSecPSK
    • -
    • "WARNING" (fuse-console.v7.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" Add a spec descriptor for connectionHealthCheck
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["hawtios.hawt.io"])
    • +
    • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled
    • +
    • "WARNING" Add a spec descriptor for version
    • +
    • "WARNING" Add a spec descriptor for ceIPSecDebug
    • + +
    • "WARNING" Add a spec descriptor for clusterCIDR
    • + +
    • "WARNING" Add a spec descriptor for clusterID
    • -
    -
    - -

    NOT USED

    Grade C
    (500)
    service-telemetry-operator -

    PARTIAL COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      -
      -

      For service-telemetry-operator.v1.2.0:

      +

      For submariner.v0.8.1:

      -

    • "ERROR" graphingEnabled does not have a spec descriptor
    • +
    • "ERROR" broker does not have a spec descriptor
    • -
    • "ERROR" metricsEnabled does not have a spec descriptor
    • +
    • "ERROR" cableDriver does not have a spec descriptor
    • + +
    • "ERROR" debug does not have a spec descriptor
    • + +
    • "ERROR" namespace does not have a spec descriptor
    • + +
    • "ERROR" brokerK8sRemoteNamespace does not have a spec descriptor
    • + +
    • "ERROR" ceIPSecDebug does not have a spec descriptor
    • + +
    • "ERROR" ceIPSecIKEPort does not have a spec descriptor
    • + +
    • "ERROR" ceIPSecNATTPort does not have a spec descriptor
    • + +
    • "ERROR" colorCodes does not have a spec descriptor
    • + +
    • "ERROR" globalCIDR does not have a spec descriptor
    • + +
    • "ERROR" serviceCIDR does not have a spec descriptor
    • + +
    • "ERROR" brokerK8sApiServer does not have a spec descriptor
    • + +
    • "ERROR" brokerK8sCA does not have a spec descriptor
    • + +
    • "ERROR" natEnabled does not have a spec descriptor
    • + +
    • "ERROR" brokerK8sApiServerToken does not have a spec descriptor
    • + +
    • "ERROR" ceIPSecPSK does not have a spec descriptor
    • + +
    • "ERROR" clusterCIDR does not have a spec descriptor
    • + +
    • "ERROR" clusterID does not have a spec descriptor
    • + +
    • "ERROR" serviceDiscoveryEnabled does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + +
    • "ERROR" submariners.submariner.io does not have a status descriptor
    • + + +
    • "WARNING" Add a spec descriptor for broker
    • + +
    • "WARNING" Add a spec descriptor for cableDriver
    • + +
    • "WARNING" Add a spec descriptor for debug
    • + +
    • "WARNING" Add a spec descriptor for namespace
    • + +
    • "WARNING" Add a spec descriptor for brokerK8sRemoteNamespace
    • + +
    • "WARNING" Add a spec descriptor for ceIPSecDebug
    • -
    • "ERROR" eventsEnabled does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for ceIPSecIKEPort
    • +
    • "WARNING" Add a spec descriptor for ceIPSecNATTPort
    • -
    • "WARNING" Add a spec descriptor for graphingEnabled
    • +
    • "WARNING" Add a spec descriptor for colorCodes
    • -
    • "WARNING" Add a spec descriptor for metricsEnabled
    • +
    • "WARNING" Add a spec descriptor for globalCIDR
    • -
    • "WARNING" Add a spec descriptor for eventsEnabled
    • +
    • "WARNING" Add a spec descriptor for serviceCIDR
    • -
    • "WARNING" Add CRD validation for spec field `metricsEnabled` in ServiceTelemetry/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for brokerK8sApiServer
    • -
    • "WARNING" Add CRD validation for spec field `eventsEnabled` in ServiceTelemetry/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for brokerK8sCA
    • -
    • "WARNING" Add CRD validation for spec field `graphingEnabled` in ServiceTelemetry/v1alpha1
    • +
    • "WARNING" Add a spec descriptor for natEnabled
    • -
    • "WARNING" Add CRD validation for spec field `alerting` in ServiceTelemetry/v1beta1
    • +
    • "WARNING" Add a spec descriptor for brokerK8sApiServerToken
    • -
    • "WARNING" Add CRD validation for spec field `backends` in ServiceTelemetry/v1beta1
    • +
    • "WARNING" Add a spec descriptor for ceIPSecPSK
    • -
    • "WARNING" Add CRD validation for spec field `graphing` in ServiceTelemetry/v1beta1
    • +
    • "WARNING" Add a spec descriptor for clusterCIDR
    • -
    • "WARNING" Add CRD validation for spec field `highAvailability` in ServiceTelemetry/v1beta1
    • +
    • "WARNING" Add a spec descriptor for clusterID
    • -
    • "WARNING" Add CRD validation for spec field `transports` in ServiceTelemetry/v1beta1
    • +
    • "WARNING" Add a spec descriptor for serviceDiscoveryEnabled
    • @@ -10952,25 +10918,34 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For service-telemetry-operator.v1.2.0:

      +

      For submariner.v0.9.0:

      -

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["servicetelemetrys.infra.watch"])
    • +
    • "WARNING" (submariner.v0.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + + +
      +

      For submariner.v0.8.1:

      + + +

    • "WARNING" (submariner.v0.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["submariners.submariner.io"])
    • @@ -10980,125 +10955,109 @@
      Grade

    NOT USED

    Grade C
    (400)
    Grade B
    (600)
    fuse-onlineawx-resource-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 7.9.x
    • - -
    • fuse-online-v7.8.x
    • - -
    • fuse-online-7.7.x
    • +
    • release-0.1
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • fuse-online.v7.9.0
    • - -
    • fuse-online-operator.v7.8.1
    • - -
    • fuse-online-operator.v7.7.1
    • - -
    -
    -

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For fuse-online.v7.9.0:

      +

      For awx-resource-operator.v0.1.1:

      -

    • "ERROR" syndesises.syndesis.io does not have a status descriptor
    • +
    • "ERROR" ansiblejobs.tower.ansible.com does not have a status descriptor
    • -
    • "ERROR" addons does not have a spec descriptor
    • +
    • "ERROR" jobtemplates.tower.ansible.com does not have a status descriptor
    • +
    • "ERROR" tower_auth_secret does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for addons
    • +
    • "ERROR" extra_vars does not have a spec descriptor
    • +
    • "ERROR" job_template_name does not have a spec descriptor
    • -
      -

      For fuse-online-operator.v7.8.1:

      +

    • "ERROR" job_template_name does not have a spec descriptor
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" job_template_playbook does not have a spec descriptor
    • -
    • "ERROR" syndesises.syndesis.io does not have a status descriptor
    • +
    • "ERROR" job_template_project does not have a spec descriptor
    • -
    • "ERROR" addons does not have a spec descriptor
    • +
    • "ERROR" tower_auth_secret does not have a spec descriptor
    • +
    • "ERROR" job_template_inventory does not have a spec descriptor
    • -
    • "WARNING" Add CRD validation for Syndesis/v1beta2
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for addons
    • +
    • "WARNING" Add a spec descriptor for tower_auth_secret
    • -
      -

      For fuse-online-operator.v7.7.1:

      +

    • "WARNING" Add a spec descriptor for extra_vars
    • -
    • "ERROR" addons does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for job_template_name
    • -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for job_template_name
    • -
    • "ERROR" syndesises.syndesis.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for job_template_playbook
    • +
    • "WARNING" Add a spec descriptor for job_template_project
    • -
    • "WARNING" Add a spec descriptor for addons
    • +
    • "WARNING" Add a spec descriptor for tower_auth_secret
    • -
    • "WARNING" Add CRD validation for Syndesis/v1beta1
    • +
    • "WARNING" Add a spec descriptor for job_template_inventory
    • @@ -11109,43 +11068,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For fuse-online.v7.9.0:

      - - -

    • "WARNING" (fuse-online.v7.9.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - - -
      -

      For fuse-online-operator.v7.8.1:

      - - -

    • "WARNING" (fuse-online-operator.v7.8.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["syndesises.syndesis.io"])
    • - - -
      -

      For fuse-online-operator.v7.7.1:

      +

      For awx-resource-operator.v0.1.1:

      -

    • "WARNING" (fuse-online-operator.v7.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (awx-resource-operator.v0.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["syndesises.syndesis.io"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ansiblejobs.tower.ansible.com" "jobtemplates.tower.ansible.com"])
    • @@ -11155,32 +11098,32 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    rhpam-kogito-operatorclusterresourceoverride -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 7.x
    • +
    • 4.8
    @@ -11189,59 +11132,45 @@
    Grade

    NOT USED

    USED

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For rhpam-kogito-operator.v7.11.1-1:

      - -

    • "ERROR" gitSource does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" kogitobuilds.rhpam.kiegroup.org does not have a status descriptor
    • +

      For clusterresourceoverride-operator.4.8.0-202107291502:

      -

    • "ERROR" kogitoruntimes.rhpam.kiegroup.org does not have a status descriptor
    • +
    • "ERROR" clusterresourceoverrides.operator.autoscaling.openshift.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" podResourceOverride does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for gitSource
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for image
    • -
    • "WARNING" Add a spec descriptor for replicas
    • +
    • "WARNING" Add a spec descriptor for podResourceOverride
    • @@ -11252,25 +11181,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For rhpam-kogito-operator.v7.11.1-1:

      +

      For clusterresourceoverride-operator.4.8.0-202107291502:

      -

    • "WARNING" (rhpam-kogito-operator.v7.11.1-1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (clusterresourceoverride-operator.4.8.0-202107291502) csv.metadata.Name clusterresourceoverride-operator.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["clusterresourceoverrides.operator.autoscaling.openshift.io"])
    • @@ -11280,36 +11211,32 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    quay-operatoropenshift-gitops-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • quay-v3.4
    • - -
    • quay-v3.5
    • - -
    • quay-v3.3
    • +
    • preview
    @@ -11318,21 +11245,23 @@
    Grade

    REQUIRED

    - +Info -
    + +Info +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

      -
    • red-hat-quay.v3.3.4
    • +
    • openshift-gitops-operator.v1.2.0
    • + +
    • openshift-gitops-operator.v1.2.0
    @@ -11342,89 +11271,100 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For quay-operator.v3.4.6:

      +

      For openshift-gitops-operator.v1.2.0:

      -

    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "ERROR" server does not have a spec descriptor
    • +
    • "ERROR" controller does not have a spec descriptor
    • -
    • "WARNING" Warning: Value redhatcop.redhat.io/v1alpha1, Kind=QuayEcosystem: provided API should have an example annotation
    • +
    • "ERROR" dex does not have a spec descriptor
    • + +
    • "ERROR" ha does not have a spec descriptor
    • +
    • "ERROR" redis does not have a spec descriptor
    • -
      -

      For quay-operator.v3.5.5:

      +

    • "ERROR" repo does not have a spec descriptor
    • + +
    • "ERROR" argocds.argoproj.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Warning: Value redhatcop.redhat.io/v1alpha1, Kind=QuayEcosystem: provided API should have an example annotation
    • +
    • "WARNING" Add a spec descriptor for server
    • +
    • "WARNING" Add a spec descriptor for controller
    • -
      -

      For red-hat-quay.v3.3.4:

      +

    • "WARNING" Add a spec descriptor for dex
    • -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for ha
    • -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for redis
    • -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for repo
    • -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • +
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=ApplicationSet: provided API should have an example annotation
    • -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • +
    • "WARNING" Warning: Value pipelines.openshift.io/v1alpha1, Kind=GitopsService: provided API should have an example annotation
    • -
    • "ERROR" clair does not have a spec descriptor
    • +
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=Application: provided API should have an example annotation
    • -
    • "ERROR" quay does not have a spec descriptor
    • +
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=AppProject: provided API should have an example annotation
    • -
    • "ERROR" clair does not have a spec descriptor
    • -
    • "ERROR" quay does not have a spec descriptor
    • +
      +

      For openshift-gitops-operator.v1.2.0:

      -

    • "ERROR" redis does not have a spec descriptor
    • +
    • "ERROR" server does not have a spec descriptor
    • -
    • "ERROR" quay does not have a spec descriptor
    • +
    • "ERROR" controller does not have a spec descriptor
    • -
    • "ERROR" quay does not have a spec descriptor
    • +
    • "ERROR" dex does not have a spec descriptor
    • -
    • "ERROR" clair does not have a spec descriptor
    • +
    • "ERROR" ha does not have a spec descriptor
    • -
    • "ERROR" quay does not have a spec descriptor
    • +
    • "ERROR" redis does not have a spec descriptor
    • + +
    • "ERROR" repo does not have a spec descriptor
    • + +
    • "ERROR" argocds.argoproj.io does not have a status descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for clair
    • +
    • "WARNING" Add a spec descriptor for server
    • -
    • "WARNING" Add a spec descriptor for quay
    • +
    • "WARNING" Add a spec descriptor for controller
    • -
    • "WARNING" Add a spec descriptor for clair
    • +
    • "WARNING" Add a spec descriptor for dex
    • -
    • "WARNING" Add a spec descriptor for quay
    • +
    • "WARNING" Add a spec descriptor for ha
    • "WARNING" Add a spec descriptor for redis
    • -
    • "WARNING" Add a spec descriptor for quay
    • +
    • "WARNING" Add a spec descriptor for repo
    • -
    • "WARNING" Add a spec descriptor for quay
    • +
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=ApplicationSet: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for clair
    • +
    • "WARNING" Warning: Value pipelines.openshift.io/v1alpha1, Kind=GitopsService: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for quay
    • +
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=Application: provided API should have an example annotation
    • + +
    • "WARNING" Warning: Value argoproj.io/v1alpha1, Kind=AppProject: provided API should have an example annotation
    • @@ -11435,138 +11375,52 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For quay-operator.v3.4.6:

      +

      For openshift-gitops-operator.v1.2.0:

      -

    • "WARNING" (quay-operator.v3.4.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (openshift-gitops-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io" "quayregistries.quay.redhat.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gitopsservices.pipelines.openshift.io"])
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
      -

      For quay-operator.v3.5.5:

      - - -

    • "WARNING" (quay-operator.v3.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io" "quayregistries.quay.redhat.com"])
    • +
    • "WARNING" provided API should have an example annotation
    • "WARNING" provided API should have an example annotation

    • -

      For red-hat-quay.v3.3.4:

      - - -

    • "WARNING" (red-hat-quay.v3.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["quayecosystems.redhatcop.redhat.io"])
    • +

      For openshift-gitops-operator.v1.2.0:

      +

    • "WARNING" (openshift-gitops-operator.v1.2.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    -
    - -

    NOT USED

    Grade D
    (200)
    skupper-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

    Following the channels names which does not comply. For further information see Channel Naming doc.

    -
      - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["gitopsservices.pipelines.openshift.io"])
    • +
    • "WARNING" provided API should have an example annotation
    • -
      -

      For skupper-operator.v0.7.0:

      +

    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" provided API should have an example annotation
    • -
    • "WARNING" (skupper-operator.v0.7.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" provided API should have an example annotation
    • @@ -11576,45 +11430,45 @@
      Grade

    NOT USED

    Grade B
    (800)
    Grade D
    (100)
    awx-resource-operatoropenshift-jenkins-operator -

    PARTIAL COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • release-0.1
    • +
    • alpha
    -

    NOT USED

    +

    USED

    @@ -11624,61 +11478,37 @@
    Grade

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For awx-resource-operator.v0.1.1:

      - -

    • "ERROR" ansiblejobs.tower.ansible.com does not have a status descriptor
    • - -
    • "ERROR" jobtemplates.tower.ansible.com does not have a status descriptor
    • - -
    • "ERROR" tower_auth_secret does not have a spec descriptor
    • - -
    • "ERROR" extra_vars does not have a spec descriptor
    • - -
    • "ERROR" job_template_name does not have a spec descriptor
    • - -
    • "ERROR" job_template_name does not have a spec descriptor
    • - -
    • "ERROR" job_template_playbook does not have a spec descriptor
    • - -
    • "ERROR" job_template_project does not have a spec descriptor
    • - -
    • "ERROR" tower_auth_secret does not have a spec descriptor
    • - -
    • "ERROR" job_template_inventory does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - +

      For jenkins-operator.0.7.1:

      -

    • "WARNING" Add a spec descriptor for tower_auth_secret
    • +
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • -
    • "WARNING" Add a spec descriptor for extra_vars
    • +
    • "ERROR" error getting custom resources
    • -
    • "WARNING" Add a spec descriptor for job_template_name
    • +
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • -
    • "WARNING" Add a spec descriptor for job_template_name
    • +
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • -
    • "WARNING" Add a spec descriptor for job_template_playbook
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for job_template_project
    • -
    • "WARNING" Add a spec descriptor for tower_auth_secret
    • +
    • "WARNING" Warning: Value jenkins.io/v1alpha2, Kind=JenkinsImage: provided API should have an example annotation
    • -
    • "WARNING" Add a spec descriptor for job_template_inventory
    • +
    • "WARNING" Warning: Value jenkins.io/v1alpha2, Kind=Restore: provided API should have an example annotation
    • @@ -11689,27 +11519,31 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For awx-resource-operator.v0.1.1:

      +

      For jenkins-operator.0.7.1:

      -

    • "WARNING" (awx-resource-operator.v0.1.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (jenkins-operator.0.7.1) csv.metadata.Name jenkins-operator.0.7.1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["ansiblejobs.tower.ansible.com" "jobtemplates.tower.ansible.com"])
    • +
    • "WARNING" this bundle is using APIs which were deprecated 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.jenkins.io" "backupconfigs.jenkins.io" "jenkins.jenkins.io" "jenkinsimages.jenkins.io" "restores.jenkins.io"])
    • + +
    • "WARNING" provided API should have an example annotation
    • + +
    • "WARNING" provided API should have an example annotation
    • @@ -11723,28 +11557,32 @@
      Grade
    integration-operatorapicast-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 1.x
    • +
    • threescale-2.8
    • + +
    • threescale-2.9
    • + +
    • threescale-2.10
    @@ -11753,39 +11591,125 @@
    Grade

    NOT USED

    USED

    NOT USED

    -

    ONLY ERRORS

    +

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For integration-operator.v1.1.0:

      +

      For apicast-operator.v0.2.4:

      + +

    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • + +
    • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
    • + +
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • + +
    • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
    • + + +
      +

      For apicast-operator.v0.3.1:

      + +

    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • + +
    • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
    • + +
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • + +
    • "ERROR" exposedHost does not have a spec descriptor
    • + +
    • "ERROR" logLevel does not have a spec descriptor
    • + +
    • "ERROR" replicas does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • + + +
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • + +
    • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
    • + +
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • + +
    • "WARNING" Add a spec descriptor for exposedHost
    • + +
    • "WARNING" Add a spec descriptor for logLevel
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + + +
      +

      For apicast-operator.v0.4.0:

      + +

    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" apicasts.apps.3scale.net does not have a status descriptor
    • + +
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • + +
    • "ERROR" embeddedConfigurationSecretRef does not have a spec descriptor
    • + +
    • "ERROR" replicas does not have a spec descriptor
    • + +
    • "ERROR" adminPortalCredentialsRef does not have a spec descriptor
    • + +
    • "ERROR" exposedHost does not have a spec descriptor
    • + +
    • "ERROR" logLevel does not have a spec descriptor
    • + +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" installations.integration.redhat.com does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • + +
    • "WARNING" Add a spec descriptor for embeddedConfigurationSecretRef
    • + +
    • "WARNING" Add a spec descriptor for replicas
    • + +
    • "WARNING" Add a spec descriptor for adminPortalCredentialsRef
    • + +
    • "WARNING" Add a spec descriptor for exposedHost
    • + +
    • "WARNING" Add a spec descriptor for logLevel
    • @@ -11796,25 +11720,39 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For integration-operator.v1.1.0:

      +

      For apicast-operator.v0.2.4:

      -

    • "WARNING" (integration-operator.v1.1.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
    • + + +
      +

      For apicast-operator.v0.3.1:

      + + +

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
    • + + +
      +

      For apicast-operator.v0.4.0:

      + + +

    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["apicasts.apps.3scale.net"])
    • @@ -11824,106 +11762,93 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade D
    (100)
    file-integrity-operatorlocal-storage-operator

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • release-0.1
    • - -
    • 4.7
    • +
    • 4.8
    -

    USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • local-storage-operator.4.8.0-202107291502
    • + +
    +
    +

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For file-integrity-operator.v0.1.16:

      - -

    • "ERROR" fileintegrities.fileintegrity.openshift.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" debug does not have a spec descriptor
    • - - -
    • "WARNING" Warning: Value fileintegrity.openshift.io/v1alpha1, Kind=FileIntegrityNodeStatus: provided API should have an example annotation
    • - -
    • "WARNING" Add a spec descriptor for config
    • - -
    • "WARNING" Add a spec descriptor for debug
    • +

      For local-storage-operator.4.8.0-202107291502:

      +

    • "ERROR" error getting custom resources
    • -
      -

      For file-integrity-operator.v0.1.13:

      +

    • "ERROR" failed to parse alm-examples annotation: invalid character ']' looking for beginning of value
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" debug does not have a spec descriptor
    • - -
    • "ERROR" fileintegrities.fileintegrity.openshift.io does not have a status descriptor
    • - +
    • "ERROR" failed to parse alm-examples annotation: invalid character ']' looking for beginning of value
    • -
    • "WARNING" Warning: Value fileintegrity.openshift.io/v1alpha1, Kind=FileIntegrityNodeStatus: provided API should have an example annotation
    • +
    • "ERROR" failed to parse alm-examples annotation: invalid character ']' looking for beginning of value
    • -
    • "WARNING" Add a spec descriptor for config
    • -
    • "WARNING" Add a spec descriptor for debug
    • +
    • "WARNING" Warning: Value local.storage.openshift.io/v1alpha1, Kind=LocalVolumeDiscoveryResult: provided API should have an example annotation
    • @@ -11934,34 +11859,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For file-integrity-operator.v0.1.16:

      - - -

    • "WARNING" (file-integrity-operator.v0.1.16) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" provided API should have an example annotation
    • - - -
      -

      For file-integrity-operator.v0.1.13:

      +

      For local-storage-operator.4.8.0-202107291502:

      -

    • "WARNING" (file-integrity-operator.v0.1.13) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • +
    • "WARNING" (local-storage-operator.4.8.0-202107291502) csv.metadata.Name local-storage-operator.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • "WARNING" provided API should have an example annotation
    • @@ -11973,93 +11889,77 @@
      Grade

    NOT USED

    Grade B
    (600)
    Grade C
    (500)
    local-storage-operatorsandboxed-containers-operator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.8
    • +
    • preview-1.0
    -

    REQUIRED

    +

    NOT USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • local-storage-operator.4.8.0-202107291502
    • - -
    -
    -

    NOT USED

    USED

    -

    ERRORS AND WARNINGS

    +

    ONLY ERRORS

    - +Info -
    + +Info +

      -

      For local-storage-operator.4.8.0-202107291502:

      - -

    • "ERROR" error getting custom resources
    • - -
    • "ERROR" failed to parse alm-examples annotation: invalid character ']' looking for beginning of value
    • +

      For sandboxed-containers-operator.v1.0.0:

    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" failed to parse alm-examples annotation: invalid character ']' looking for beginning of value
    • - -
    • "ERROR" failed to parse alm-examples annotation: invalid character ']' looking for beginning of value
    • +
    • "ERROR" error spec does not exist
    • +
    • "ERROR" kataconfigs.kataconfiguration.openshift.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value local.storage.openshift.io/v1alpha1, Kind=LocalVolumeDiscoveryResult: provided API should have an example annotation
    • @@ -12070,27 +11970,27 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For local-storage-operator.4.8.0-202107291502:

      +

      For sandboxed-containers-operator.v1.0.0:

      -

    • "WARNING" (local-storage-operator.4.8.0-202107291502) csv.metadata.Name local-storage-operator.4.8.0-202107291502 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (sandboxed-containers-operator.v1.0.0) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" provided API should have an example annotation
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["kataconfigs.kataconfiguration.openshift.io"])
    • @@ -12100,177 +12000,277 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (200)
    sriov-network-operatorservicemeshoperator -

    COMPLY

    +

    NOT COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • 4.8
    • +
    • 1.0
    -

    REQUIRED

    +

    USED

    - +Info -
    -

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    -
      - -
    • sriov-network-operator.4.8.0-202108051934
    • - -
    -
    -

    NOT USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For sriov-network-operator.4.8.0-202108051934:

      +

      For servicemeshoperator.v2.0.7.1:

      + +

    • "ERROR" servicemeshmemberrolls.maistra.io does not have a status descriptor
    • + +
    • "ERROR" servicemeshmembers.maistra.io does not have a status descriptor
    • + +
    • "ERROR" telemetry does not have a spec descriptor
    • + +
    • "ERROR" addons does not have a spec descriptor
    • + +
    • "ERROR" tracing does not have a spec descriptor
    • + +
    • "ERROR" policy does not have a spec descriptor
    • + +
    • "ERROR" members does not have a spec descriptor
    • + +
    • "ERROR" controlPlaneRef does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" sriovoperatorconfigs.sriovnetwork.openshift.io does not have a status descriptor
    • -
    • "ERROR" sriovnetworknodepolicies.sriovnetwork.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for telemetry
    • -
    • "ERROR" sriovnetworks.sriovnetwork.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for addons
    • -
    • "ERROR" sriovibnetworks.sriovnetwork.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for tracing
    • -
    • "ERROR" sriovnetworknodestates.sriovnetwork.openshift.io does not have a status descriptor
    • +
    • "WARNING" Add a spec descriptor for policy
    • -
    • "ERROR" enableInjector does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for members
    • -
    • "ERROR" enableOperatorWebhook does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for controlPlaneRef
    • -
    • "ERROR" logLevel does not have a spec descriptor
    • -
    • "ERROR" priority does not have a spec descriptor
    • +
      +

      For servicemeshoperator.v2.0.7.1:

      -

    • "ERROR" mtu does not have a spec descriptor
    • +
    • "ERROR" servicemeshmemberrolls.maistra.io does not have a status descriptor
    • -
    • "ERROR" numVfs does not have a spec descriptor
    • +
    • "ERROR" servicemeshmembers.maistra.io does not have a status descriptor
    • -
    • "ERROR" nicSelector does not have a spec descriptor
    • +
    • "ERROR" telemetry does not have a spec descriptor
    • -
    • "ERROR" deviceType does not have a spec descriptor
    • +
    • "ERROR" addons does not have a spec descriptor
    • -
    • "ERROR" resourceName does not have a spec descriptor
    • +
    • "ERROR" tracing does not have a spec descriptor
    • -
    • "ERROR" nodeSelector does not have a spec descriptor
    • +
    • "ERROR" policy does not have a spec descriptor
    • -
    • "ERROR" trust does not have a spec descriptor
    • +
    • "ERROR" members does not have a spec descriptor
    • -
    • "ERROR" resourceName does not have a spec descriptor
    • +
    • "ERROR" controlPlaneRef does not have a spec descriptor
    • -
    • "ERROR" networkNamespace does not have a spec descriptor
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" ipam does not have a spec descriptor
    • -
    • "ERROR" vlan does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for telemetry
    • -
    • "ERROR" spoofChk does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for addons
    • -
    • "ERROR" linkState does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for tracing
    • -
    • "ERROR" resourceName does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for policy
    • -
    • "ERROR" networkNamespace does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for members
    • -
    • "ERROR" ipam does not have a spec descriptor
    • +
    • "WARNING" Add a spec descriptor for controlPlaneRef
    • -
    • "ERROR" interfaces does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for enableInjector
    • +
    +
    + +
    +

    ONLY WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for enableOperatorWebhook
    • -
    • "WARNING" Add a spec descriptor for logLevel
    • +
      +

      For servicemeshoperator.v2.0.7.1:

      -

    • "WARNING" Add a spec descriptor for priority
    • -
    • "WARNING" Add a spec descriptor for mtu
    • +
    • "WARNING" (servicemeshoperator.v2.0.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" Add a spec descriptor for numVfs
    • +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["servicemeshcontrolplanes.maistra.io" "servicemeshmemberrolls.maistra.io" "servicemeshmembers.maistra.io"])
    • + + +
      +

      For servicemeshoperator.v2.0.7.1:

      + + +

    • "WARNING" (servicemeshoperator.v2.0.7.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["servicemeshcontrolplanes.maistra.io" "servicemeshmemberrolls.maistra.io" "servicemeshmembers.maistra.io"])
    • + + + +
    +
    + +

    NOT USED

    Grade D
    (200)
    amq-broker-rhel8 +

    NOT COMPLY

    +
    +

    NOT COMPLY

    + + + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    +
    + +
    +

    NOT USED

    + + +

    NOT USED

    +

    ERRORS AND WARNINGS

    + + + +Info +
    +
      -
    • "WARNING" Add a spec descriptor for nicSelector
    • + +
      +

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      -

    • "WARNING" Add a spec descriptor for deviceType
    • +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for resourceName
    • +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for nodeSelector
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for trust
    • +
    • "ERROR" deploymentPlan does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for resourceName
    • -
    • "WARNING" Add a spec descriptor for networkNamespace
    • +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • -
    • "WARNING" Add a spec descriptor for ipam
    • -
    • "WARNING" Add a spec descriptor for vlan
    • +
      +

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      -

    • "WARNING" Add a spec descriptor for spoofChk
    • +
    • "ERROR" activemqartemisaddresses.broker.amq.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for linkState
    • +
    • "ERROR" activemqartemisscaledowns.broker.amq.io does not have a status descriptor
    • -
    • "WARNING" Add a spec descriptor for resourceName
    • +
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "WARNING" Add a spec descriptor for networkNamespace
    • +
    • "ERROR" deploymentPlan does not have a spec descriptor
    • -
    • "WARNING" Add a spec descriptor for ipam
    • -
    • "WARNING" Add a spec descriptor for interfaces
    • +
    • "WARNING" Add a spec descriptor for deploymentPlan
    • @@ -12281,25 +12281,36 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For sriov-network-operator.4.8.0-202108051934:

      +

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      -

    • "WARNING" (sriov-network-operator.4.8.0-202108051934) csv.metadata.Name sriov-network-operator.4.8.0-202108051934 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (amq-broker-operator.v7.8.1-opr-3-rhel8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • + + +
      +

      For amq-broker-operator.v7.8.1-opr-3-rhel8:

      + + +

    • "WARNING" (amq-broker-operator.v7.8.1-opr-3-rhel8) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + +
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["activemqartemises.broker.amq.io" "activemqartemisaddresses.broker.amq.io" "activemqartemisscaledowns.broker.amq.io"])
    • @@ -12309,49 +12320,71 @@
      Grade

    NOT USED

    Grade C
    (500)
    Grade D
    (100)
    businessautomation-operatoropenshift-pipelines-operator-rh

    COMPLY

    -

    COMPLY

    +

    NOT COMPLY

    + +Info +
    +

    Following the channels names which does not comply. For further information see Channel Naming doc.

    +
      + +
    • preview
    • + +
    +
    +
    -

    USED

    +

    REQUIRED

    + +Info +
    +

    If the package is in Red Hat Operators Supported in Disconnected Mode then must have the annotation. Following the head of the channels without the annotation.

    +
      + +
    • redhat-openshift-pipelines.v1.5.1
    • + +
    • redhat-openshift-pipelines.v1.5.1
    • + +
    +
    +

    NOT USED

    PASS

    @@ -12360,25 +12393,32 @@
    Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For businessautomation-operator.7.11.1-1:

      +

      For redhat-openshift-pipelines.v1.5.1:

      -

    • "WARNING" (businessautomation-operator.7.11.1-1) csv.metadata.Name businessautomation-operator.7.11.1-1 is not following the recommended naming convention: <operator-name>.v<semver> e.g. memcached-operator.v0.0.1
    • +
    • "WARNING" (redhat-openshift-pipelines.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • + + +
      +

      For redhat-openshift-pipelines.v1.5.1:

      + + +

    • "WARNING" (redhat-openshift-pipelines.v1.5.1) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -12388,36 +12428,32 @@
      Grade

    NOT USED

    Grade A
    (900)
    Grade B
    (700)
    container-security-operatorpoison-pill-manager -

    PARTIAL COMPLY

    +

    COMPLY

    NOT COMPLY

    - +Info -
    + +Info +

    Following the channels names which does not comply. For further information see Channel Naming doc.

      -
    • quay-v3.3
    • - -
    • quay-v3.4
    • - -
    • quay-v3.5
    • +
    • alpha
    @@ -12426,63 +12462,49 @@
    Grade

    NOT USED

    NOT USED

    USED

    ERRORS AND WARNINGS

    - +Info -
    + +Info +

      -

      For container-security-operator.v3.3.4:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • +

      For poison-pill.v0.1.2:

      +

    • "ERROR" poisonpillconfigs.poison-pill.medik8s.io does not have a status descriptor
    • -
    • "WARNING" Warning: Value : (container-security-operator.v3.3.4) example annotations not found
    • +
    • "ERROR" poisonpillremediations.poison-pill.medik8s.io does not have a status descriptor
    • +
    • "ERROR" poisonpillremediationtemplates.poison-pill.medik8s.io does not have a status descriptor
    • -
      -

      For container-security-operator.v3.4.6:

      +

    • "ERROR" template does not have a spec descriptor
    • "ERROR" Owned CRDs do not have resources specified
    • -
    • "ERROR" error spec does not exist
    • - -
    • "ERROR" imagemanifestvulns.secscan.quay.redhat.com does not have a status descriptor
    • - - - -
      -

      For container-security-operator.v3.5.5:

      - -

    • "ERROR" error spec does not exist
    • - -
    • "ERROR" imagemanifestvulns.secscan.quay.redhat.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • +
    • "WARNING" Add a spec descriptor for template
    • @@ -12493,47 +12515,25 @@
      Grade

    ONLY WARNINGS

    - +Info -
    + +Info +

      -

      For container-security-operator.v3.3.4:

      - - -

    • "WARNING" (container-security-operator.v3.3.4) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
    • - -
    • "WARNING" (container-security-operator.v3.3.4) example annotations not found
    • - - -
      -

      For container-security-operator.v3.4.6:

      - - -

    • "WARNING" (container-security-operator.v3.4.6) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
    • - - -
      -

      For container-security-operator.v3.5.5:

      - +

      For poison-pill.v0.1.2:

      -

    • "WARNING" (container-security-operator.v3.5.5) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • -
    • "WARNING" this bundle is using APIs which were deprecated and removed in v1.22. More info: https://kubernetes.io/docs/reference/using-api/deprecation-guide/#v1-22. Migrate the API(s) for CRD: (["imagemanifestvulns.secscan.quay.redhat.com"])
    • +
    • "WARNING" (poison-pill.v0.1.2) csv.Spec.minKubeVersion is not informed. It is recommended you provide this information. Otherwise, it would mean that your operator project can be distributed and installed in any cluster version available, which is not necessarily the case for all projects.
    • @@ -12543,7 +12543,7 @@
      Grade

    NOT USED

    Grade D
    (200)
    Grade B
    (600)
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    +
      + +
    • CRD
    • + +
    +
    +
      + +
    +
    +
      + +
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • metering-operator.4.6.0-202107292226 - (label==v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    apicast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    • threescale-2.8
    • + +
    +
    +
      + +
    • apicast-operator.v0.2.0 - (label=v4.5,max=not set,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    rhsso-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    local-storage-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    • local-storage-operator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-gitops-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    +
    +
      + +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cincinnati-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • v1
    • + +
    +
    +
      + +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    integration-operator +
      + +
    +
    +
      + +
    • 1.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ptp-operator +
      + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    +
    +
      + +
    • ptp-operator.4.6.0-202107291702 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rh-service-binding-operator +
      + +
    +
    +
      + +
    • preview
    • + +
    • beta
    • + +
    +
    +
      + +
    +
    +
      + +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[preview beta],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[preview beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-streams +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • amq-streams-1.7.x
    • + +
    • amq-streams-1.8.x
    • + +
    • amq-streams-1.x
    • + +
    • amq-streams-1.6.x
    • + +
    +
    +
      + +
    • amqstreams.v1.5.4 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.0 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.1 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.2 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.6.x amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[stable amq-streams-1.8.x amq-streams-1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-jenkins-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    quay-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ocs-operator +
      + +
    • ClusterRole
    • + +
    • ClusterRoleBinding
    • + +
    • Role
    • + +
    • RoleBinding
    • + +
    • CRD
    • + +
    +
    +
      + +
    • stable-4.6
    • + +
    • eus-4.6
    • + +
    • stable-4.5
    • + +
    +
    +
      + +
    • ocs-operator.v4.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable-4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • ocs-operator.v4.6.6 - (label=v4.5-v4.7,max=4.8,channels=[stable-4.6 eus-4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    fuse-apicurito +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.9.x
    • + +
    +
    +
      + +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    datagrid +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 8.1.x
    • + +
    • 8.2.x
    • + +
    • 8.0.x
    • + +
    +
    +
      + +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rhacs-operator +
      + +
    +
    +
      + +
    • rhacs-3.62
    • + +
    • rhacs-3.64
    • + +
    • latest
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.62 rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker-lts +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mtc-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v1.4
    • + +
    • release-v1.5
    • + +
    • release-v1.3
    • + +
    • release-v1.2
    • + +
    +
    +
      + +
    • mtc-operator.v1.2.5 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5 release-v1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.2 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.7 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.1 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhpam-kogito-operator +
      + +
    +
    +
      + +
    • 7.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-logging +
      + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    +
    +
      + +
    • clusterlogging.4.6.0-202107292226 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    advanced-cluster-management +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.2
    • + +
    • release-2.1
    • + +
    • release-2.3
    • + +
    • release-2.0
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.11 - (label==v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.10 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.7 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.8 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.9 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    windows-machine-config-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    • preview
    • + +
    +
    +
      + +
    +
    +
      + +
    • windows-machine-config-operator.v1.0.2 - (label=v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.3 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.4 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.5 - (label==v4.6,max=not set,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v1.0.5-0.1625103163.p - (label==v4.6,max=not set,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    metering-ocp +
      + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    +
    +
      + +
    • metering-operator.4.6.0-202108162128 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-pipelines-operator-rh +
      + +
    • CRD
    • + +
    +
    +
      + +
    • ocp-4.4
    • + +
    • ocp-4.5
    • + +
    • ocp-4.6
    • + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    • openshift-pipelines-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[ocp-4.4 ocp-4.5 ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-pipelines-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.5 ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.5 ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[ocp-4.6 preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gatekeeper-operator-product +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    elasticsearch-operator +
      + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    +
    +
      + +
    • elasticsearch-operator.4.6.0-202107291702 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    3scale-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    • threescale-2.8
    • + +
    • threescale-2.7
    • + +
    • threescale-2.6
    • + +
    +
    +
      + +
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.6 threescale-2.10 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.7 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jaeger-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 1.24-stable
    • + +
    • 1.17-stable
    • + +
    • 1.20-stable
    • + +
    • tech-preview
    • + +
    • 1.13-stable
    • + +
    +
    +
      + +
    • jaeger-operator.v1.13.2-1 - (label=v4.5,max=4.8,channels=[1.13-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.5 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[stable 1.24-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker-rhel8 +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 7.8.x
    • + +
    • 7.x
    • + +
    +
    +
      + +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-4-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-1-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-2-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x 7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq7-cert-manager-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • 1.x
    • + +
    +
    +
      + +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    container-security-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.4
    • + +
    • quay-v3.5
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    klusterlet-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.2
    • + +
    • release-2.3
    • + +
    +
    +
      + +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    businessautomation-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    quay-bridge-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.3
    • + +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    +
    +
      + +
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    awx-resource-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-0.1
    • + +
    +
    +
      + +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    fuse-console +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-console-7.7.x
    • + +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
    • + +
    +
    +
      + +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kiali-ossm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    file-integrity-operator +
      + +
    +
    +
      + +
    • 4.6
    • + +
    • release-0.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • file-integrity-operator.v0.1.13 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    red-hat-camel-k +
      + +
    • CRD
    • + +
    +
    +
      + +
    • techpreview
    • + +
    • 1.4.x
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-online-v7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-online-7.7.x
    • + +
    +
    +
      + +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    web-terminal +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.1.1 - (label==v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    performance-addon-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.4
    • + +
    • 4.5
    • + +
    • 4.6
    • + +
    +
    +
      + +
    • performance-addon-operator.v4.4.1 - (label=v4.5,max=4.8,channels=[4.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.5.4 - (label=v4.5,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • performance-addon-operator.v4.6.4 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq7-interconnect-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.2.0
    • + +
    • 1.10.x
    • + +
    +
    +
      + +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    submariner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • alpha-0.9
    • + +
    • alpha-0.8
    • + +
    +
    +
      + +
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • submariner.v0.8.2 - (label=v4.5-v4.7,max=not set,channels=[alpha-0.8],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    codeready-workspaces +
      + +
    • CRD
    • + +
    +
    +
      + +
    • latest
    • + +
    +
    +
      + +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    servicemeshoperator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.0
    • + +
    • stable
    • + +
    +
    +
      + +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vertical-pod-autoscaler +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    • verticalpodautoscaler.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    service-registry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • serviceregistry-1.0
    • + +
    • serviceregistry-1
    • + +
    • serviceregistry-1.1
    • + +
    • 2.x
    • + +
    • 2.0.x
    • + +
    +
    +
      + +
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    jws-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    clusterresourceoverride +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    • clusterresourceoverride-operator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    costmanagement-metrics-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-kube-descheduler-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    • clusterkubedescheduleroperator.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    serverless-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.5
    • + +
    • 4.3
    • + +
    • 4.4
    • + +
    • 4.7
    • + +
    • 4.6
    • + +
    • stable
    • + +
    +
    +
      + +
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[4.5 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[4.7 4.6 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[4.5 4.3 4.4 4.7 4.6 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[4.5 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[4.5 4.7 4.6 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    skupper-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    sriov-network-operator +
      + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    +
    +
      + +
    • sriov-network-operator.4.6.0-202107300640 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.5 - (label==v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.6 - (label==v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.7 - (label==v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    smart-gateway-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.3
    • + +
    • stable-1.2
    • + +
    +
    +
      + +
    • smart-gateway-operator.v2.2.1628154027 - (label=v4.5-v4.6,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • smart-gateway-operator.v3.0.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq-broker +
      + +
    • CRD
    • + +
    +
    +
      + +
    • current
    • + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    • current-76
    • + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x current-76],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x current-76 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-4 - (label=v4.5-v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-1 - (label=v4.5-v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    compliance-operator +
      + +
    +
    +
      + +
    • 4.6
    • + +
    • release-0.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • compliance-operator.v0.1.32 - (label==v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ansible-automation-platform-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • early-access
    • + +
    +
    +
      + +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nfd +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    +
    +
      + +
    • nfd.4.6.0-202107291702 - (label==v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eap +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    service-telemetry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.3
    • + +
    • stable-1.2
    • + +
    +
    +
      + +
    • service-telemetry-operator.v1.2.1628153378 - (label=v4.5-v4.6,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • service-telemetry-operator.v1.3.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    + + + + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html new file mode 100644 index 00000000..7040c886 --- /dev/null +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.7_2021-09-06.html @@ -0,0 +1,3098 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-operator-index:v4.7
    • +
    • Image ID: sha256:7d33c0e3800d22b2383c4fa67809a30715d31d152d1e7c2ace0a5b7821ec37bd
    • +
    • Image Created at: 2021-09-02T07:48:17.149455702Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    +
      + +
    • CRD
    • + +
    +
    +
      + +
    +
    +
      + +
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.7.4 - (label==v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    apicast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    • threescale-2.8
    • + +
    +
    +
      + +
    • apicast-operator.v0.2.0 - (label=v4.5,max=not set,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    amq7-cert-manager-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • 1.x
    • + +
    +
    +
      + +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[alpha 1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    performance-addon-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.4
    • + +
    • 4.6
    • + +
    • 4.5
    • + +
    • 4.7
    • + +
    +
    +
      + +
    • performance-addon-operator.v4.4.1 - (label=v4.5,max=4.8,channels=[4.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.5.4 - (label=v4.5,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • performance-addon-operator.v4.6.3 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.7.5 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    clusterresourceoverride +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.7
    • + +
    • 4.6
    • + +
    +
    +
      + +
    • clusterresourceoverride-operator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • clusterresourceoverride-operator.4.7.0-202107292319 - (label==v4.7,max=4.8,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhpam-kogito-operator +
      + +
    +
    +
      + +
    • 7.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    windows-machine-config-operator +
      + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • windows-machine-config-operator.v2.0.0 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v2.0.1 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v2.0.2 - (label==v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • windows-machine-config-operator.v2.0.3 - (label==v4.7,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-online-7.7.x
    • + +
    • 7.9.x
    • + +
    • fuse-online-v7.8.x
    • + +
    +
    +
      + +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cincinnati-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • v1
    • + +
    +
    +
      + +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    submariner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha-0.8
    • + +
    • alpha
    • + +
    • alpha-0.9
    • + +
    +
    +
      + +
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • submariner.v0.8.2 - (label=v4.5-v4.7,max=not set,channels=[alpha-0.8],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mtv-operator +
      + +
    +
    +
      + +
    • release-v2.0.0
    • + +
    +
    +
      + +
    +
    +
      + +
    • mtv-operator.2.0.0 - (label=v4.7,max=not set,channels=[release-v2.0.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ptp-operator +
      + +
    +
    +
      + +
    • 4.6
    • + +
    • 4.7
    • + +
    +
    +
      + +
    +
    +
      + +
    • ptp-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • ptp-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    costmanagement-metrics-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-logging +
      + +
    +
    +
      + +
    • stable
    • + +
    • 4.6
    • + +
    • 5.0
    • + +
    • stable-5.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • cluster-logging.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cluster-logging.5.1.1-36 - (label=v4.7,max=not set,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    fuse-apicurito +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.9.x
    • + +
    +
    +
      + +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    datagrid +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 8.1.x
    • + +
    • 8.2.x
    • + +
    • 8.0.x
    • + +
    +
    +
      + +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-kube-descheduler-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    • 4.7
    • + +
    +
    +
      + +
    • clusterkubedescheduleroperator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • clusterkubedescheduleroperator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    integration-operator +
      + +
    +
    +
      + +
    • 1.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    sriov-network-operator +
      + +
    +
    +
      + +
    • 4.7
    • + +
    +
    +
      + +
    +
    +
      + +
    • sriov-network-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 7.8.x
    • + +
    • current
    • + +
    • 7.x
    • + +
    • current-76
    • + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x current-76],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[7.8.x current 7.x current-76 alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-4 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x current 7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-1 - (label=v4.5-v4.7,max=4.8,channels=[7.8.x current 7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vertical-pod-autoscaler +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.7
    • + +
    +
    +
      + +
    • verticalpodautoscaler.4.7.0-202107292319 - (label==v4.7,max=4.8,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    container-security-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rh-service-binding-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    • preview
    • + +
    +
    +
      + +
    +
    +
      + +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    service-telemetry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.2
    • + +
    • stable-1.3
    • + +
    +
    +
      + +
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • service-telemetry-operator.v1.3.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhmtv-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v2.0.0-beta
    • + +
    +
    +
      + +
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    servicemeshoperator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 1.0
    • + +
    +
    +
      + +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[stable 1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhsso-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    awx-resource-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-0.1
    • + +
    +
    +
      + +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    quay-bridge-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq7-interconnect-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.2.0
    • + +
    • 1.10.x
    • + +
    +
    +
      + +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ansible-automation-platform-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • early-access
    • + +
    +
    +
      + +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubernetes-nmstate-operator +
      + +
    +
    +
      + +
    • 4.7
    • + +
    +
    +
      + +
    +
    +
      + +
    • kubernetes-nmstate-operator.4.7.0-202108041522 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.6 - (label==v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    compliance-operator +
      + +
    +
    +
      + +
    • 4.7
    • + +
    • release-0.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker-lts +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    smart-gateway-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.3
    • + +
    • stable-1.2
    • + +
    +
    +
      + +
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • smart-gateway-operator.v3.0.1627467117 - (label=v4.6-v4.7,max=4.8,channels=[stable-1.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mtc-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v1.4
    • + +
    • release-v1.5
    • + +
    • release-v1.3
    • + +
    • release-v1.2
    • + +
    +
    +
      + +
    • mtc-operator.v1.2.5 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5 release-v1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.2 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.3 release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.7 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.4 release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.1 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    3scale-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.8
    • + +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    • threescale-2.7
    • + +
    • threescale-2.6
    • + +
    +
    +
      + +
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.6 threescale-2.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10 threescale-2.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gatekeeper-operator-product +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    skupper-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    codeready-workspaces +
      + +
    • CRD
    • + +
    +
    +
      + +
    • latest
    • + +
    +
    +
      + +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    businessautomation-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    klusterlet-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.2
    • + +
    • release-2.3
    • + +
    +
    +
      + +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    local-storage-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    • 4.7
    • + +
    +
    +
      + +
    • local-storage-operator.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • local-storage-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    red-hat-camel-k +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.4.x
    • + +
    • techpreview
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    file-integrity-operator +
      + +
    +
    +
      + +
    • 4.7
    • + +
    • release-0.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    serverless-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 4.5
    • + +
    • 4.6
    • + +
    • 4.7
    • + +
    • 4.4
    • + +
    • 4.3
    • + +
    +
    +
      + +
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[stable 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[stable 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[stable 4.6 4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[stable 4.4 4.5 4.6 4.7 4.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[stable 4.5 4.6 4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    eap +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    nfd +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    • 4.7
    • + +
    +
    +
      + +
    • nfd.4.6.0-202103010126.p0 - (label=v4.6,max=4.8,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • nfd.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-pipelines-operator-rh +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    • ocp-4.6
    • + +
    • ocp-4.5
    • + +
    • ocp-4.4
    • + +
    +
    +
      + +
    • openshift-pipelines-operator.v1.0.1 - (label=v4.5,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5 ocp-4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-pipelines-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6 ocp-4.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable ocp-4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.1 - (label=v4.7,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-console +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-console-7.7.x
    • + +
    +
    +
      + +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    jaeger-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.20-stable
    • + +
    • stable
    • + +
    • 1.24-stable
    • + +
    • tech-preview
    • + +
    • 1.17-stable
    • + +
    +
    +
      + +
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.5 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[stable 1.24-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    jws-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-gitops-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • preview
    • + +
    +
    +
      + +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq-broker-rhel8 +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    +
    +
      + +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-4-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-1-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.2-opr-2-rhel8 - (label=v4.5-v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    advanced-cluster-management +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.2
    • + +
    • release-2.1
    • + +
    • release-2.0
    • + +
    • release-2.3
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.10 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.7 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.8 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.9 - (label=v4.6-v4.7,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rhacs-operator +
      + +
    +
    +
      + +
    • rhacs-3.64
    • + +
    • latest
    • + +
    • rhacs-3.62
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest rhacs-3.62],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    elasticsearch-operator +
      + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    • stable-5.1
    • + +
    • 4.6
    • + +
    • 5.0
    • + +
    +
    +
      + +
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.1.1-36 - (label=v4.7,max=4.8,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    web-terminal +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    metering-ocp +
      + +
    +
    +
      + +
    • 4.7
    • + +
    • 4.6
    • + +
    +
    +
      + +
    +
    +
      + +
    • metering-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • metering-operator.4.7.0-202107292319 - (label==v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kiali-ossm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq-streams +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • amq-streams-1.x
    • + +
    • amq-streams-1.8.x
    • + +
    • amq-streams-1.7.x
    • + +
    • amq-streams-1.6.x
    • + +
    +
    +
      + +
    • amqstreams.v1.5.4 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.0 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.1 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.2 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x amq-streams-1.6.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[stable amq-streams-1.x amq-streams-1.7.x amq-streams-1.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[stable amq-streams-1.x amq-streams-1.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ocs-operator +
      + +
    • ClusterRole
    • + +
    • ClusterRoleBinding
    • + +
    • Role
    • + +
    • RoleBinding
    • + +
    • CRD
    • + +
    +
    +
      + +
    • stable-4.7
    • + +
    • stable-4.6
    • + +
    • eus-4.6
    • + +
    +
    +
      + +
    • ocs-operator.v4.6.6 - (label=v4.5-v4.7,max=4.8,channels=[stable-4.6 eus-4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • ocs-operator.v4.7.2 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ocs-operator.v4.7.3 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-jenkins-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    quay-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.4
    • + +
    • quay-v3.5
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    +
    service-registry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 2.0.x
    • + +
    • 2.x
    • + +
    • serviceregistry-1.1
    • + +
    • serviceregistry-1.0
    • + +
    • serviceregistry-1
    • + +
    +
    +
      + +
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1.0 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.0.x 2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
    +
    + + + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html new file mode 100644 index 00000000..5f036bdb --- /dev/null +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-06.html @@ -0,0 +1,3124 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-operator-index:v4.8
    • +
    • Image ID: sha256:ed2bbf7b5139292549a2349cd5c1e1c4d5247644a3cd69dae5dd5a308c763a61
    • +
    • Image Created at: 2021-09-03T05:21:17.187848149Z
    • +
    • From JSON report generated at: 2021-09-04
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    datagrid +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 8.1.x
    • + +
    • 8.2.x
    • + +
    • 8.0.x
    • + +
    +
    +
      + +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • CRD
    • + +
    +
    +
      + +
    +
    +
      + +
    • clusterresourceoverride-operator.4.8.0-202107291502 - (label==v4.8,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.17.9 - (label=v4.5,v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • clusterkubedescheduleroperator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • devworkspace-operator.v0.8.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • kubernetes-nmstate-operator.4.8.0-202108041625 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • local-storage-operator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • metering-operator.4.8.0-202108061927 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • node-feature-discovery-operator.v4.8.0 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.8.0 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • ptp-operator.4.8.0-202108090903 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.5.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • sriov-network-operator.4.8.0-202108051934 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • verticalpodautoscaler.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    awx-resource-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-0.1
    • + +
    +
    +
      + +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v4.8.0 - (label=v4.8,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v4.8.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    metering-ocp +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • metering-operator.4.8.0-202108181015 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    3scale-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.10
    • + +
    • threescale-2.7
    • + +
    • threescale-2.9
    • + +
    • threescale-2.8
    • + +
    • threescale-2.6
    • + +
    +
    +
      + +
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.6 threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    serverless-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.6
    • + +
    • 4.7
    • + +
    • stable
    • + +
    • 4.5
    • + +
    • 4.3
    • + +
    • 4.4
    • + +
    +
    +
      + +
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[4.6 4.7 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[4.6 4.7 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[4.6 4.7 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5 4.3 4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[4.6 4.7 stable 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    mtc-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v1.5
    • + +
    • release-v1.2
    • + +
    • release-v1.3
    • + +
    • release-v1.4
    • + +
    +
    +
      + +
    • mtc-operator.v1.2.5 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.2 release-v1.3 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.1 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.3.2 - (label=v4.5,v4.6,max=4.8,channels=[release-v1.5 release-v1.3 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.6 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5 release-v1.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.4.7 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5 release-v1.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.0 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • mtc-operator.v1.5.1 - (label=v4.5-v4.8,max="4.8",channels=[release-v1.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    businessautomation-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    nfd +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • nfd.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    clusterresourceoverride +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    • clusterresourceoverride-operator.4.8.0-202108130208 - (label==v4.8,max=4.8,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    codeready-workspaces +
      + +
    • CRD
    • + +
    +
    +
      + +
    • latest
    • + +
    +
    +
      + +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-streams +
      + +
    • CRD
    • + +
    +
    +
      + +
    • amq-streams-1.x
    • + +
    • amq-streams-1.8.x
    • + +
    • stable
    • + +
    • amq-streams-1.7.x
    • + +
    +
    +
      + +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[amq-streams-1.x amq-streams-1.8.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    gatekeeper-operator-product +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    apicast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    • threescale-2.8
    • + +
    +
    +
      + +
    • apicast-operator.v0.2.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mtv-operator +
      + +
    +
    +
      + +
    • release-v2.1.0
    • + +
    • release-v2.0.0
    • + +
    +
    +
      + +
    +
    +
      + +
    • mtv-operator.2.0.0 - (label=v4.7,max=not set,channels=[release-v2.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • mtv-operator.2.1.0 - (label=v4.8,max=not set,channels=[release-v2.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    servicemeshoperator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.0
    • + +
    • stable
    • + +
    +
    +
      + +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    container-security-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.4
    • + +
    • quay-v3.5
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ocs-operator +
      + +
    • ClusterRole
    • + +
    • ClusterRoleBinding
    • + +
    • Role
    • + +
    • RoleBinding
    • + +
    +
    +
      + +
    • stable-4.8
    • + +
    • stable-4.7
    • + +
    +
    +
      + +
    • ocs-operator.v4.7.2 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • ocs-operator.v4.7.3 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • ocs-operator.v4.8.0 - (label=v4.8-v4.9,max=4.8,channels=[stable-4.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ocs-operator.v4.8.1 - (label=v4.8-v4.9,max=4.8,channels=[stable-4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vertical-pod-autoscaler +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • verticalpodautoscaler.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    integration-operator +
      + +
    +
    +
      + +
    • 1.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    smart-gateway-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.2
    • + +
    +
    +
      + +
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    klusterlet-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.3
    • + +
    • release-2.2
    • + +
    +
    +
      + +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-console +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-console-7.7.x
    • + +
    +
    +
      + +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    advanced-cluster-management +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.2
    • + +
    • release-2.0
    • + +
    • release-2.1
    • + +
    • release-2.3
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    service-telemetry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.2
    • + +
    +
    +
      + +
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    costmanagement-metrics-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-jenkins-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jaeger-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.17-stable
    • + +
    • stable
    • + +
    • 1.24-stable
    • + +
    • 1.20-stable
    • + +
    • tech-preview
    • + +
    +
    +
      + +
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.5 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[stable 1.24-stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rhpam-kogito-operator +
      + +
    +
    +
      + +
    • 7.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker-rhel8 +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    +
    +
      + +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhmtv-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v2.0.0-beta
    • + +
    +
    +
      + +
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    devworkspace-operator +
      + +
    +
    +
      + +
    • fast
    • + +
    +
    +
      + +
    +
    +
      + +
    • devworkspace-operator.v0.9.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    web-terminal +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fast
    • + +
    • alpha
    • + +
    +
    +
      + +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[fast alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • web-terminal.v1.3.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    quay-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eap +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq7-cert-manager-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.x
    • + +
    • alpha
    • + +
    +
    +
      + +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    performance-addon-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.4
    • + +
    • 4.8
    • + +
    • 4.5
    • + +
    • 4.7
    • + +
    • 4.6
    • + +
    +
    +
      + +
    • performance-addon-operator.v4.4.1 - (label=v4.5,max=4.8,channels=[4.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.5.4 - (label=v4.5,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • performance-addon-operator.v4.6.3 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.7.3 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • performance-addon-operator.v4.8.1 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rhacs-operator +
      + +
    +
    +
      + +
    • rhacs-3.64
    • + +
    • latest
    • + +
    • rhacs-3.62
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[rhacs-3.62 rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[rhacs-3.64 latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    skupper-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    windows-machine-config-operator +
      + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    local-storage-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • local-storage-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kiali-ossm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.9 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sriov-network-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • sriov-network-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rh-service-binding-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    • preview
    • + +
    +
    +
      + +
    +
    +
      + +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    elasticsearch-operator +
      + +
    • ClusterRole
    • + +
    +
    +
      + +
    • 5.0
    • + +
    • stable
    • + +
    • 4.6
    • + +
    • stable-5.1
    • + +
    +
    +
      + +
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.1.1-36 - (label=v4.7,max=4.8,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    amq-broker-lts +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-gitops-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • preview
    • + +
    +
    +
      + +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq7-interconnect-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.2.0
    • + +
    • 1.10.x
    • + +
    +
    +
      + +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    file-integrity-operator +
      + +
    +
    +
      + +
    • 4.7
    • + +
    • release-0.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cincinnati-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • v1
    • + +
    +
    +
      + +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhsso-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    sandboxed-containers-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview-1.0
    • + +
    +
    +
      + +
    • sandboxed-containers-operator.v1.0.0 - (label==v4.8,max=4.8,channels=[preview-1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-apicurito +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.9.x
    • + +
    +
    +
      + +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    red-hat-camel-k +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.4.x
    • + +
    • techpreview
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubernetes-nmstate-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • kubernetes-nmstate-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker +
      + +
    • CRD
    • + +
    +
    +
      + +
    • current
    • + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    • current-76
    • + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current current-76 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current current-76 alpha 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ansible-automation-platform-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • early-access
    • + +
    +
    +
      + +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    quay-bridge-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.4
    • + +
    • quay-v3.5
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.6 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    submariner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    • alpha-0.9
    • + +
    +
    +
      + +
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-online-v7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-online-7.7.x
    • + +
    +
    +
      + +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-kube-descheduler-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • clusterkubedescheduleroperator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    jws-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-pipelines-operator-rh +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.5.1 - (label=v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    compliance-operator +
      + +
    +
    +
      + +
    • 4.7
    • + +
    • release-0.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ptp-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • ptp-operator.4.8.0-202108130208 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    service-registry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 2.x
    • + +
    • 2.0.x
    • + +
    • serviceregistry-1
    • + +
    • serviceregistry-1.1
    • + +
    • serviceregistry-1.0
    • + +
    +
    +
      + +
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.0 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1 serviceregistry-1.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    poison-pill-manager +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • poison-pill.v0.1.2 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-logging +
      + +
    +
    +
      + +
    • 4.6
    • + +
    • 5.0
    • + +
    • stable
    • + +
    • stable-5.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • cluster-logging.5.0.7-27 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cluster-logging.5.1.1-36 - (label=v4.7,max=not set,channels=[stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
    +
    + + + diff --git a/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html new file mode 100644 index 00000000..34904214 --- /dev/null +++ b/testdata/reports/redhat_redhat_operator_index/dashboards/maxocp_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-06.html @@ -0,0 +1,2994 @@ + + + + + + + Deprecated API(s) Dashboard + + + + + + + + + + + + + + + + + + + + + + +
    + +

    Max OCP version for 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
    +
      +
    • Image name: registry.redhat.io/redhat/redhat-operator-index:v4.9
    • +
    • Image ID: sha256:26d7b1a57e50cfa5a2a7a18d3d3baf06310ed9950581aef6181bb65a0557e648
    • +
    • Image Created at: 2021-09-03T05:23:46.862995153Z
    • +
    • From JSON report generated at: 2021-09-05
    • +
    +
    + +
    +
    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?
    +
      +
    • Check Deprecated API Migration Guide (v1.22) and ensure that your projects have been migrated and are not using any deprecated/removed API(s)
    • +
    • Ensure that any distribution which requires any deprecated API(s) in the OCP catalogs are configured with the Max OpenShift Version compatible (`olm.openShiftMaxVersion`) so it will only be distributed on OCP version(s) <= 4.8. Also, control which version the bundle is deployed to from OLM via the annotation/label `com.redhat.openshift.versions`. More info see: OKD/OpenShift Catalogs criteria and options
    • +
    • OpenShift 4.8 introduces two new alerts that fire when an API that will be removed in the next release is in use. Check the event alerts of your Operators running on 4.8 and ensure that you do not find any warning about these API(s) still being used by it
    • +
    +
    3. What does it mean for a package to be in red, amber or green?
    +
      +
    • (Green) Complying: these are packages that has all bundles which uses the removed APIs in 1.22 with max ocp version set <=4.8
    • +
    • (Amber) Not complying: these are the packages that we could find at least one scenario missing the max ocp version when should have
    • +
    +
    + +
    +
    Missing Max OCP Version
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    datagrid +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 8.1.x
    • + +
    • 8.2.x
    • + +
    • 8.0.x
    • + +
    +
    +
      + +
    • datagrid-operator.v8.0.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.0.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x 8.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.0 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.1 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.2 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.3 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.4 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.5 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.6 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.1.7 - (label=v4.5,v4.6,max=4.8,channels=[8.1.x 8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.0 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.1 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.2 - (label=v4.5,v4.6,max=4.8,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • datagrid-operator.v8.2.3 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • datagrid-operator.v8.2.4 - (label=v4.5,v4.6,max=not set,channels=[8.2.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    servicemeshoperator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.0
    • + +
    • stable
    • + +
    +
    +
      + +
    • servicemeshoperator.v1.0.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.10 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.0.9 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.0 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.1 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.10 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.2.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.3 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.4.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.5.2 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.6 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.7 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.8 - (label=v4.5,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v1.1.9 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.5.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.6.2 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[1.0 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • servicemeshoperator.v2.0.7.1 - (label=v4.5,v4.6,max=not set,channels=[1.0 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
      + +
    • CRD
    • + +
    +
    +
      + +
    +
    +
      + +
    • jaeger-operator.v1.24.0 - (label=v4.6,max=4.8,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • compliance-operator.v0.1.35 - (label=v4.6,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • devworkspace-operator.v0.8.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.5.0 - (label=v4.8,max=not set,channels=[],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
    + +
    +
    Have Max OCP version when required or does not need it at all
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    costmanagement-metrics-operator +
      + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • costmanagement-metrics-operator.1.0.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • costmanagement-metrics-operator.1.1.0 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rhsso-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • rhsso-operator.7.4.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhsso-operator.7.4.8 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cluster-logging +
      + +
    +
    +
      + +
    • stable
    • + +
    • stable-5.1
    • + +
    • 4.6
    • + +
    • 5.0
    • + +
    +
    +
      + +
    +
    +
      + +
    • cluster-logging.5.0.6-40 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • cluster-logging.5.1.0-75 - (label=v4.7,max=not set,channels=[stable stable-5.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • clusterlogging.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    ptp-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • ptp-operator.4.8.0-202108090903 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-pipelines-operator-rh +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    • redhat-openshift-pipelines-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • redhat-openshift-pipelines.v1.3.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.3.1 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.4.0 - (label=v4.7,max=not set,channels=[preview stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • redhat-openshift-pipelines.v1.5.1 - (label=v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kiali-ossm +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • kiali-operator.v1.0.10 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.5 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.6 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.8 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.0.9 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.11 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.12 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.13 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.14 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.15 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.16 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.12.7 - (label=v4.5,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.5 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.6 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.7 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kiali-operator.v1.24.8 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq-broker-rhel8 +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    +
    +
      + +
    • amq-broker-operator.v7.8.1-opr-3-rhel8 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    amq-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • amq-online.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.4.4 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.5.3 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.6.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amq-online.1.7.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-online.1.7.1-0.1628610187.p - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    jws-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jws-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • jws-operator.v1.0.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    eap +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • eap-operator.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • eap-operator.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    service-telemetry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.2
    • + +
    +
    +
      + +
    • service-telemetry-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    codeready-workspaces +
      + +
    • CRD
    • + +
    +
    +
      + +
    • latest
    • + +
    +
    +
      + +
    • crwoperator.v2.0.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.1.1 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.2.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.3.0 - (label=v4.5,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.4.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.5.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.6.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.7.1 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.8.0 - (label=v4.5,v4.6,max=4.8,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • crwoperator.v2.10.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.10.1 - (label=v4.6,max=not set,channels=[latest],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • crwoperator.v2.9.0 - (label=v4.6,max=not set,channels=[latest],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq7-cert-manager-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.x
    • + +
    • alpha
    • + +
    +
    +
      + +
    • amq7-cert-manager.v1.0.1 - (label=v4.5-v4.8,max=4.8,channels=[1.x alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    devworkspace-operator +
      + +
    +
    +
      + +
    • fast
    • + +
    +
    +
      + +
    +
    +
      + +
    • devworkspace-operator.v0.9.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker-lts +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.9.2 - (label=v4.5,max=4.8,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.3 - (label=v4.5,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    gatekeeper-operator-product +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • gatekeeper-operator-product.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1624366317.p - (label=v4.6-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • gatekeeper-operator-product.v0.1.2-0.1627931308 - (label=v4.6-v4.8,max="4.8",channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    openshift-jenkins-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    • jenkins-operator.0.7.1 - (label=v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    mtv-operator +
      + +
    +
    +
      + +
    • release-v2.1.0
    • + +
    • release-v2.0.0
    • + +
    +
    +
      + +
    +
    +
      + +
    • mtv-operator.2.0.0 - (label=v4.7,max=not set,channels=[release-v2.0.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • mtv-operator.2.1.0 - (label=v4.8,max=not set,channels=[release-v2.1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    smart-gateway-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable-1.2
    • + +
    +
    +
      + +
    • smart-gateway-operator.v2.2.0 - (label=v4.5,max=4.8,channels=[stable-1.2],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    ansible-automation-platform-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • early-access
    • + +
    +
    +
      + +
    • ansible-automation-platform-operator.v2.0.0 - (label=v4.6-v4.8,max=4.8,channels=[early-access],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    cincinnati-operator +
      + +
    • CRD
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • v1
    • + +
    +
    +
      + +
    • update-service-operator.v4.6.0 - (label=v4.6,max=4.8,channels=[v1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhmtv-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-v2.0.0-beta
    • + +
    +
    +
      + +
    • rhmtv-operator.2.0.0-beta.1 - (label=v4.7,max=4.8,channels=[release-v2.0.0-beta],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    rhacs-operator +
      + +
    +
    +
      + +
    • latest
    • + +
    • rhacs-3.64
    • + +
    • rhacs-3.62
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhacs-operator.v3.62.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.62 rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.62.1 - (label=v4.6,max=not set,channels=[rhacs-3.62],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • rhacs-operator.v3.63.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.0 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhacs-operator.v3.64.1 - (label=v4.6,max=not set,channels=[latest rhacs-3.64],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-online +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 7.9.x
    • + +
    • fuse-online-v7.8.x
    • + +
    • fuse-online-7.7.x
    • + +
    +
    +
      + +
    • fuse-online-operator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-online-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-online-operator.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-online-v7.8.x 7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-online.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    openshift-gitops-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • preview
    • + +
    +
    +
      + +
    • openshift-gitops-operator.v1.0.0 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.0.1 - (label=v4.6,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.0 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.1 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.1.2 - (label=v4.7,max=4.8,channels=[stable preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • openshift-gitops-operator.v1.2.0 - (label=v4.7,max=4.8,channels=[stable preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    integration-operator +
      + +
    +
    +
      + +
    • 1.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • integration-operator.v1.0.0 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.1 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.4 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.5-0.1627560676.p - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.0.6 - (label=v4.6,max=not set,channels=[1.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • integration-operator.v1.1.0 - (label=v4.6,max=not set,channels=[1.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-apicurito +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-apicurito-7.7.x
    • + +
    • fuse-apicurito-7.8.x
    • + +
    • fuse-apicurito-7.9.x
    • + +
    +
    +
      + +
    • apicuritooperator.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.8.1 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-apicurito.v7.9.0 - (label=v4.6,max=4.8,channels=[fuse-apicurito-7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    apicast-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.8
    • + +
    • threescale-2.9
    • + +
    • threescale-2.10
    • + +
    +
    +
      + +
    • apicast-operator.v0.2.0 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.1 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.2 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.3 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.2.4 - (label=v4.5,max=4.8,channels=[threescale-2.8 threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.9 threescale-2.10],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.3.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.9 threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • apicast-operator.v0.4.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    serverless-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 4.7
    • + +
    • 4.6
    • + +
    • 4.5
    • + +
    • 4.3
    • + +
    • 4.4
    • + +
    +
    +
      + +
    • serverless-operator.v1.0.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.1.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.0 - (label=v4.5,v4.6,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.10.1 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.10.2 - (label=v4.5,v4.6,max=4.8,channels=[4.5],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • serverless-operator.v1.11.0 - (label=v4.6,max=4.8,channels=[stable 4.7 4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.12.0 - (label=v4.6,max=4.8,channels=[stable 4.7 4.6],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.13.0 - (label=v4.6,v4.7,max=4.8,channels=[stable 4.7 4.6],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.14.0 - (label=v4.6,v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.2.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.3.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.4.1 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.5.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.6.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.1 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.7.2 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5 4.3 4.4],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.8.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.9.0 - (label=v4.5,max=4.8,channels=[stable 4.7 4.6 4.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • serverless-operator.v1.15.0 - (label=v4.6,v4.7,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • serverless-operator.v1.16.0 - (label=v4.6-v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    3scale-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • threescale-2.6
    • + +
    • threescale-2.10
    • + +
    • threescale-2.7
    • + +
    • threescale-2.9
    • + +
    • threescale-2.8
    • + +
    +
    +
      + +
    • 3scale-operator.v0.3.0 - (label=v4.5,max=4.8,channels=[threescale-2.6 threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.4.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.7 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.1 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.2 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.3 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.4 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.5.5 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9 threescale-2.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.0 - (label=v4.5,max=4.8,channels=[threescale-2.10 threescale-2.9],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.6.1 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10 threescale-2.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • 3scale-operator.v0.7.0 - (label=v4.5,v4.6,max=4.8,channels=[threescale-2.10],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    local-storage-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • local-storage-operator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    sandboxed-containers-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • preview-1.0
    • + +
    +
    +
      + +
    • sandboxed-containers-operator.v1.0.0 - (label==v4.8,max=4.8,channels=[preview-1.0],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    jaeger-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.17-stable
    • + +
    • tech-preview
    • + +
    • 1.24-stable
    • + +
    • stable
    • + +
    • 1.20-stable
    • + +
    +
    +
      + +
    • jaeger-operator.v1.17.10 - (label=v4.5,v4.6,max=4.8,channels=[1.17-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v1.20.4 - (label=v4.6,max=4.8,channels=[1.20-stable],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • jaeger-operator.v2.0.0-tp.1 - (label=v4.6,max=4.8,channels=[tech-preview],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • jaeger-operator.v1.24.1 - (label=v4.6,max=not set,channels=[1.24-stable stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    nfd +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • node-feature-discovery-operator.v4.8.0 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    submariner +
      + +
    • CRD
    • + +
    +
    +
      + +
    • alpha-0.9
    • + +
    • alpha
    • + +
    +
    +
      + +
    • submariner.v0.8.1 - (label=v4.5,v4.6,max=4.8,channels=[alpha],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • submariner.v0.9.0 - (label=v4.6,max=not set,channels=[alpha-0.9],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    fuse-console +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fuse-console-7.8.x
    • + +
    • 7.9.x
    • + +
    • fuse-console-7.7.x
    • + +
    +
    +
      + +
    • fuse-console.v7.7.1 - (label=v4.6,max=4.8,channels=[fuse-console-7.7.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • fuse-console.v7.8.2 - (label=v4.6,max=4.8,channels=[fuse-console-7.8.x],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • fuse-console.v7.9.0 - (label=v4.6,max=not set,channels=[7.9.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    red-hat-camel-k +
      + +
    • CRD
    • + +
    +
    +
      + +
    • techpreview
    • + +
    • 1.4.x
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.3.0 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.1 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.2 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-camel-k-operator.v1.3.3 - (label=v4.6,max=4.8,channels=[techpreview 1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • red-hat-camel-k-operator.v1.4.0 - (label=v4.6,max=not set,channels=[1.4.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rh-service-binding-operator +
      + +
    +
    +
      + +
    • beta
    • + +
    • preview
    • + +
    +
    +
      + +
    +
    +
      + +
    • service-binding-operator.v0.5.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.6.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.7.1 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.8.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.0 - (label=v4.6,max=not set,channels=[beta preview],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-binding-operator.v0.9.1 - (label=v4.6,max=not set,channels=[beta preview],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    compliance-operator +
      + +
    +
    +
      + +
    • 4.7
    • + +
    • release-0.1
    • + +
    +
    +
      + +
    +
    +
      + +
    • compliance-operator.v0.1.32 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • compliance-operator.v0.1.39 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    advanced-cluster-management +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.0
    • + +
    • release-2.1
    • + +
    • release-2.3
    • + +
    • release-2.2
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.0.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.10 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.7 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.8 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.0.9 - (label=v4.5,v4.6,max=4.8,channels=[release-2.0],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.4 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.5 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.1.6 - (label=v4.5,v4.6,max=4.8,channels=[release-2.1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.4 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • advanced-cluster-management.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • advanced-cluster-management.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    businessautomation-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    +
    +
      + +
    • businessautomation-operator.1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.3.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.1.4.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.0 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.8.1 - (label=v4.5,v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • businessautomation-operator.7.10.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.10.1-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.11.1-1 - (label=v4.6,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.0-2 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • businessautomation-operator.7.9.1-1 - (label=v4.6,max=not set,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    quay-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • quay-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • red-hat-quay.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    +
    clusterresourceoverride +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    • clusterresourceoverride-operator.4.8.0-202107291502 - (label==v4.8,max=4.8,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    kubernetes-nmstate-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • kubernetes-nmstate-operator.4.8.0-202108041625 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    rhpam-kogito-operator +
      + +
    +
    +
      + +
    • 7.x
    • + +
    +
    +
      + +
    +
    +
      + +
    • rhpam-kogito-operator.v7.11.0 - (label=v4.6,v4.7,max=not set,channels=[7.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • rhpam-kogito-operator.v7.11.1-1 - (label=v4.6,max=not set,channels=[7.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    klusterlet-product +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-2.2
    • + +
    • release-2.3
    • + +
    +
    +
      + +
    • klusterlet-product.v2.2.0 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.1 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.2 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.3 - (label=v4.5,v4.6,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.5 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.6 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • klusterlet-product.v2.2.7 - (label=v4.6-v4.8,max=4.8,channels=[release-2.2],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • klusterlet-product.v2.3.0 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • klusterlet-product.v2.3.1 - (label=v4.6-v4.9,max=not set,channels=[release-2.3],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-streams +
      + +
    • CRD
    • + +
    +
    +
      + +
    • amq-streams-1.x
    • + +
    • amq-streams-1.8.x
    • + +
    • amq-streams-1.7.x
    • + +
    • stable
    • + +
    +
    +
      + +
    • amqstreams.v1.6.3 - (label=v4.5,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.0 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.1 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.2 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amqstreams.v1.7.3 - (label=v4.6,max=4.8,channels=[amq-streams-1.x amq-streams-1.8.x amq-streams-1.7.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • amqstreams.v1.8.0 - (label=v4.6,max="4.9",channels=[amq-streams-1.x amq-streams-1.8.x stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    service-registry-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • serviceregistry-1.0
    • + +
    • serviceregistry-1.1
    • + +
    • serviceregistry-1
    • + +
    • 2.x
    • + +
    • 2.0.x
    • + +
    +
    +
      + +
    • service-registry-operator.v1.0.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.0.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.0 serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.0 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.1 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.2 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.3 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • service-registry-operator.v1.1.4 - (label=v4.5,v4.6,max=4.8,channels=[serviceregistry-1.1 serviceregistry-1],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    +
      + +
    • service-registry-operator.v2.0.0 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.1 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • service-registry-operator.v2.0.2 - (label=v4.6,max=not set,channels=[2.x 2.0.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    kubevirt-hyperconverged +
      + +
    • CRD
    • + +
    +
    +
      + +
    • stable
    • + +
    • 2.4
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v2.3.0 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.4.0 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.4.1 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.4.2 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.4.3 - (label=v4.5,max=4.8,channels=[2.4 stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.4.4 - (label=v4.5,max=4.8,channels=[2.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.4.5 - (label=v4.5,max=4.8,channels=[2.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.0 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.1 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.2 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.3 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.5.4 - (label=v4.6,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.0 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.1 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.2 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.3 - (label=v4.7,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.4 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v2.6.5 - (label=v4.7-v4.8,max=4.8,channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • kubevirt-hyperconverged-operator.v4.8.0 - (label=v4.8,max="4.8",channels=[stable],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • kubevirt-hyperconverged-operator.v4.8.1 - (label=v4.8,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    skupper-operator +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • skupper-operator.v0.6.0 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.6.1 - (label=v4.6,max=not set,channels=[alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • skupper-operator.v0.7.0 - (label=v4.6,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq7-interconnect-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • 1.2.0
    • + +
    • 1.10.x
    • + +
    +
    +
      + +
    • amq7-interconnect-operator.v1.10.1 - (label=v4.5-v4.8,max=4.8,channels=[1.2.0 1.10.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.0 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.1 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.2 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.3 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq7-interconnect-operator.v1.2.4 - (label=v4.5,v4.6,max=4.8,channels=[1.2.0 1.10.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    metering-ocp +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • metering-operator.4.8.0-202108061927 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    web-terminal +
      + +
    • CRD
    • + +
    +
    +
      + +
    • fast
    • + +
    • alpha
    • + +
    +
    +
      + +
    • web-terminal.v1.0.1 - (label=v4.5,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.1.0 - (label=v4.6,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.0 - (label=v4.7,max=4.8,channels=[fast alpha],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • web-terminal.v1.2.1 - (label=v4.7,max=4.8,channels=[fast alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • web-terminal.v1.3.0 - (label=v4.8,max=not set,channels=[fast],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    awx-resource-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • release-0.1
    • + +
    +
    +
      + +
    • awx-resource-operator.v0.1.0 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • awx-resource-operator.v0.1.1 - (label=v4.5,v4.6,max=4.8,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    windows-machine-config-operator +
      + +
    +
    +
      + +
    • preview
    • + +
    • stable
    • + +
    +
    +
      + +
    +
    +
      + +
    • windows-machine-config-operator.v3.0.0 - (label==v4.8,max=not set,channels=[preview stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    ocs-operator +
      + +
    • ClusterRoleBinding
    • + +
    • Role
    • + +
    • RoleBinding
    • + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable-4.7
    • + +
    • stable-4.8
    • + +
    +
    +
      + +
    • ocs-operator.v4.7.2 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • ocs-operator.v4.7.3 - (label=v4.7-v4.8,max=4.8,channels=[stable-4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • ocs-operator.v4.8.0 - (label=v4.8-v4.9,max=4.8,channels=[stable-4.8],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • ocs-operator.v4.8.1 - (label=v4.8-v4.9,max=4.8,channels=[stable-4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    poison-pill-manager +
      + +
    +
    +
      + +
    • alpha
    • + +
    +
    +
      + +
    +
    +
      + +
    • poison-pill.v0.1.2 - (label=v4.8,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    cluster-kube-descheduler-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • clusterkubedescheduleroperator.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    elasticsearch-operator +
      + +
    • ClusterRole
    • + +
    +
    +
      + +
    • stable-5.1
    • + +
    • stable
    • + +
    • 5.0
    • + +
    • 4.6
    • + +
    +
    +
      + +
    • elasticsearch-operator.5.1.0-96 - (label=v4.7,max=4.8,channels=[stable-5.1 stable],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    • elasticsearch-operator.4.6.0-202103010126.p0 - (label=v4.6,max=not set,channels=[4.6],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • elasticsearch-operator.5.0.6-40 - (label=v4.7,max=not set,channels=[5.0],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    +
    sriov-network-operator +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • sriov-network-operator.4.8.0-202108051934 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    amq-broker +
      + +
    • CRD
    • + +
    +
    +
      + +
    • current
    • + +
    • current-76
    • + +
    • 7.x
    • + +
    • 7.8.x
    • + +
    • alpha
    • + +
    +
    +
      + +
    • amq-broker-operator.v0.13.0 - (label=v4.5,max=4.8,channels=[current current-76 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.15.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.17.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.18.0 - (label=v4.5,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.19.0 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v0.9.1 - (label=v4.5,max=4.8,channels=[current current-76 alpha 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    • amq-broker-operator.v7.8.1-opr-3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[current 7.x 7.8.x],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    vertical-pod-autoscaler +
      + +
    +
    +
      + +
    • 4.8
    • + +
    +
    +
      + +
    +
    +
      + +
    • verticalpodautoscaler.4.8.0-202107291502 - (label==v4.8,max=not set,channels=[4.8],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    container-security-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.5
    • + +
    • quay-v3.4
    • + +
    • quay-v3.3
    • + +
    +
    +
      + +
    • container-security-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • container-security-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • container-security-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    file-integrity-operator +
      + +
    +
    +
      + +
    • release-0.1
    • + +
    • 4.7
    • + +
    +
    +
      + +
    +
    +
      + +
    • file-integrity-operator.v0.1.13 - (label=v4.7,max=not set,channels=[4.7],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • file-integrity-operator.v0.1.16 - (label=v4.6,max=not set,channels=[release-0.1],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    quay-bridge-operator +
      + +
    • CRD
    • + +
    +
    +
      + +
    • quay-v3.4
    • + +
    • quay-v3.3
    • + +
    • quay-v3.5
    • + +
    +
    +
      + +
    • quay-bridge-operator.v3.3.4 - (label=v4.5,v4.6,max=4.8,channels=[quay-v3.3],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.1 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.2 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.3 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.4 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.5 - (label=v4.5,v4.6,v4.7,max=4.8,channels=[quay-v3.4],head:NO,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.4.6 - (label=v4.5-v4.8,max=4.8,channels=[quay-v3.4],head:YES,defaultChannel:NO, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.1 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.2 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.3 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.4 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:NO,defaultChannel:YES, deprecated:NO)
    • + +
    • quay-bridge-operator.v3.5.5 - (label=v4.5,max=4.8,channels=[quay-v3.5],head:YES,defaultChannel:YES, deprecated:NO)
    • + +
    +
    +
      + +
    +
    +
    +
    + + +