diff --git a/.gitignore b/.gitignore index 215620ce..08db775c 100644 --- a/.gitignore +++ b/.gitignore @@ -27,5 +27,4 @@ **/testdata/reports/contacts/** **/testdata/reports/deprecate-all/** **/testdata/reports/deprecate-green/** -**/testdata/reports/deprecate-json/** **compare.json** \ No newline at end of file diff --git a/Makefile b/Makefile index 0c9290f2..f81c013d 100644 --- a/Makefile +++ b/Makefile @@ -101,37 +101,12 @@ generate-dashboards: ## todo: remove after 4.9-GA ## @Helpers - Deprecated implementations -.PHONY: all-deprecated ## run all reports that we are using to gathering the data to help out -all-deprecated: install - make generate-deprecate-green - make generate-deprecate-all - make generate-pkgs - make generate-ivs-report - -.PHONY: generate-deprecate-green ## This method should be remove soon. It is only an internal helper -generate-deprecate-green: install ## ensure that you have update the the date of the report. - go run ./hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go --image=testdata/reports/redhat_certified_operator_index/bundles_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-05.json - go run ./hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go --image=testdata/reports/redhat_redhat_marketplace_index/bundles_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-05.json - go run ./hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go --image=testdata/reports/redhat_redhat_operator_index/bundles_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-05.json - -.PHONY: generate-deprecate-all ## This method should be remove soon. It is only an internal helper -generate-deprecate-all: install ## ensure that you have update the the date of the report. - go run ./hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go --image=testdata/reports/redhat_certified_operator_index/bundles_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-05.json - go run ./hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go --image=testdata/reports/redhat_redhat_marketplace_index/bundles_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-05.json - go run ./hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go --image=testdata/reports/redhat_redhat_operator_index/bundles_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-05.json - -.PHONY: generate-pkgs ## This method should be remove soon. It is only an internal helper -generate-pkgs: ## ensure that you have update the the date of the report. - go run ./hack/scripts/packages/generate.go --image=testdata/reports/redhat_certified_operator_index/bundles_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-09-04.json - go run ./hack/scripts/packages/generate.go --image=testdata/reports/redhat_redhat_marketplace_index/bundles_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-09-04.json - go run ./hack/scripts/packages/generate.go --image=testdata/reports/redhat_redhat_operator_index/bundles_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-09-04.json - go run ./hack/scripts/packages/generate.go --image=testdata/reports/redhat_community_operator_index/bundles_registry.redhat.io_redhat_community_operator_index_v4.8_2021-09-05.json - go run ./hack/scripts/packages/generate.go --image=testdata/reports/redhat_certified_operator_index/bundles_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-05.json - go run ./hack/scripts/packages/generate.go --image=testdata/reports/redhat_redhat_marketplace_index/bundles_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-05.json - go run ./hack/scripts/packages/generate.go --image=testdata/reports/redhat_redhat_operator_index/bundles_registry.redhat.io_redhat_redhat_operator_index_v4.9_2021-09-05.json - -.PHONY: generate-ivs-report ## This method should be remove soon. It is only an internal helper -generate-ivs-report: ## ensure that you have the mongo json file and update the the date of the report. - go run hack/scripts/ivs-emails/generate.go --mongo=hack/scripts/ivs-emails/mongo-query-join-results-prod.json --image=testdata/reports/redhat_certified_operator_index/bundles_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-09-05.json - go run hack/scripts/ivs-emails/generate.go --mongo=hack/scripts/ivs-emails/mongo-query-join-results-prod.json --image=testdata/reports/redhat_redhat_marketplace_index/bundles_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-09-05.json +.PHONY: generate-helpers ## run all reports that we are using to gathering the data to help out +generate-helpers: + go run ./hack/scripts/generate_helpers.go +.PHONY: generate-all ## Generate all testdata +generate-all: + make generate-testdata + make generate-dashboards + make generate-helpers \ No newline at end of file diff --git a/cmd/custom/maxocp/template.go.tmpl b/cmd/custom/maxocp/template.go.tmpl index 7513699b..4e834033 100644 --- a/cmd/custom/maxocp/template.go.tmpl +++ b/cmd/custom/maxocp/template.go.tmpl @@ -78,7 +78,7 @@

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.

+

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 are missing the max ocp version as <= 4.8 because we can find the usage of these APIs in the manifests shipped.

Data from the image used
@@ -100,11 +100,6 @@
  • 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?
    -
    @@ -158,58 +153,6 @@
    - -
    -
    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/hack/grade/generate.go b/hack/grade/generate.go index 1f84a6a7..ba62c1fd 100644 --- a/hack/grade/generate.go +++ b/hack/grade/generate.go @@ -71,7 +71,8 @@ func main() { // Ignore the tag images 4.6 and 4.7 if strings.Contains(info.Name(), "v4.7") || strings.Contains(info.Name(), "v4.6") || - strings.Contains(info.Name(), "v4.8") { + strings.Contains(info.Name(), "v4.8") || + strings.Contains(info.Name(), "operatorhubio") { return nil } diff --git a/hack/report/bundles/generate.go b/hack/report/bundles/generate.go index 0ae91769..bd1df619 100644 --- a/hack/report/bundles/generate.go +++ b/hack/report/bundles/generate.go @@ -56,8 +56,6 @@ func main() { //"registry.redhat.io/redhat/community-operator-index:v4.9": "https://registry.redhat.io", "registry.redhat.io/redhat/redhat-marketplace-index:v4.9": "https://registry.redhat.io", "registry.redhat.io/redhat/redhat-operator-index:v4.9": "https://registry.redhat.io", - "registry.redhat.io/redhat/community-operator-index:v4.8": "https://registry.redhat.io", - "quay.io/operatorhubio/catalog:latest": "https://registry.connect.redhat.com", } indexReportKinds := []string{"bundles"} @@ -102,11 +100,18 @@ func main() { "registry.redhat.io/redhat/redhat-marketplace-index:v4.8": "https://registry.redhat.io", "registry.redhat.io/redhat/redhat-operator-index:v4.8": "https://registry.redhat.io", "registry.redhat.io/redhat/certified-operator-index:v4.8": "https://registry.redhat.io", + "registry.redhat.io/redhat/community-operator-index:v4.8": "https://registry.redhat.io", + "quay.io/operatorhubio/catalog:latest": "https://registry.connect.redhat.com", } indexReportKinds = []string{"bundles"} for image, registry := range images { reportPathName := filepath.Join(reportPath, hack.GetImageNameToCreateDir(image)) + + // Create the dir if does not exist + command := exec.Command("mkdir", reportPathName) + _, _ = pkg.RunCommand(command) + command = exec.Command("docker", "login", registry) _, err = pkg.RunCommand(command) if err != nil { diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go index 6d5c7f99..51c7a3ae 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go +++ b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go @@ -69,17 +69,15 @@ func main() { log.Fatal(err) } - defaultOutputPath := "hack/scripts/deprecated-bundles-repo/deprecate-all" - var outputPath string var jsonFile string - flag.StringVar(&outputPath, "output", defaultOutputPath, "Inform the path for output the report, if not informed it will be generated at hack/scripts/deprecated-bundles-repo/deprecate-green.") - flag.StringVar(&jsonFile, "image", "", "Inform the path for the JSON result which will be used to generate the report. ") + flag.StringVar(&outputPath, "output", currentPath, "Inform the path for output the report, if not informed it will be generated at hack/scripts/deprecated-bundles-repo/deprecate-green.") + flag.StringVar(&jsonFile, "file", "", "Inform the path for the JSON result which will be used to generate the report. ") flag.Parse() - byteValue, err := pkg.ReadFile(filepath.Join(currentPath, jsonFile)) + byteValue, err := pkg.ReadFile(jsonFile) if err != nil { log.Fatal(err) } @@ -223,11 +221,7 @@ func main() { } - reportPath = filepath.Join(currentPath, hack.ReportsPath, "deprecate-json") - command = exec.Command("mkdir", reportPath) - _, _ = pkg.RunCommand(command) - - fp = filepath.Join(reportPath, pkg.GetReportName(apiDashReport.ImageName, "deprecate-all", "json")) + fp = filepath.Join(outputPath, pkg.GetReportName(apiDashReport.ImageName, "deprecate-all", "json")) f, err = os.Create(fp) if err != nil { log.Fatal(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 c0c8b4ea..f29bc2d0 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go @@ -34,7 +34,6 @@ import ( "flag" "log" "os" - "os/exec" "path/filepath" "sort" "strings" @@ -71,17 +70,15 @@ func main() { log.Fatal(err) } - defaultOutputPath := "hack/scripts/deprecated-bundles-repo/deprecate-green" - var outputPath string var jsonFile string - flag.StringVar(&outputPath, "output", defaultOutputPath, "Inform the path for output the report, if not informed it will be generated at hack/scripts/deprecated-bundles-repo/deprecate-green.") - flag.StringVar(&jsonFile, "image", "", "Inform the path for the JSON result which will be used to generate the report. ") + flag.StringVar(&outputPath, "output", currentPath, "Inform the path for output the report, if not informed it will be generated at hack/scripts/deprecated-bundles-repo/deprecate-green.") + flag.StringVar(&jsonFile, "file", "", "Inform the path for the JSON result which will be used to generate the report. ") flag.Parse() - byteValue, err := pkg.ReadFile(filepath.Join(currentPath, jsonFile)) + byteValue, err := pkg.ReadFile(jsonFile) if err != nil { log.Fatal(err) } @@ -228,11 +225,7 @@ func main() { return allDeprecated[i].PackageName < allDeprecated[j].PackageName }) - reportPath := filepath.Join(currentPath, hack.ReportsPath, "deprecate-green") - command := exec.Command("mkdir", reportPath) - _, _ = pkg.RunCommand(command) - - fp := filepath.Join(reportPath, pkg.GetReportName(apiDashReport.ImageName, "deprecated", "yml")) + fp := filepath.Join(outputPath, pkg.GetReportName(apiDashReport.ImageName, "deprecated", "yml")) f, err := os.Create(fp) if err != nil { log.Fatal(err) @@ -255,11 +248,7 @@ func main() { } - reportPath = filepath.Join(currentPath, hack.ReportsPath, "deprecate-json") - command = exec.Command("mkdir", reportPath) - _, _ = pkg.RunCommand(command) - - fp = filepath.Join(reportPath, pkg.GetReportName(apiDashReport.ImageName, "deprecate-green", "json")) + fp = filepath.Join(outputPath, pkg.GetReportName(apiDashReport.ImageName, "deprecate-green", "json")) f, err = os.Create(fp) if err != nil { log.Fatal(err) diff --git a/hack/scripts/generate_helpers.go b/hack/scripts/generate_helpers.go new file mode 100644 index 00000000..1c40a938 --- /dev/null +++ b/hack/scripts/generate_helpers.go @@ -0,0 +1,247 @@ +// 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 +// todo: remove after 4.9-GA +package main + +import ( + "fmt" + "os" + "os/exec" + "path/filepath" + "strings" + + log "github.com/sirupsen/logrus" + + "github.com/operator-framework/audit/hack" + "github.com/operator-framework/audit/pkg" +) + +// nolint:gocyclo,dupl,lll,staticcheck +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_redhat_marketplace_index": "registry.redhat.io/redhat/redhat-marketplace-index", + "redhat_redhat_operator_index": "registry.redhat.io/redhat/redhat-operator-index", + } + + dirGreen := filepath.Join(fullReportsPath, "deprecate-green") + command := exec.Command("rm", "-rf", dirGreen) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + command = exec.Command("mkdir", dirGreen) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + // nolint:scopelint + for dir := range dirs { + pathToWalk := filepath.Join(fullReportsPath, dir) + 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.HasSuffix(info.Name(), "json") && + strings.HasPrefix(info.Name(), "bundles") { + + // Ignore the tag images 4.6 and 4.7 + if strings.Contains(info.Name(), "v4.7") || + strings.Contains(info.Name(), "v4.6") || + strings.Contains(info.Name(), "v4.8") { + return nil + } + + command := exec.Command("go", + "run", + "./hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go", + fmt.Sprintf("--file=%s", filepath.Join(pathToWalk, info.Name())), + fmt.Sprintf("--output=%s", dirGreen)) + _, err = pkg.RunCommand(command) + if err != nil { + log.Warnf("running command :%s", err) + } + } + return nil + }) + if err != nil { + log.Fatal(err) + } + } + + dirAll := filepath.Join(fullReportsPath, "deprecate-all") + command = exec.Command("rm", "-rf", dirAll) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + command = exec.Command("mkdir", dirAll) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + // nolint:scopelint + for dir := range dirs { + pathToWalk := filepath.Join(fullReportsPath, dir) + 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.HasSuffix(info.Name(), "json") && + strings.HasPrefix(info.Name(), "bundles") { + + if strings.Contains(info.Name(), "v4.7") || + strings.Contains(info.Name(), "v4.6") || + strings.Contains(info.Name(), "v4.8") { + return nil + } + + command := exec.Command("go", + "run", + "./hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go", + fmt.Sprintf("--file=%s", filepath.Join(pathToWalk, info.Name())), + fmt.Sprintf("--output=%s", dirAll)) + _, err = pkg.RunCommand(command) + if err != nil { + log.Warnf("running command :%s", err) + } + } + return nil + }) + if err != nil { + log.Fatal(err) + } + } + + command = exec.Command("rm", "-rf", filepath.Join(fullReportsPath, "contacts")) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + command = exec.Command("rm", "-rf", filepath.Join(fullReportsPath, "packages")) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + // nolint:scopelint + for dir := range dirs { + pathToWalk := filepath.Join(fullReportsPath, dir) + 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.HasSuffix(info.Name(), "json") && + strings.HasPrefix(info.Name(), "bundles") { + + // Ignore the tag images 4.6 and 4.7 + if strings.Contains(info.Name(), "v4.7") || + strings.Contains(info.Name(), "v4.6") { + return nil + } + + command := exec.Command("go", + "run", + "./hack/scripts/packages/generate.go", + fmt.Sprintf("--file=%s", filepath.Join(pathToWalk, info.Name()))) + _, err = pkg.RunCommand(command) + if err != nil { + log.Warnf("running command :%s", err) + } + } + return nil + }) + if err != nil { + log.Fatal(err) + } + } + + ivsDir := filepath.Join(fullReportsPath, "ivs") + command = exec.Command("rm", "-rf", ivsDir) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + command = exec.Command("mkdir", ivsDir) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + // nolint:scopelint + for dir := range dirs { + pathToWalk := filepath.Join(fullReportsPath, dir) + 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.HasSuffix(info.Name(), "json") && + strings.HasPrefix(info.Name(), "bundles") { + + if strings.Contains(info.Name(), "v4.7") || + strings.Contains(info.Name(), "v4.6") || + strings.Contains(info.Name(), "v4.8") || + strings.Contains(info.Name(), "redhat_community_operator_index") || + strings.Contains(info.Name(), "bundles_registry.redhat.io_redhat_redhat_operator_index") { + return nil + } + + command := exec.Command("go", + "run", + "./hack/scripts/ivs-emails/generate.go", + fmt.Sprintf("--file=%s", filepath.Join(pathToWalk, info.Name())), + "--mongo=hack/scripts/ivs-emails/mongo-query-join-results-prod.json", + fmt.Sprintf("--output=%s", ivsDir)) + _, err = pkg.RunCommand(command) + if err != nil { + log.Warnf("running command :%s", err) + } + } + return nil + }) + if err != nil { + log.Fatal(err) + } + } + +} diff --git a/hack/scripts/ivs-emails/generate.go b/hack/scripts/ivs-emails/generate.go index d886ce3a..98e04465 100644 --- a/hack/scripts/ivs-emails/generate.go +++ b/hack/scripts/ivs-emails/generate.go @@ -33,7 +33,6 @@ import ( "fmt" "log" "os" - "os/exec" "path/filepath" "sort" "strings" @@ -89,9 +88,11 @@ func main() { var mongoFile string var jsonFile string + var outputPath string + flag.StringVar(&outputPath, "output", currentPath, "Inform the path for output the report") flag.StringVar(&mongoFile, "mongo", "", "Inform the path for the mongo file with the reqqured data to generate the file. ") - flag.StringVar(&jsonFile, "image", "", "Inform the path for the JSON result which will be used to generate the report. ") + flag.StringVar(&jsonFile, "file", "", "Inform the path for the JSON result which will be used to generate the report. ") flag.Parse() @@ -106,15 +107,11 @@ func main() { } var result Output - items, image := getData(filepath.Join(currentPath, jsonFile), mongoValues) + items, image := getData(jsonFile, mongoValues) result.Items = items result.ImageData = image - reportPath := filepath.Join(currentPath, hack.ReportsPath, "ivs") - command := exec.Command("mkdir", reportPath) - _, _ = pkg.RunCommand(command) - - fp := filepath.Join(reportPath, pkg.GetReportName(result.ImageData.ImageName, "ivs", "json")) + fp := filepath.Join(outputPath, pkg.GetReportName(result.ImageData.ImageName, "ivs", "json")) f, err := os.Create(fp) if err != nil { log.Fatal(err) diff --git a/hack/scripts/packages/generate.go b/hack/scripts/packages/generate.go index eb8fa495..43b3c5d4 100644 --- a/hack/scripts/packages/generate.go +++ b/hack/scripts/packages/generate.go @@ -76,11 +76,11 @@ func main() { var jsonFile string flag.StringVar(&outputPath, "output", defaultOutputPath, "Inform the path for output the report, if not informed it will be generated at hack/scripts/deprecated-bundles-repo/deprecate-green.") - flag.StringVar(&jsonFile, "image", "", "Inform the path for the JSON result which will be used to generate the report. ") + flag.StringVar(&jsonFile, "file", "", "Inform the path for the JSON result which will be used to generate the report. ") flag.Parse() - byteValue, err := pkg.ReadFile(filepath.Join(currentPath, jsonFile)) + byteValue, err := pkg.ReadFile(jsonFile) if err != nil { log.Fatal(err) } diff --git a/hack/scripts/validate_community/generate.go b/hack/scripts/validate_community/generate.go new file mode 100644 index 00000000..0273ff18 --- /dev/null +++ b/hack/scripts/validate_community/generate.go @@ -0,0 +1,219 @@ +// 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 check the community index +// todo: remove after 4.9-GA + +package main + +import ( + "flag" + "fmt" + "html/template" + + log "github.com/sirupsen/logrus" + + "os" + "os/exec" + "path/filepath" + + "github.com/operator-framework/audit/hack" + "github.com/operator-framework/audit/pkg" + "github.com/operator-framework/audit/pkg/reports/bundles" + "github.com/operator-framework/audit/pkg/reports/custom" +) + +type Result struct { + PackageName string + Bundles []bundles.Column +} + +type File struct { + ShouldExist []Result + ShouldNotExist []Result +} + +//nolint:lll,gocyclo,govet +func main() { + + currentPath, err := os.Getwd() + if err != nil { + log.Fatal(err) + } + + var image string + var outputPath string + + flag.StringVar(&outputPath, "output", currentPath, "Inform the path for output the report, if not informed it will be generated at hack/scripts/deprecated-bundles-repo/deprecate-green.") + flag.StringVar(&image, "image", "", "inform the final image result") + + flag.Parse() + + binPath := filepath.Join(currentPath, hack.BinPath) + command := exec.Command(binPath, "index", "bundles", + fmt.Sprintf("--index-image=%s", "registry.redhat.io/redhat/community-operator-index:v4.8"), + "--output=json", + "--disable-scorecard", + fmt.Sprintf("--output-path=%s", outputPath), + ) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + command = exec.Command(binPath, "index", "bundles", + fmt.Sprintf("--index-image=%s", image), + "--output=json", + "--disable-scorecard", + fmt.Sprintf("--output-path=%s", outputPath), + ) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + name48report := pkg.GetReportName("registry.redhat.io/redhat/community-operator-index:v4.8", "bundles", "json") + apiDashReport48, err := getAPIDashForImage(filepath.Join(outputPath, name48report)) + if err != nil { + log.Fatal(err) + } + + nameFinalJSONReport := pkg.GetReportName(image, "bundles", "json") + apiDashReportFinalResult, err := getAPIDashForImage(filepath.Join(outputPath, nameFinalJSONReport)) + if err != nil { + log.Fatal(err) + } + + command = exec.Command(binPath, "dashboard", "deprecate-apis", + fmt.Sprintf("--file=%s", nameFinalJSONReport), + fmt.Sprintf("--output-path=%s", outputPath), + ) + + log.Infof("You can check the HTML report for the final result in %", filepath.Join(outputPath, pkg.GetReportName(image, "deprecate-apis", "html"))) + + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + var shouldNoExist []bundles.Column + + // all that is not migrated and is not deprecated should not exist + for _, k := range apiDashReportFinalResult.NotMigrated { + for _, v := range k.AllBundles { + if !v.IsDeprecated && len(v.PackageName) > 0 { + shouldNoExist = append(shouldNoExist, v) + } + } + } + + // all bundle that is from the migrated package + // and uses the deprecate apis and is not migrated should not exist + // also, all that has OCP label set < 4.9 should not exist + for _, m := range apiDashReport48.Migrated { + for _, mb := range m.AllBundles { + if !mb.IsDeprecated && len(mb.PackageName) > 0 && len(mb.DeprecateAPIsManifests) > 0 { + for _, f := range apiDashReportFinalResult.Migrated { + for _, fb := range f.AllBundles { + if fb.BundleName == mb.BundleName && len(fb.PackageName) > 0 && !fb.IsDeprecated { + ocpLabel := fb.OCPLabel + if len(ocpLabel) == 0 { + ocpLabel = fb.OCPLabelAnnotations + } + if len(fb.DeprecateAPIsManifests) > 0 || !pkg.IsOcpLabelRangeLowerThan49(ocpLabel) { + shouldNoExist = append(shouldNoExist, fb) + } + } + } + } + } + } + } + + // Let's check what should exist + var shouldExist []bundles.Column + for _, m := range apiDashReport48.Migrated { + for _, mb := range m.AllBundles { + ocpLabel := mb.OCPLabel + if len(ocpLabel) == 0 { + ocpLabel = mb.OCPLabelAnnotations + } + if !mb.IsDeprecated && len(mb.PackageName) > 0 && len(mb.DeprecateAPIsManifests) == 0 && !pkg.IsOcpLabelRangeLowerThan49(ocpLabel) { + for _, f := range apiDashReportFinalResult.Migrated { + found := false + for _, fb := range f.AllBundles { + if fb.BundleName == mb.BundleName { + found = true + break + } + if !found { + shouldExist = append(shouldExist, fb) + } + } + } + } + } + } + + fp := filepath.Join(outputPath, pkg.GetReportName(image, "validate", "yml")) + f, err := os.Create(fp) + if err != nil { + log.Fatal(err) + } + + defer f.Close() + + // create a map with all bundles found per pkg name + mapPackagesWithBundlesShouldNoExist := make(map[string][]bundles.Column) + for _, v := range shouldNoExist { + mapPackagesWithBundlesShouldNoExist[v.PackageName] = append(mapPackagesWithBundlesShouldNoExist[v.PackageName], v) + } + + shouldNotExistResult := []Result{} + for key, bundles := range mapPackagesWithBundlesShouldNoExist { + shouldNotExistResult = append(shouldNotExistResult, Result{PackageName: key, Bundles: bundles}) + } + + // create a map with all bundles found per pkg name + mapPackagesWithBundlesShouldExist := make(map[string][]bundles.Column) + for _, v := range shouldExist { + mapPackagesWithBundlesShouldExist[v.PackageName] = append(mapPackagesWithBundlesShouldExist[v.PackageName], v) + } + + shouldExistResult := []Result{} + for key, bundles := range mapPackagesWithBundlesShouldExist { + shouldExistResult = append(shouldExistResult, Result{PackageName: key, Bundles: bundles}) + } + + t := template.Must(template.ParseFiles(filepath.Join(currentPath, "hack/scripts/deprecated-bundles-repo/validate_community/template.go.tmpl"))) + err = t.Execute(f, File{ShouldExist: shouldExistResult, ShouldNotExist: shouldNotExistResult}) + if err != nil { + panic(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/validate_community/template.go.tmpl b/hack/scripts/validate_community/template.go.tmpl new file mode 100644 index 00000000..2a8fda78 --- /dev/null +++ b/hack/scripts/validate_community/template.go.tmpl @@ -0,0 +1,12 @@ +############################################## +# Verifies the community index - helper +############################################## +# Following what should exist +{{ with .ShouldExist }}{{ range . }}{{ .PackageName }}:{{ with .Bundles }}{{ range . }} + - {{ .BundleName }}{{ end }}{{ end }} +{{ end }}{{ end }} + +# Following what should NOT exist +{{ with .ShouldNotExist }}{{ range . }}{{ .PackageName }}:{{ with .Bundles }}{{ range . }} + - {{ .BundleName }}{{ end }}{{ end }} +{{ end }}{{ end }} \ No newline at end of file diff --git a/hack/scripts/validate_deprecate/generate.go b/hack/scripts/validate_deprecate/generate.go index 641a8db4..85c3ef00 100644 --- a/hack/scripts/validate_deprecate/generate.go +++ b/hack/scripts/validate_deprecate/generate.go @@ -23,178 +23,85 @@ package main import ( "encoding/json" - "log" + "flag" + "fmt" + + log "github.com/sirupsen/logrus" + "os" + "os/exec" "path/filepath" "github.com/operator-framework/audit/hack" + "github.com/operator-framework/audit/pkg" "github.com/operator-framework/audit/pkg/reports/bundles" "github.com/operator-framework/audit/pkg/reports/custom" ) -//nolint:lll +//nolint:lll,govet,gocyclo 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", + currentPath, err := os.Getwd() + if err != nil { + log.Fatal(err) } - jsonFinalResult := "bundles_registry_proxy.engineering.redhat.com_rh_osbs_iib@sha256_5c0c280be1aa65cf5649894e26b64840cdadaf71762b287b2c0f7c6d5ee6d4a4_2021-09-07.json" + var deprecateFile string + var image string + var outputPath string - file := filepath.Join(jsonFinalResult) + flag.StringVar(&outputPath, "output", currentPath, "Inform the path for output the report, if not informed it will be generated at hack/scripts/deprecated-bundles-repo/deprecate-green.") + + flag.StringVar(&deprecateFile, "deprecate", "", "Inform the path with the deprecate json file") + flag.StringVar(&image, "image", "", "inform the final image result") + + flag.Parse() + + binPath := filepath.Join(currentPath, hack.BinPath) + command := exec.Command(binPath, "index", "bundles", + fmt.Sprintf("--index-image=%s", image), + "--output=json", + "--disable-scorecard", + fmt.Sprintf("--output-path=%s", outputPath), + ) + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + nameFinalJSONReport := pkg.GetReportName(image, "bundles", "json") + file := filepath.Join(outputPath, nameFinalJSONReport) apiDashReportFinalResult, err := getAPIDashForImage(file) if err != nil { log.Fatal(err) } + command = exec.Command(binPath, "dashboard", "deprecate-apis", + fmt.Sprintf("--file=%s", file), + fmt.Sprintf("--output-path=%s", outputPath), + ) + + _, err = pkg.RunCommand(command) + if err != nil { + log.Errorf("running command :%s", err) + } + + byteValue, err := pkg.ReadFile(deprecateFile) + if err != nil { + log.Fatal(err) + } + + var deprecatedBundles []string + if err = json.Unmarshal(byteValue, &deprecatedBundles); 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 { + for _, setToDeprecate := range deprecatedBundles { if i.BundleImagePath == setToDeprecate && !i.IsDeprecated { notDeprecated = append(notDeprecated, i) break @@ -204,7 +111,7 @@ func main() { } for _, v := range apiDashReportFinalResult.NotMigrated { for _, i := range v.AllBundles { - for _, setToDeprecate := range deprecated { + for _, setToDeprecate := range deprecatedBundles { if i.BundleImagePath == setToDeprecate && !i.IsDeprecated { notDeprecated = append(notDeprecated, i) break @@ -213,32 +120,16 @@ func main() { } } - 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) + if len(notDeprecated) == 0 { + log.Info("WORKED\n Not found any bundle informed to be deprecated that exists in the index or does not have the olm.deprecated property") + } else { + log.Errorf("ERROR: Following the bundles that seems not deprecated when should be\n") + for _, v := range notDeprecated { + log.Errorf("Bundle Name: (%s) / Bundle Path (%s) \n", v.BundleName, v.BundleImagePath) + } } - err = hack.ReplaceInFile(fp, "", string(jsonResult)) - if err != nil { - log.Fatal(err) - } + log.Infof("You can check the HTML report for the final result in %", filepath.Join(outputPath, pkg.GetReportName(image, "deprecate-apis", "html"))) } func getAPIDashForImage(image string) (*custom.APIDashReport, error) { diff --git a/index.html b/index.html index 98de5182..9cac4b09 100644 --- a/index.html +++ b/index.html @@ -48,12 +48,6 @@

    Available Dashboards

    quay.io/operatorhubio/catalog

    @@ -61,23 +55,23 @@

    quay.io/operatorhubio/catalog

    registry.redhat.io/redhat/certified-operator-index

    @@ -86,17 +80,17 @@

    registry.redhat.io/redhat/certified-operator-inde

    registry.redhat.io/redhat/community-operator-index

    @@ -105,23 +99,23 @@

    registry.redhat.io/redhat/community-operator-inde

    registry.redhat.io/redhat/redhat-marketplace-index

    @@ -130,23 +124,23 @@

    registry.redhat.io/redhat/redhat-marketplace-inde

    registry.redhat.io/redhat/redhat-operator-index

    diff --git a/pkg/actions/get_bundle.go b/pkg/actions/get_bundle.go index d36ce57b..96818d40 100644 --- a/pkg/actions/get_bundle.go +++ b/pkg/actions/get_bundle.go @@ -19,14 +19,17 @@ import ( "errors" "fmt" "io/ioutil" + "os" "os/exec" "path/filepath" "strings" + "github.com/goccy/go-yaml" + log "github.com/sirupsen/logrus" + apimanifests "github.com/operator-framework/api/pkg/manifests" "github.com/operator-framework/audit/pkg" "github.com/operator-framework/audit/pkg/models" - log "github.com/sirupsen/logrus" ) // Manifest define the manifest.json which is required to read the bundle @@ -84,6 +87,29 @@ func GetDataFromBundleImage(auditBundle *models.AuditBundle, return auditBundle } + //todo: + //auditBundle.OCPLabelAnnotations + annotationsPath := filepath.Join(bundleDir, "metadata", "annotations.yaml") + + // If find the annotations file then, check for the scorecard path on it. + if _, err := os.Stat(annotationsPath); err == nil && !os.IsNotExist(err) { + annFile, err := pkg.ReadFile(annotationsPath) + if err != nil { + msg := fmt.Errorf("unable to read annotations.yaml to check scorecard path: %s", err) + log.Error(msg) + auditBundle.Errors = append(auditBundle.Errors, msg.Error()) + } + var bundleAnnotations BundleAnnotations + if err := yaml.Unmarshal(annFile, &bundleAnnotations); err != nil { + msg := fmt.Errorf("unable to Unmarshal annotations.yaml to check ocp label path: %s", err) + log.Error(msg) + auditBundle.Errors = append(auditBundle.Errors, msg.Error()) + } + if len(bundleAnnotations.Annotations) > 0 { + auditBundle.OCPLabelAnnotations = bundleAnnotations.Annotations[ocpLabelAnnotation] + } + } + // Gathering data from scorecard if !disableScorecard { auditBundle = RunScorecard(filepath.Join(bundleDir, "bundle"), auditBundle) diff --git a/pkg/actions/run_scorecard.go b/pkg/actions/run_scorecard.go index ce4c4da0..a7a66a27 100644 --- a/pkg/actions/run_scorecard.go +++ b/pkg/actions/run_scorecard.go @@ -33,6 +33,7 @@ import ( const defaultSDKScorecardImageName = "quay.io/operator-framework/scorecard-test" const scorecardAnnotation = "operators.operatorframework.io.test.config.v1" +const ocpLabelAnnotation = "com.redhat.openshift.versions" type BundleAnnotations struct { Annotations map[string]string `yaml:"annotations,omitempty"` diff --git a/pkg/models/bundle.go b/pkg/models/bundle.go index 1343aa16..9b64512d 100644 --- a/pkg/models/bundle.go +++ b/pkg/models/bundle.go @@ -27,6 +27,7 @@ type AuditBundle struct { Bundle *apimanifests.Bundle FoundLabel bool OCPLabel string + OCPLabelAnnotations string BuildAt string SkipRangeDB string VersionDB string diff --git a/pkg/reports/bundles/columns.go b/pkg/reports/bundles/columns.go index 330460fe..b53fc497 100644 --- a/pkg/reports/bundles/columns.go +++ b/pkg/reports/bundles/columns.go @@ -62,6 +62,7 @@ type Column struct { Replace string `json:"replace,omitempty"` Infrastructure string `json:"infrastructure,omitempty"` OCPLabel string `json:"ocpLabel,omitempty"` + OCPLabelAnnotations string `json:"OCPLabelAnnotations,omitempty"` MaxOCPVersion string `json:"maxOCPVersion,omitempty"` KindsDeprecateAPIs []string `json:"kindsDeprecateAPIs,omitempty"` Channels []string `json:"bundleChannel,omitempty"` @@ -103,6 +104,7 @@ func NewColumn(v models.AuditBundle) *Column { col.Replace = v.ReplacesDB col.BundleVersion = v.VersionDB col.OCPLabel = v.OCPLabel + col.OCPLabelAnnotations = v.OCPLabelAnnotations col.BundleImageBuildDate = v.BuildAt col.HasCustomScorecardTests = v.HasCustomScorecardTests col.IsHeadOfChannel = v.IsHeadOfChannel diff --git a/pkg/reports/custom/maxocp_api_report.go b/pkg/reports/custom/maxocp_api_report.go index 39def9b8..27a7ce8e 100644 --- a/pkg/reports/custom/maxocp_api_report.go +++ b/pkg/reports/custom/maxocp_api_report.go @@ -61,20 +61,19 @@ func NewMaxDashReport(bundlesReport bundles.Report) *MaxDashReport { 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, - }) + // Filter the bundles to output only what is not OK to make + // easier the report conference + var notOKBundles []bundles.Column + for _, b := range mapPackagesWithBundles[key] { + if b.KindsDeprecateAPIs != nil && + b.KindsDeprecateAPIs[0] != pkg.Unknown && + len(b.KindsDeprecateAPIs) > 0 && !pkg.IsMaxOCPVersionLowerThan49(b.MaxOCPVersion) { + notOKBundles = append(notOKBundles, b) + } + } + isNotOK[key] = notOKBundles + } } for k, bundles := range isNotOK { @@ -115,7 +114,10 @@ func mapPkgsComplyingMaxOcpVersion( func hasWrongMaxOcpVersion(bundlesPerPkg []bundles.Column) bool { for _, v := range bundlesPerPkg { - if v.KindsDeprecateAPIs != nil && len(v.KindsDeprecateAPIs) > 0 && !pkg.IsMaxOCPVersionLowerThan49(v.MaxOCPVersion) { + if v.KindsDeprecateAPIs != nil && + v.KindsDeprecateAPIs[0] != pkg.Unknown && + len(v.KindsDeprecateAPIs) > 0 && + !pkg.IsMaxOCPVersionLowerThan49(v.MaxOCPVersion) { return true } } 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 deleted file mode 100644 index ee59918e..00000000 --- a/testdata/reports/operatorhubio_catalog/dashboards/deprecate-apis_quay.io_operatorhubio_catalog_latest_2021-09-06.html +++ /dev/null @@ -1,8092 +0,0 @@ - - - - - - - Deprecated API(s) Dashboard - - - - - - - - - - - - - - - - - - - - - - -
    - -

    Deprecated API(s) Dashboard

    -

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

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

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

    -
    2. What action(s) should I take?
    - -
    3. What does it mean for a package to be in red, amber or green?
    - -
    - -
    -
    Using deprecated APIs
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    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)
    • - -
    -
    -
      - -
    -
    radanalytics-spark -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • sparkoperator.v1.0.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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    minio-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • minio-operator.v1.0.3 - (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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    kube-arangodb -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • kube-arangodb.v1.0.2 - (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)
    • - -
    -
    -
      - -
    -
    postgresql-operator-dev4devs-com -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • postgresql-operator.v0.1.1 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    kom-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • beta
    • - -
    -
    -
      - -
    • kom-operator.v1.0.2 - (label=,max=not set,channels=[beta],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    kubefed-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • kubefed-operator.v0.1.0 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    esindex-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • esindex-operator.v0.1.0 - (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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    ham-deploy -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • ham-deploy.v0.1.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=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    iot-simulator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • iot-simulator.0.1.0 - (label=,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=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)
    • - -
    -
    -
      - -
    -
    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-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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    steerd-presto-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • steerd-presto-operator.v0.1.0 - (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)
    • - -
    -
    -
      - -
    -
    redis-enterprise -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • redis-enterprise-operator.v0.0.1 - (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)
    • - -
    -
    -
      - -
    -
    portworx-essentials -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • portworx-essentials.v1.3.3 - (label=,max=not set,channels=[stable],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    wavefront -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • wavefront-operator.v0.1.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)
    • - -
    -
    -
      - -
    -
    rocketmq-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • rocketmq-operator.0.2.1 - (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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    robin-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • robin-operator.v5.3.2-59 - (label=,max=not set,channels=[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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    vault -
      - -
    • CRD
    • - -
    -
    -
      - -
    • beta
    • - -
    -
    -
      - -
    • vaultoperator.v0.4.10 - (label=,max=not set,channels=[beta],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-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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    kubemod -
      - -
    • CRD
    • - -
    -
    -
      - -
    • beta
    • - -
    -
    -
      - -
    • kubemod.v0.6.0 - (label=,max=not set,channels=[beta],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)
    • - -
    -
    -
      - -
    -
    composable-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • composable-operator.v0.1.3 - (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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    credstash-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • credstash-operator.v1.13.0 - (label=,max=not set,channels=[alpha],head:YES,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)
    • - -
    -
    -
      - -
    -
    ripsaw -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • ripsaw.v0.1.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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    metering-upstream -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • metering-operator-upstream.v4.2.0 - (label=,max=not set,channels=[stable],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    lib-bucket-provisioner -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • lib-bucket-provisioner.v1.0.0 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    ibmcloud-iam-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • ibmcloud-iam-operator.v0.1.0 - (label=,max=not set,channels=[alpha],head:YES,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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    postgresql-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • postgresql-operator.v0.0.1 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    mattermost-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • mattermost-operator.v0.5.0 - (label=,max=not set,channels=[alpha],head:YES,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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    zoperator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • zoperator.v0.3.6 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    myvirtualdirectory -
      - -
    • CRD
    • - -
    -
    -
      - -
    • beta
    • - -
    -
    -
      - -
    • myvirtualdirectory.1.0.0 - (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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    yugabyte-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • yugabyte-operator.v0.0.1 - (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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    splunk -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • splunk.v0.1.0 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    project-quay -
      - -
    • CRD
    • - -
    -
    -
      - -
    • stable
    • - -
    -
    -
      - -
    • project-quay.v1.1.2 - (label=,max=not set,channels=[stable],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    -
    kubestone -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • kubestone.v0.4.0 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
      - -
    -
    pystol -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • pystol.v0.8.17 - (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)
    • - -
    -
    -
      - -
    -
    mysql -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • mysqloperator.v1.0.0 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    elastic-phenix-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • elastic-phenix-operator.v0.1.0 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    lightbend-console-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • lightbend-console-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    mcad-operator -
      - -
    • CRD
    • - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    • mcad-operator.v0.1.9 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    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)
    • - -
    -
    -
      - -
    -
    -
    - -
    -
    Has a bundle that we could not find the deprecate APIs
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Package NameKinds to migrateChannelsBundles uses API(s)Bundles Migrated
    hpa-operator -
      - -
    -
    -
      - -
    • beta
    • - -
    -
    -
      - -
    -
    -
      - -
    • hpa-operator.v0.1.6 - (label=,max=not set,channels=[beta],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)
    • - -
    -
    varnish-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • varnish-operator.v0.27.2 - (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)
    • - -
    -
    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)
    • - -
    -
    ovms-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • ovms-operator.v0.1.0 - (label=v4.6,v4.7,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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    machine-deletion-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • machine-deletion.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)
    • - -
    -
    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)
    • - -
    -
    virt-gateway-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • virt-gateway-operator.v0.0.1 - (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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    xrootd-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • xrootd-operator.v0.2.1 - (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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    apimatic-kubernetes-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • apimatic-kubernetes-operator.v0.0.1 - (label=,max=not set,channels=[alpha],head:YES,defaultChannel:YES, 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)
    • - -
    -
    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)
    • - -
    -
    joget-tomcat-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • joget-tomcat-operator.v0.0.1 - (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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    tagger -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • tagger.v2.1.17 - (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=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)
    • - -
    -
    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)
    • - -
    -
    sigstore-helm-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • sigstore-helm-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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    metallb-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • metallb-operator.v0.10.2 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    druid-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • druid-operator.v0.0.6 - (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)
    • - -
    -
    alvearie-imaging-ingestion -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • imaging-ingestion-operator.v0.0.1 - (label=,max=not set,channels=[alpha],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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    pulp-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • pulp-operator.v0.3.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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    datatrucker-operator -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • datatrucker-operator.v1.3.0 - (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)
    • - -
    -
    synapse-helm -
      - -
    -
    -
      - -
    • alpha
    • - -
    -
    -
      - -
    -
    -
      - -
    • synapse-helm.v0.0.1 - (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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    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)
    • - -
    -
    cluster-impairment-operator -
      - -
    -
    -
      - -
    • beta
    • - -
    -
    -
      - -
    -
    -
      - -
    • cluster-impairment-operator.v1.0.0 - (label=,max=not set,channels=[beta],head:YES,defaultChannel:YES, deprecated:NO)
    • - -
    -
    -
    -
    - - - 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 deleted file mode 100644 index 532e2db2..00000000 --- a/testdata/reports/operatorhubio_catalog/dashboards/grade_quay.io_operatorhubio_catalog_latest_2021-09-06.html +++ /dev/null @@ -1,32451 +0,0 @@ - - - - - - - Experimental Grade Dashboard - - - - - - - - - - - - - - - - - - - - - - -
    - -

    Experimental Grade Dashboard

    -

    Following the packages and its finding(s) obtained by checking the image and the bundle manifests distributed on it. This report aims to try to identify the packages distributions grade based on some defined criteria. Note that only the head of channels are checked which means that this report has the purpose the evaluate the latest distributions only.

    - -
    -
    Data from the image used
    - -
    - -
    -
    FAQ
    -
    1. What does it mean each column for a package?
    - - - -
    2. How the score is calculated?
    -

    Following the score points for each criteria

    - - -
    3. How the grade is calculated?
    -

    Following the grade formula

    - -
    - - -
    -
    Grade
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Package NameDeprecate API(s) criteriaChannel NamingDisconnect AnnotationSDKDefault scorecard testsValidators testsCustom Scorecard ImagesGrade/Score
    poison-pill-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 -
    -
      - - -
      -

      For poison-pill.v0.1.4:

      - -

    • "ERROR" poisonpillconfigs.poison-pill.medik8s.io does not have a status descriptor
    • - -
    • "ERROR" poisonpillremediations.poison-pill.medik8s.io does not have a status descriptor
    • - -
    • "ERROR" poisonpillremediationtemplates.poison-pill.medik8s.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" template does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for template
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For poison-pill.v0.1.4:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    tagger -

    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 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
    • - -
    • "ERROR" mirror does not have a spec descriptor
    • - -
    • "ERROR" tags.tagger.dev does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for from
    • - -
    • "WARNING" Add a spec descriptor for generation
    • - -
    • "WARNING" Add a spec descriptor for mirror
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For tagger.v2.1.17:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    hpe-ezmeral-csi-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hpe-ezmeral-csi-operator.v1.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: (["hpeezmeralcsidrivers.ezmeral.hpe.com" "hpeezmeralnfscsidrivers.ezmeral.hpe.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (400)
    ibm-quantum-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

    -

    ONLY ERRORS

    - - - +Info -
    -
      - - -
      -

      For ibm-quantum-operator.v0.1.0:

      - -

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

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For ibm-quantum-operator.v0.1.0:

      - - -

    • "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: (["ibmqs.singhp11.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    istio -

    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 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
    • - -
    • "WARNING" Add a spec descriptor for citadel
    • - -
    • "WARNING" Add a spec descriptor for defaultPodDisruptionBudget
    • - -
    • "WARNING" Add a spec descriptor for galley
    • - -
    • "WARNING" Add a spec descriptor for includeIPRanges
    • - -
    • "WARNING" Add a spec descriptor for mtls
    • - -
    • "WARNING" Add a spec descriptor for imageHub
    • - -
    • "WARNING" Add a spec descriptor for proxyInit
    • - -
    • "WARNING" Add a spec descriptor for sds
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for imageTag
    • - -
    • "WARNING" Add a spec descriptor for mixer
    • - -
    • "WARNING" Add a spec descriptor for pilot
    • - -
    • "WARNING" Add a spec descriptor for sidecarInjector
    • - -
    • "WARNING" Add a spec descriptor for enabledServices
    • - -
    • "WARNING" Add a spec descriptor for includeIPRanges
    • - -
    • "WARNING" Add a spec descriptor for proxy
    • - -
    • "WARNING" Add a spec descriptor for proxyInit
    • - -
    • "WARNING" Add a spec descriptor for sidecarInjector
    • - -
    • "WARNING" Add a spec descriptor for autoInjectionNamespaces
    • - -
    • "WARNING" Add a spec descriptor for citadel
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For istio-operator.0.1.6:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    openebs -

    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 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 -
    -
      - - -
      -

      For openebsoperator.v2.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: (["openebsinstalltemplates.openebs.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    cluster-manager -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cluster-manager.v0.4.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" 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cluster-manager.v0.4.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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (700)
    kong -

    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 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 -
    -
      - - -
      -

      For kong.v0.8.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    tidb-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For tidb-operator.v1.1.6:

      - -

    • "ERROR" tidbclusters.pingcap.com 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" 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" Warning: Value pingcap.com/v1alpha1, Kind=BackupSchedule: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value pingcap.com/v1alpha1, Kind=TidbMonitor: provided API should have an example annotation
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    kubeflow -

    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 kubeflow.v1.2.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" applications does not have a spec descriptor
    • - -
    • "ERROR" repos does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" kfdefs.kfdef.apps.kubeflow.org does not have a status descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `applications` in KfDef/v1
    • - -
    • "WARNING" Add CRD validation for spec field `repos` in KfDef/v1
    • - -
    • "WARNING" Add CRD validation for spec field `version` in KfDef/v1
    • - -
    • "WARNING" Add a spec descriptor for applications
    • - -
    • "WARNING" Add a spec descriptor for repos
    • - -
    • "WARNING" Add a spec descriptor for version
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubeflow.v1.2.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    spark-gcp -

    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 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 -
    -
      - - -
      -

      For sparkoperator.v2.4.0:

      - - -

    • "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: (["scheduledsparkapplications.sparkoperator.k8s.io" "sparkapplications.sparkoperator.k8s.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    xrootd-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 -
    -
      - - -
      -

      For xrootd-operator.v0.2.1:

      - -

    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" redirector does not have a spec descriptor
    • - -
    • "ERROR" worker does not have a spec 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 image
    • - -
    • "WARNING" Add a spec descriptor for redirector
    • - -
    • "WARNING" Add a spec descriptor for worker
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For xrootd-operator.v0.2.1:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    yugabyte-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 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
    • - -
    • "ERROR" tls does not have a spec descriptor
    • - -
    • "ERROR" tserver does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for master
    • - -
    • "WARNING" Add a spec descriptor for replicationFactor
    • - -
    • "WARNING" Add a spec descriptor for tls
    • - -
    • "WARNING" Add a spec descriptor for tserver
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For yugabyte-operator.v0.0.1:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    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 -
    -
      - - -
      -

      For dynatrace-operator.v0.2.2:

      - -

    • "ERROR" oneAgent does not have a spec descriptor
    • - -
    • "ERROR" routing does not have a spec descriptor
    • - -
    • "ERROR" activeGate does not have a spec descriptor
    • - -
    • "ERROR" classicFullStack does not have a spec descriptor
    • - -
    • "ERROR" kubernetesMonitoring does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for oneAgent
    • - -
    • "WARNING" Add a spec descriptor for routing
    • - -
    • "WARNING" Add a spec descriptor for activeGate
    • - -
    • "WARNING" Add a spec descriptor for classicFullStack
    • - -
    • "WARNING" Add a spec descriptor for kubernetesMonitoring
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For dynatrace-operator.v0.2.2:

      - - -

    • "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.
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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
    • - -
    • "WARNING" Add a spec descriptor for schemas
    • - -
    • "WARNING" Add a spec descriptor for database
    • - -
    • "WARNING" Add a spec descriptor for dropOnDelete
    • - -
    • "WARNING" Add a spec descriptor for secretName
    • - -
    • "WARNING" Add a spec descriptor for database
    • - -
    • "WARNING" Add a spec descriptor for privileges
    • - -
    • "WARNING" Add a spec descriptor for role
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For ext-postgres-operator.v0.4.1:

      - - -

    • "WARNING" (ext-postgres-operator.v0.4.1) csv.Spec.Icon not specified
    • - -
    • "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"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For hazelcast-enterprise-operator.v0.3.7:

      - -

    • "ERROR" hazelcastenterprises.hazelcast.com does not have a status 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 CRD validation for HazelcastEnterprise/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for hazelcast
    • - -
    • "WARNING" Add a spec descriptor for securityContext
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hazelcast-enterprise-operator.v0.3.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" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For iot-simulator.0.1.0:

      - -

    • "ERROR" endpoint does not have a spec descriptor
    • - -
    • "ERROR" simulators.iot.dentrassi.de 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" Add a spec descriptor for endpoint
    • - -
    • "WARNING" Add CRD validation for Simulator/v1alpha1
    • - -
    • "WARNING" Add CRD validation for SimulatorConsumer/v1alpha1
    • - -
    • "WARNING" Add CRD validation for SimulatorProducer/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For iot-simulator.0.1.0:

      - - -

    • "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: (["simulatorconsumers.iot.dentrassi.de" "simulatorproducers.iot.dentrassi.de" "simulators.iot.dentrassi.de"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    zoperator -

    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 -
    -
      - - -
      -

      For zoperator.v0.3.6:

      - - -

    • "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"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For event-streams-topic.v0.1.1:

      - - -

    • "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: (["topics.ibmcloud.ibm.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    hpa-operator -

    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 -
    -
      - - -
      -

      For hpa-operator.v0.1.6:

      - - -

    • "WARNING" Warning: Value : (hpa-operator.v0.1.6) example annotations not found
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hpa-operator.v0.1.6:

      - - -

    • "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" (hpa-operator.v0.1.6) example annotations not found
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    hazelcast-jet-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 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hazelcast-jet-operator.v0.5.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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    metallb-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 -
    -
      - - -
      -

      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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For metallb-operator.v0.10.2:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    multicluster-operators-subscription -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • release-2.3
    • - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "WARNING" Warning: Value apps.open-cluster-management.io/v1, Kind=Deployable: 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
    • - -
    • "WARNING" Add CRD validation for status field `state` in Channel/v1
    • - - -
      -

      For multicluster-operators-subscription.v0.1.2:

      - -

    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" pathname does not have a spec descriptor
    • - -
    • "ERROR" packageFilter does not have a spec descriptor
    • - -
    • "ERROR" packageOverrides does not have a spec descriptor
    • - -
    • "ERROR" placement does not have a spec descriptor
    • - -
    • "ERROR" channels.apps.open-cluster-management.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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 CRD validation for status field `state` in Channel/v1
    • - -
    • "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" 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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
    • - -
    • "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 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 node-healthcheck-operator.v0.1.1:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (800)
    api-operator -

    NOT COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • 2.x-stable
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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
    • - -
    • "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
    • - -
    • "ERROR" securities.wso2.com does not have a status descriptor
    • - -
    • "ERROR" securities.wso2.com does not have a status descriptor
    • - -
    • "ERROR" securities.wso2.com does not have a status descriptor
    • - -
    • "ERROR" securities.wso2.com does not have a status descriptor
    • - -
    • "ERROR" apis.wso2.com does not have a status descriptor
    • - -
    • "ERROR" ratelimitings.wso2.com does not have a status descriptor
    • - -
    • "ERROR" targetendpoints.wso2.com does not have a status descriptor
    • - -
    • "ERROR" securityConfig does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" securityConfig does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" securityConfig does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" securityConfig does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" securityConfig does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" definition does not have a spec descriptor
    • - -
    • "ERROR" mode does not have a spec descriptor
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    clickhouse -

    NOT COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • latest
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "WARNING" Add a spec descriptor for chUsersConfigsPath
    • - -
    • "WARNING" Add a spec descriptor for chPort
    • - -
    • "WARNING" Add a spec descriptor for statefulSetUpdateTimeout
    • - -
    • "WARNING" Add a spec descriptor for chPassword
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For clickhouse-operator.v0.15.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: (["clickhouseinstallations.clickhouse.altinity.com" "clickhouseinstallationtemplates.clickhouse.altinity.com" "clickhouseoperatorconfigurations.clickhouse.altinity.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    flagsmith -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For flagsmith-operator.v1.0.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade A
    (900)
    halkyon -

    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 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
    • - -
    • "ERROR" buildConfig does not have a spec descriptor
    • - -
    • "ERROR" port 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 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 a spec descriptor for buildConfig
    • - -
    • "WARNING" Add a spec descriptor for port
    • - -
    • "WARNING" Add a spec descriptor for kind
    • - - - -
    -
    - -
    -

    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 D
    (100)
    openshift-qiskit-operator -

    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.

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

    USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For openshift-qiskit-operator.v0.2.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (800)
    prometheus-exporter-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 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
    • - - -
    • "WARNING" Add a spec descriptor for grafanaDashboard
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for dbHost
    • - -
    • "WARNING" Add a spec descriptor for dbPort
    • - - - -
    -
    - -
    -

    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 D
    (100)
    service-binding-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 -
    -
      - - -
      -

      For service-binding-operator.v0.9.1:

      - -

    • "ERROR" application does not have a spec descriptor
    • - -
    • "ERROR" services does not have a spec descriptor
    • - -
    • "ERROR" service 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
    • - -
    • "ERROR" servicebindings.binding.operators.coreos.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for application
    • - -
    • "WARNING" Add a spec descriptor for services
    • - -
    • "WARNING" Add a spec descriptor for service
    • - -
    • "WARNING" Add a spec descriptor for application
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For service-binding-operator.v0.9.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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    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 -
    -
      - - -
      -

      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 -
    -
      - - -
      -

      For varnish-operator.v0.27.2:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    composable-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 -
    -
      - - -
      -

      For composable-operator.v0.1.3:

      - - -

    • "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: (["composables.ibmcloud.ibm.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    datatrucker-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 -
    -
      - - -
      -

      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 -
    -
      - - -
      -

      For datatrucker-operator.v1.3.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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    grafana-operator -

    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 -
    -
      - - -
      -

      For grafana-operator.v3.10.3:

      - -

    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" dashboardLabelSelector does not have a spec descriptor
    • - -
    • "ERROR" ingress does not have a spec descriptor
    • - -
    • "ERROR" name 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" 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" 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" 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 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For grafana-operator.v3.10.3:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    universal-crossplane -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "ERROR" connectionSecretKeys does not have a spec descriptor
    • - -
    • "ERROR" versions does not have a spec descriptor
    • - -
    • "ERROR" writeConnectionSecretsToNamespace does not have a spec descriptor
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    ibm-spectrum-scale-csi-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

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

      - -

    • "ERROR" snapshotterNodeSelector does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for snapshotterNodeSelector
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

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

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (700)
    kom-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

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["microservices.kom.kaiso.github.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    lib-bucket-provisioner -

    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 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 -
    -
      - - -
      -

      For lib-bucket-provisioner.v1.0.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    submariner -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • alpha-0.10
    • - -
    • alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "ERROR" broker does not have a spec descriptor
    • - -
    • "ERROR" clusterCIDR does not have a spec descriptor
    • - -
    • "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 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 defaultGlobalnetClusterSize
    • - -
    • "WARNING" Add a spec descriptor for globalnetEnabled
    • - -
    • "WARNING" Add a spec descriptor for broker
    • - -
    • "WARNING" Add a spec descriptor for brokerK8sApiServer
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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 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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    noobaa-operator -

    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 -
    -
      - - -
      -

      For noobaa-operator.v5.8.0:

      - -

    • "ERROR" noobaas.noobaa.io does not have a status descriptor
    • - -
    • "ERROR" backingstores.noobaa.io does not have a status descriptor
    • - -
    • "ERROR" namespacestores.noobaa.io does not have a status descriptor
    • - -
    • "ERROR" bucketclasses.noobaa.io does not have a status descriptor
    • - -
    • "ERROR" cleanupPolicy does not have a spec descriptor
    • - -
    • "ERROR" security does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for cleanupPolicy
    • - -
    • "WARNING" Add a spec descriptor for security
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for type
    • - - -
      -

      For noobaa-operator.v2.1.1:

      - -

    • "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
    • - -
    • "ERROR" backingstores.noobaa.io does not have a status descriptor
    • - -
    • "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
    • - -
    • "ERROR" placementPolicy does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for awsS3
    • - -
    • "WARNING" Add a spec descriptor for placementPolicy
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For noobaa-operator.v5.8.0:

      - - - -
      -

      For noobaa-operator.v2.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: (["backingstores.noobaa.io" "bucketclasses.noobaa.io" "noobaas.noobaa.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    robin-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For robin-operator.v5.3.2-59:

      - - -

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

    NOT USED

    Grade C
    (400)
    vault -

    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 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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For vaultoperator.v0.4.10:

      - - -

    • "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: (["vaults.vault.banzaicloud.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    sealed-secrets-operator-helm -

    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 sealed-secrets-operator-helm.v0.0.2:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" affinity does not have a spec descriptor
    • - -
    • "ERROR" secretName does not have a spec descriptor
    • - -
    • "ERROR" image 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 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

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

      - - -

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

    NOT USED

    Grade D
    (100)
    seldon-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

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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"])
    • - - -
      -

      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"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (400)
    ditto-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 ditto-operator.v0.2.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" mongoDb does not have a spec descriptor
    • - -
    • "ERROR" dittos.iot.eclipse.org does not have a status descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `mongoDb` in Ditto/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for mongoDb
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["dittos.iot.eclipse.org"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    infinispan -

    NOT COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • 2.0.x
    • - -
    • dev-preview
    • - -
    • 2.1.x
    • - -
    • 1.1.x
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      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" name does not have a spec descriptor
    • - -
    • "ERROR" adminAuth 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 clusterName
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for adminAuth
    • - - -
      -

      For infinispan-operator.v2.1.5:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" container does not have a spec descriptor
    • - -
    • "ERROR" adminAuth does not have a spec descriptor
    • - -
    • "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 infinispan-operator.v1.1.2:

      - - -

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

      For infinispan-operator.v1.1.2:

      - - -

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

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For infinispan-operator.v2.0.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"])
    • - - -
      -

      For infinispan-operator.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: (["caches.infinispan.org" "infinispans.infinispan.org"])
    • - - -
      -

      For infinispan-operator.v2.1.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: (["backups.infinispan.org" "batches.infinispan.org" "caches.infinispan.org" "infinispans.infinispan.org" "restores.infinispan.org"])
    • - - -
      -

      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"])
    • - - -
      -

      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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    keda -

    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 keda.v2.4.0:

      - -

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

    PASS

    - - -

    NOT USED

    Grade B
    (700)
    kubernetes-nmstate-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 -
    -
      - - -
      -

      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 -
    -
      - - -
      -

      For kubernetes-nmstate-operator.v0.47.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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    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:

      - -

    • "ERROR" kubernetesConfig does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" redisExporter does not have a spec descriptor
    • - -
    • "ERROR" clusterSize does not have a spec descriptor
    • - -
    • "ERROR" kubernetesConfig does not have a spec descriptor
    • - -
    • "ERROR" redisExporter does not have a spec descriptor
    • - -
    • "ERROR" redisLeader does not have a spec descriptor
    • - -
    • "ERROR" redisFollower does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" redis.redis.redis.opstreelabs.in does not have a status descriptor
    • - -
    • "ERROR" redisclusters.redis.redis.opstreelabs.in does not have a status descriptor
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (600)
    vault-helm -

    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 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 -
    -
      - - -
      -

      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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    argocd-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 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 -
    -
      - - -
      -

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

    NOT USED

    Grade D
    (200)
    dell-csi-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    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 -
    -
      - - -
      -

      For dell-csi-operator.v1.4.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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (700)
    federatorai -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For federatorai.v4.3.958:

      - -

    • "ERROR" keycode 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 spec field `selfDriving` in AlamedaService/v1alpha1
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For federatorai.v4.3.958:

      - - -

    • "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: (["alamedaservices.federatorai.containers.ai"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    hpe-csi-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hpe-csi-operator.v2.0.0:

      - -

    • "ERROR" kubeletRootDir does not have a spec descriptor
    • - -
    • "ERROR" disableNodeGetVolumeStats does not have a spec descriptor
    • - -
    • "ERROR" disable does not have a spec descriptor
    • - -
    • "ERROR" cspClientTimeout does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for kubeletRootDir
    • - -
    • "WARNING" Add a spec descriptor for disableNodeGetVolumeStats
    • - -
    • "WARNING" Add a spec descriptor for disable
    • - -
    • "WARNING" Add a spec descriptor for cspClientTimeout
    • - - - -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (700)
    ibmcloud-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 -
    -
      - - -
      -

      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:

      - - -

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

    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 -
    -
      - - -
      -

      For machine-deletion.v0.0.1:

      - -

    • "ERROR" template does not have a spec descriptor
    • - -
    • "ERROR" machinedeletions.machine-deletion.medik8s.io does not have a status descriptor
    • - -
    • "ERROR" machinedeletiontemplates.machine-deletion.medik8s.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for template
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For machine-deletion.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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    skydive-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 -
    -
      - - -
      -

      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 -
    -
      - - -
      -

      For skydive-operator.v0.0.50:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    traefikee-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For traefikee-operator.v2.1.1:

      - -

    • "ERROR" traefikees.containo.us does not have a status descriptor
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for Traefikee/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for cluster
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For traefikee-operator.v2.1.1:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    appsody-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

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For appsody-operator.v0.6.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    couchdb-operator -

    NOT COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • beta
    • - -
    • v1.4
    • - -
    • v1.0
    • - -
    • v1.1
    • - -
    • v1.2
    • - -
    • v1.3
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      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" 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
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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.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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For couchdb-operator.v1.4.3:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    etcd -

    NOT COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • alpha
    • - -
    • clusterwide-alpha
    • - -
    • singlenamespace-alpha
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "ERROR" backupStorageType does not have a spec descriptor
    • - -
    • "ERROR" s3 does not have a spec 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 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 s3
    • - -
    • "WARNING" Add a spec descriptor for storageType
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    falco -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For falco-operator.v0.7.6:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" ebpf does not have a spec descriptor
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For falco-operator.v0.7.6:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    nsm-operator-registry -

    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 nsm-operator.v0.0.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkServiceEndpoint: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkService: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value networkservicemesh.io/v1alpha1, Kind=NetworkServiceManager: provided API should have an example annotation
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    nuxeo-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For nuxeo-operator.v0.7.1:

      - -

    • "ERROR" nuxeos.appzygy.net does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" nodeSets does not have a spec descriptor
    • - -
    • "ERROR" nuxeoImage does not have a spec descriptor
    • - -
    • "ERROR" version does not have a spec descriptor
    • - -
    • "ERROR" access does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for nodeSets
    • - -
    • "WARNING" Add a spec descriptor for nuxeoImage
    • - -
    • "WARNING" Add a spec descriptor for version
    • - -
    • "WARNING" Add a spec descriptor for access
    • - - - -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

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

    NOT USED

    Grade D
    (200)
    cassandra-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 cassandra-operator.v2.0.0:

      - -

    • "ERROR" storageLocation does not have a spec descriptor
    • - -
    • "ERROR" snapshotTag 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
    • - - -
    • "WARNING" Add a spec descriptor for storageLocation
    • - -
    • "WARNING" Add a spec descriptor for snapshotTag
    • - -
    • "WARNING" Add a spec descriptor for cdc
    • - -
    • "WARNING" Add a spec descriptor for size
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cassandra-operator.v2.0.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    eunomia -

    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 eunomia.v0.1.7:

      - -

    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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)
    ibmcloud-iam-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 -
    -
      - - -
      -

      For ibmcloud-iam-operator.v0.1.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    mariadb-operator-app -

    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 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" 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 dataStoragePath
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["backups.mariadb.persistentsys" "mariadbs.mariadb.persistentsys" "monitors.mariadb.persistentsys"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    strimzi-kafka-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • 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
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      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
    • - - -
      -

      For strimzi-cluster-operator.v0.24.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" 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 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.25.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" config 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
    • - - -
    • "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.25.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" config 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
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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:

      - - - -
      -

      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"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    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

    - - -
    -

    PASS

    - - -

    NOT USED

    Grade A
    (900)
    anchore-engine -

    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 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
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For anchore-engine-operator.v0.1.3:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    instana-agent -

    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 instana-agent-operator.v1.0.5:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" agents.instana.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 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For instana-agent-operator.v1.0.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: (["agents.instana.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    percona-server-mongodb-operator -

    NOT COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • original
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "WARNING" Add a spec descriptor for storageName
    • - -
    • "WARNING" Add a spec descriptor for clusterName
    • - -
    • "WARNING" Add a spec descriptor for backupName
    • - - -
      -

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

      - -

    • "ERROR" perconaservermongodbs.psmdb.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaservermongodbrestores.psmdb.percona.com does not have a status descriptor
    • - -
    • "ERROR" perconaservermongodbbackups.psmdb.percona.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
    • - -
    • "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" secrets does not have a spec descriptor
    • - -
    • "ERROR" pmm does not have a spec descriptor
    • - -
    • "ERROR" replsets does not have a spec descriptor
    • - -
    • "ERROR" mongod does not have a spec descriptor
    • - -
    • "ERROR" backup does not have a spec descriptor
    • - -
    • "ERROR" backupName does not have a spec descriptor
    • - -
    • "ERROR" clusterName does not have a spec descriptor
    • - -
    • "ERROR" psmdbCluster does not have a spec descriptor
    • - -
    • "ERROR" storageName does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for PerconaServerMongoDB/v1-3-0
    • - -
    • "WARNING" Add CRD validation for PerconaServerMongoDBRestore/v1
    • - -
    • "WARNING" Add CRD validation for PerconaServerMongoDBBackup/v1
    • - -
    • "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 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For percona-server-mongodb-operator.v1.9.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: (["perconaservermongodbbackups.psmdb.percona.com" "perconaservermongodbrestores.psmdb.percona.com" "perconaservermongodbs.psmdb.percona.com"])
    • - - -
      -

      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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    qserv-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 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
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for storage
    • - -
    • "WARNING" Add a spec descriptor for czar
    • - -
    • "WARNING" Add a spec descriptor for imagePullPolicy
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For qserv-operator.v2021.8.1-rc3:

      - - -

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

    NOT USED

    Grade D
    (200)
    flux -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For flux.v0.17.0:

      - -

    • "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
    • - - - -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (700)
    kiali -

    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 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
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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 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.
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    lightbend-console-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 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
    • - -
    • "WARNING" Add a spec descriptor for prometheusMemoryRequest
    • - -
    • "WARNING" Add a spec descriptor for rbacApiVersion
    • - -
    • "WARNING" Add a spec descriptor for alpineVersion
    • - -
    • "WARNING" Add a spec descriptor for esGrafanaImage
    • - -
    • "WARNING" Add a spec descriptor for daemonSetApiVersion
    • - -
    • "WARNING" Add a spec descriptor for imageCredentials
    • - -
    • "WARNING" Add a spec descriptor for esConsoleVersion
    • - -
    • "WARNING" Add a spec descriptor for esGrafanaVolumeSize
    • - -
    • "WARNING" Add a spec descriptor for prometheusImage
    • - -
    • "WARNING" Add a spec descriptor for configMapReloadVersion
    • - -
    • "WARNING" Add a spec descriptor for consoleUIConfig
    • - -
    • "WARNING" Add a spec descriptor for apiGroupVersion
    • - -
    • "WARNING" Add a spec descriptor for busyboxImage
    • - -
    • "WARNING" Add a spec descriptor for enableElasticsearch
    • - -
    • "WARNING" Add a spec descriptor for esGrafanaVersion
    • - -
    • "WARNING" Add a spec descriptor for esMonitorImage
    • - -
    • "WARNING" Add a spec descriptor for goDnsmasqImage
    • - -
    • "WARNING" Add a spec descriptor for alertManagers
    • - -
    • "WARNING" Add a spec descriptor for alpineImage
    • - -
    • "WARNING" Add a spec descriptor for kubeStateMetricsImage
    • - -
    • "WARNING" Add a spec descriptor for exposeServices
    • - -
    • "WARNING" Add a spec descriptor for usePersistentVolumes
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For lightbend-console-operator.v0.0.1:

      - -

    • "ERROR" metadata.namespace: Forbidden: not allowed on this 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: (["consoles.app.lightbend.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (0)
    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:

      - -

    • "ERROR" alerting does not have a spec descriptor
    • - -
    • "ERROR" selector does not have a spec descriptor
    • - -
    • "ERROR" selector does not have a spec descriptor
    • - -
    • "ERROR" alertmanagerConfigSelector does not have a spec descriptor
    • - -
    • "ERROR" groups does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" receivers does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" prometheuses.monitoring.coreos.com does not have a status descriptor
    • - -
    • "ERROR" servicemonitors.monitoring.coreos.com does not have a status descriptor
    • - -
    • "ERROR" podmonitors.monitoring.coreos.com does not have a status descriptor
    • - -
    • "ERROR" alertmanagers.monitoring.coreos.com does not have a status descriptor
    • - -
    • "ERROR" prometheusrules.monitoring.coreos.com does not have a status descriptor
    • - -
    • "ERROR" alertmanagerconfigs.monitoring.coreos.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for alerting
    • - -
    • "WARNING" Add a spec descriptor for selector
    • - -
    • "WARNING" Add a spec descriptor for selector
    • - -
    • "WARNING" Add a spec descriptor for alertmanagerConfigSelector
    • - -
    • "WARNING" Add a spec descriptor for groups
    • - -
    • "WARNING" Add a spec descriptor for route
    • - -
    • "WARNING" Add a spec descriptor for receivers
    • - -
    • "WARNING" Warning: Value monitoring.coreos.com/v1, Kind=Probe: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value monitoring.coreos.com/v1, Kind=ThanosRuler: provided API should have an example annotation
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For prometheusoperator.0.47.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" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    apicurio-registry -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

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

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

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

      - -

    • "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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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 B
    (600)
    appranix -

    NOT COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • deprecated
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    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 -
    -
      - - -
      -

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

    NOT USED

    Grade D
    (200)
    enmasse -

    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 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
    • - -
    • "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" resourceLimits does not have a spec descriptor
    • - -
    • "ERROR" addressPlans does not have a spec descriptor
    • - -
    • "ERROR" addressSpaceType 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
    • - -
    • "ERROR" adapters does not have a spec descriptor
    • - -
    • "ERROR" services does not have a spec descriptor
    • - -
    • "ERROR" downstreamStrategy does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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 resourceLimits
    • - -
    • "WARNING" Add a spec descriptor for addressPlans
    • - -
    • "WARNING" Add a spec descriptor for addressSpaceType
    • - -
    • "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 authorization
    • - -
    • "WARNING" Add a spec descriptor for adapters
    • - -
    • "WARNING" Add a spec descriptor for services
    • - -
    • "WARNING" Add a spec descriptor for downstreamStrategy
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For enmasse.0.32.2:

      - - -

    • "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: (["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
    • - -
    • "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 -
    -
      - - -
      -

      For esindex-operator.v0.1.0:

      - - -

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

    NOT USED

    Grade D
    (300)
    siddhi-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 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
    • - - -
    • "WARNING" Add CRD validation for spec field `apps` in SiddhiProcess/v1alpha2
    • - -
    • "WARNING" Add CRD validation for spec field `container` in SiddhiProcess/v1alpha2
    • - -
    • "WARNING" Add a spec descriptor for apps
    • - -
    • "WARNING" Add a spec descriptor for container
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For siddhi-operator.v0.2.2:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    wildfly -

    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 -
    -
      - - -
      -

      For wildfly-operator.v0.5.2:

      - -

    • "ERROR" wildflyservers.wildfly.org does not have a status descriptor
    • - - - - -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (600)
    pystol -

    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 -
    -
      - - -
      -

      For pystol.v0.8.17:

      - -

    • "ERROR" pystolactions.pystol.org does not have a status descriptor
    • - - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["pystolactions.pystol.org"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    argocd-operator-helm -

    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 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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For argocd-operator-helm.v0.0.7:

      - - -

    • "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: (["argocds.argoproj.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    azure-service-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For azure-service-operator.v1.0.28631:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" apimgmtapis.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" apimservices.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" appinsights.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" appinsightsapikeys.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azureloadbalancers.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurenetworkinterfaces.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurenetworkinterfaces.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurepublicipaddresses.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azuresqlmanagedusers.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azuresqlusers.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azuresqlvnetrules.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azuresqlactions.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azuresqldatabases.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" azuresqlservers.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurevmscalesets.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurevirtualmachines.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurevirtualmachines.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" azurevirtualmachineextensions.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" blobcontainers.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" consumergroups.azure.microsoft.com does not have a status descriptor
    • - -
    • "ERROR" cosmosdbs.azure.microsoft.com does not have a status 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" vnetResourceGroup does not have a spec descriptor
    • - -
    • "ERROR" vnetSubnetName does not have a spec descriptor
    • - -
    • "ERROR" appInsightsName does not have a spec descriptor
    • - -
    • "ERROR" appInsightsResourceGroup does not have a spec descriptor
    • - -
    • "ERROR" tier does not have a spec descriptor
    • - -
    • "ERROR" vnetName does not have a spec descriptor
    • - -
    • "ERROR" vnetType does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" applicationType does not have a spec descriptor
    • - -
    • "ERROR" kind does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" appInsights does not have a spec descriptor
    • - -
    • "ERROR" authSDKControlChannel does not have a spec descriptor
    • - -
    • "ERROR" readTelemetry does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" writeAnnotations does not have a spec descriptor
    • - -
    • "ERROR" backendPort does not have a spec descriptor
    • - -
    • "ERROR" frontendPortRangeEnd does not have a spec descriptor
    • - -
    • "ERROR" frontendPortRangeStart does not have a spec descriptor
    • - -
    • "ERROR" inboundNatPoolName does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" publicIPAddressName does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" backendAddressPoolName does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" publicIPAddressName does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" subnetName does not have a spec descriptor
    • - -
    • "ERROR" vnetName does not have a spec descriptor
    • - -
    • "ERROR" publicIPAddressName does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" subnetName does not have a spec descriptor
    • - -
    • "ERROR" vnetName does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" skuName does not have a spec descriptor
    • - -
    • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" publicIPAddressVersion does not have a spec descriptor
    • - -
    • "ERROR" publicIPAllocationMethod does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" publicIPAddressVersion does not have a spec descriptor
    • - -
    • "ERROR" publicIPAllocationMethod does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" skuName does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" publicIPAddressVersion does not have a spec descriptor
    • - -
    • "ERROR" publicIPAllocationMethod does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" skuName does not have a spec descriptor
    • - -
    • "ERROR" idleTimeoutInMinutes does not have a spec descriptor
    • - -
    • "ERROR" dbName does not have a spec descriptor
    • - -
    • "ERROR" managedIdentityClientId does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" dbName does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "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" serverName does not have a spec descriptor
    • - -
    • "ERROR" resourcegroup does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" edition does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" edition does not have a spec descriptor
    • - -
    • "ERROR" location 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" secondaryserver does not have a spec descriptor
    • - -
    • "ERROR" secondaryserverresourcegroup does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" databaselist does not have a spec descriptor
    • - -
    • "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
    • - -
    • "ERROR" resourcegroup does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" startipaddress does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourcegroup does not have a spec descriptor
    • - -
    • "ERROR" resourcegroup does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" osType does not have a spec descriptor
    • - -
    • "ERROR" platformImageURN does not have a spec descriptor
    • - -
    • "ERROR" subnetName does not have a spec descriptor
    • - -
    • "ERROR" adminUserName does not have a spec descriptor
    • - -
    • "ERROR" backendAddressPoolName does not have a spec descriptor
    • - -
    • "ERROR" inboundNatPoolName does not have a spec descriptor
    • - -
    • "ERROR" sshPublicKeyData does not have a spec descriptor
    • - -
    • "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
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" networkInterfaceName does not have a spec descriptor
    • - -
    • "ERROR" osType does not have a spec descriptor
    • - -
    • "ERROR" platformImageURN does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" sshPublicKeyData does not have a spec descriptor
    • - -
    • "ERROR" vmSize does not have a spec descriptor
    • - -
    • "ERROR" adminUserName does not have a spec descriptor
    • - -
    • "ERROR" osType does not have a spec descriptor
    • - -
    • "ERROR" platformImageURN does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" sshPublicKeyData does not have a spec descriptor
    • - -
    • "ERROR" vmSize does not have a spec descriptor
    • - -
    • "ERROR" adminUserName does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" networkInterfaceName does not have a spec descriptor
    • - -
    • "ERROR" forceUpdateTag does not have a spec descriptor
    • - -
    • "ERROR" protectedSettings does not have a spec descriptor
    • - -
    • "ERROR" publisher does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" settings does not have a spec descriptor
    • - -
    • "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
    • - -
    • "ERROR" eventHub does not have a spec descriptor
    • - -
    • "ERROR" namespace does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" kind 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" location does not have a spec descriptor
    • - -
    • "ERROR" locations does not have a spec descriptor
    • - -
    • "ERROR" properties does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" ipRules does not have a spec descriptor
    • - -
    • "ERROR" kind does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" namespace does not have a spec descriptor
    • - -
    • "ERROR" properties does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" authorizationRule does not have a spec descriptor
    • - -
    • "ERROR" namespace does not have a spec descriptor
    • - -
    • "ERROR" properties does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" authorizationRule does not have a spec descriptor
    • - -
    • "ERROR" location 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" sku does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" accessPolicies does not have a spec descriptor
    • - -
    • "ERROR" enableSoftDelete does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" networkPolicies does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" enableSoftDelete does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" keySize does not have a spec descriptor
    • - -
    • "ERROR" keyVault 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" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" startIpAddress does not have a spec descriptor
    • - -
    • "ERROR" endIpAddress 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
    • - -
    • "ERROR" startIpAddress does not have a spec descriptor
    • - -
    • "ERROR" createMode does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" replicaProperties does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" serverVersion does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" sslEnforcement does not have a spec descriptor
    • - -
    • "ERROR" createMode does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" serverVersion does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" sslEnforcement does not have a spec descriptor
    • - -
    • "ERROR" createMode does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" dbName does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "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
    • - -
    • "ERROR" startIpAddress does not have a spec descriptor
    • - -
    • "ERROR" startIpAddress 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
    • - -
    • "ERROR" createMode does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" replicaProperties does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" serverVersion does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" sslEnforcement does not have a spec descriptor
    • - -
    • "ERROR" createMode does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" serverVersion does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" sslEnforcement does not have a spec descriptor
    • - -
    • "ERROR" dbName does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" roles 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" 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" ignoreMissingServiceEndpoint 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" actionName does not have a spec descriptor
    • - -
    • "ERROR" cacheName does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" properties does not have a spec descriptor
    • - -
    • "ERROR" redisCache does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" supportsHttpsTrafficOnly does not have a spec descriptor
    • - -
    • "ERROR" accessTier does not have a spec descriptor
    • - -
    • "ERROR" kind does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" subnets does not have a spec descriptor
    • - -
    • "ERROR" addressSpace does not have a spec descriptor
    • - -
    • "ERROR" subnets does not have a spec descriptor
    • - -
    • "ERROR" addressSpace does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup 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
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" serverVersion does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" sslEnforcement does not have a spec descriptor
    • - -
    • "ERROR" createMode does not have a spec descriptor
    • - -
    • "ERROR" createMode does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" serverVersion does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" sslEnforcement does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" sku does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" secondaryServer does not have a spec descriptor
    • - -
    • "ERROR" secondaryServerResourceGroup does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" databaseList does not have a spec descriptor
    • - -
    • "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
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" startIpAddress does not have a spec descriptor
    • - -
    • "ERROR" location does not have a spec descriptor
    • - -
    • "ERROR" resourceGroup does not have a spec descriptor
    • - - -
    • "WARNING" Warning: Value azure.microsoft.com/v1alpha2, Kind=MySQLAADUser: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=MySQLServerAdministrator: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value azure.microsoft.com/v1alpha2, Kind=MySQLUser: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=MySQLAADUser: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value azure.microsoft.com/v1alpha1, Kind=CosmosDBSQLDatabase: provided API should have an example annotation
    • - -
    • "WARNING" Add a spec descriptor for apiId
    • - -
    • "WARNING" Add a spec descriptor for apiService
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for publisherEmail
    • - -
    • "WARNING" Add a spec descriptor for publisherName
    • - -
    • "WARNING" Add a spec descriptor for vnetResourceGroup
    • - -
    • "WARNING" Add a spec descriptor for vnetSubnetName
    • - -
    • "WARNING" Add a spec descriptor for appInsightsName
    • - -
    • "WARNING" Add a spec descriptor for appInsightsResourceGroup
    • - -
    • "WARNING" Add a spec descriptor for tier
    • - -
    • "WARNING" Add a spec descriptor for vnetName
    • - -
    • "WARNING" Add a spec descriptor for vnetType
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for applicationType
    • - -
    • "WARNING" Add a spec descriptor for kind
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for appInsights
    • - -
    • "WARNING" Add a spec descriptor for authSDKControlChannel
    • - -
    • "WARNING" Add a spec descriptor for readTelemetry
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for writeAnnotations
    • - -
    • "WARNING" Add a spec descriptor for backendPort
    • - -
    • "WARNING" Add a spec descriptor for frontendPortRangeEnd
    • - -
    • "WARNING" Add a spec descriptor for frontendPortRangeStart
    • - -
    • "WARNING" Add a spec descriptor for inboundNatPoolName
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for publicIPAddressName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for backendAddressPoolName
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for publicIPAddressName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for subnetName
    • - -
    • "WARNING" Add a spec descriptor for vnetName
    • - -
    • "WARNING" Add a spec descriptor for publicIPAddressName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for subnetName
    • - -
    • "WARNING" Add a spec descriptor for vnetName
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for skuName
    • - -
    • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for publicIPAddressVersion
    • - -
    • "WARNING" Add a spec descriptor for publicIPAllocationMethod
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for publicIPAddressVersion
    • - -
    • "WARNING" Add a spec descriptor for publicIPAllocationMethod
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for skuName
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for publicIPAddressVersion
    • - -
    • "WARNING" Add a spec descriptor for publicIPAllocationMethod
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for skuName
    • - -
    • "WARNING" Add a spec descriptor for idleTimeoutInMinutes
    • - -
    • "WARNING" Add a spec descriptor for dbName
    • - -
    • "WARNING" Add a spec descriptor for managedIdentityClientId
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for dbName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for subnetName
    • - -
    • "WARNING" Add a spec descriptor for vNetName
    • - -
    • "WARNING" Add a spec descriptor for vNetResourceGroup
    • - -
    • "WARNING" Add a spec descriptor for vNetSubscriptionID
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for serverName
    • - -
    • "WARNING" Add a spec descriptor for resourcegroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for edition
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for edition
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourcegroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for resourcegroup
    • - -
    • "WARNING" Add a spec descriptor for secondaryserver
    • - -
    • "WARNING" Add a spec descriptor for secondaryserverresourcegroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for databaselist
    • - -
    • "WARNING" Add a spec descriptor for failovergraceperiod
    • - -
    • "WARNING" Add a spec descriptor for failoverpolicy
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourcegroup
    • - -
    • "WARNING" Add a spec descriptor for resourcegroup
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for osType
    • - -
    • "WARNING" Add a spec descriptor for platformImageURN
    • - -
    • "WARNING" Add a spec descriptor for subnetName
    • - -
    • "WARNING" Add a spec descriptor for adminUserName
    • - -
    • "WARNING" Add a spec descriptor for backendAddressPoolName
    • - -
    • "WARNING" Add a spec descriptor for inboundNatPoolName
    • - -
    • "WARNING" Add a spec descriptor for sshPublicKeyData
    • - -
    • "WARNING" Add a spec descriptor for virtualNetworkName
    • - -
    • "WARNING" Add a spec descriptor for vmSize
    • - -
    • "WARNING" Add a spec descriptor for capacity
    • - -
    • "WARNING" Add a spec descriptor for loadBalancerName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for networkInterfaceName
    • - -
    • "WARNING" Add a spec descriptor for osType
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for adminUserName
    • - -
    • "WARNING" Add a spec descriptor for osType
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for adminUserName
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for networkInterfaceName
    • - -
    • "WARNING" Add a spec descriptor for forceUpdateTag
    • - -
    • "WARNING" Add a spec descriptor for protectedSettings
    • - -
    • "WARNING" Add a spec descriptor for publisher
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for settings
    • - -
    • "WARNING" Add a spec descriptor for typeHandlerVersion
    • - -
    • "WARNING" Add a spec descriptor for autoUpgradeMinorVersion
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for typeName
    • - -
    • "WARNING" Add a spec descriptor for vmName
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for eventHub
    • - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for kind
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for locations
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for ipRules
    • - -
    • "WARNING" Add a spec descriptor for kind
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for authorizationRule
    • - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for authorizationRule
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for accessPolicies
    • - -
    • "WARNING" Add a spec descriptor for enableSoftDelete
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for networkPolicies
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for enableSoftDelete
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for keySize
    • - -
    • "WARNING" Add a spec descriptor for keyVault
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for startIpAddress
    • - -
    • "WARNING" Add a spec descriptor for endIpAddress
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for createMode
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for replicaProperties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for serverVersion
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for sslEnforcement
    • - -
    • "WARNING" Add a spec descriptor for createMode
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for serverVersion
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for sslEnforcement
    • - -
    • "WARNING" Add a spec descriptor for createMode
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for dbName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for subnetName
    • - -
    • "WARNING" Add a spec descriptor for vNetName
    • - -
    • "WARNING" Add a spec descriptor for vNetResourceGroup
    • - -
    • "WARNING" Add a spec descriptor for vNetSubscriptionID
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for startIpAddress
    • - -
    • "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 createMode
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for replicaProperties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for serverVersion
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for sslEnforcement
    • - -
    • "WARNING" Add a spec descriptor for createMode
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for serverVersion
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for sslEnforcement
    • - -
    • "WARNING" Add a spec descriptor for dbName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for subnetName
    • - -
    • "WARNING" Add a spec descriptor for vNetName
    • - -
    • "WARNING" Add a spec descriptor for vNetResourceGroup
    • - -
    • "WARNING" Add a spec descriptor for vNetSubscriptionID
    • - -
    • "WARNING" Add a spec descriptor for ignoreMissingServiceEndpoint
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for actionName
    • - -
    • "WARNING" Add a spec descriptor for cacheName
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for properties
    • - -
    • "WARNING" Add a spec descriptor for redisCache
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for supportsHttpsTrafficOnly
    • - -
    • "WARNING" Add a spec descriptor for accessTier
    • - -
    • "WARNING" Add a spec descriptor for kind
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for subnets
    • - -
    • "WARNING" Add a spec descriptor for addressSpace
    • - -
    • "WARNING" Add a spec descriptor for subnets
    • - -
    • "WARNING" Add a spec descriptor for addressSpace
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for serverVersion
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for sslEnforcement
    • - -
    • "WARNING" Add a spec descriptor for createMode
    • - -
    • "WARNING" Add a spec descriptor for createMode
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for serverVersion
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for sslEnforcement
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for sku
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - -
    • "WARNING" Add a spec descriptor for secondaryServer
    • - -
    • "WARNING" Add a spec descriptor for secondaryServerResourceGroup
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for databaseList
    • - -
    • "WARNING" Add a spec descriptor for failoverGracePeriod
    • - -
    • "WARNING" Add a spec descriptor for failoverPolicy
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for location
    • - -
    • "WARNING" Add a spec descriptor for resourceGroup
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (700)
    logging-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 -
    -
      - - -
      -

      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)
    nexus-operator-m88i -

    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 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
    • - - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add a spec descriptor for useRedHatImage
    • - -
    • "WARNING" Add a spec descriptor for networking
    • - -
    • "WARNING" Add a spec descriptor for persistence
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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)
    redis-enterprise -

    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.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
    • - - -
    • "WARNING" Add CRD validation for RedisEnterpriseCluster/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseImageSpec
    • - -
    • "WARNING" Add a spec descriptor for persistentSpec
    • - -
    • "WARNING" Add a spec descriptor for uiServiceType
    • - -
    • "WARNING" Add a spec descriptor for username
    • - -
    • "WARNING" Add a spec descriptor for redisEnterpriseNodeResources
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For redis-enterprise-operator.v0.0.1:

      - - -

    • "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: (["redisenterpriseclusters.app.redislabs.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    rook-ceph -

    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-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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For rook-ceph.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: (["cephblockpools.ceph.rook.io" "cephclusters.ceph.rook.io" "cephnfses.ceph.rook.io" "cephobjectstores.ceph.rook.io" "cephobjectstoreusers.ceph.rook.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    snapscheduler -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      - - -
      -

      For snapscheduler.v2.0.0:

      - -

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

      For snapscheduler.v2.0.0:

      - -

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

    PASS

    - - -

    NOT USED

    Grade B
    (800)
    snyk-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    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 -
    -
      - - -
      -

      For snyk-operator.v1.64.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" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    - -

    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
    • - -
    • "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 login
    • - -
    • "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.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:

      - - -

    • "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)
    pcc-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    USED

    - - -

    USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      - - -
      -

      For pcc-operator.v0.1.0:

      - -

    • "ERROR" consoles.pcc.paloaltonetworks.com does not have a status descriptor
    • - -
    • "ERROR" consoledefenders.pcc.paloaltonetworks.com does not have a status descriptor
    • - -
    • "ERROR" defenders.pcc.paloaltonetworks.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For pcc-operator.v0.1.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For portworx-operator.v1.5.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" error spec does not exist
    • - - - -
      -

      For portworx-operator.v1.5.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" error spec does not exist
    • - - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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"])
    • - - -
      -

      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"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For project-quay.v1.1.2:

      - -

    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "ERROR" quayecosystems.redhatcop.redhat.io does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" clair does not have a spec descriptor
    • - -
    • "ERROR" quay does not have a spec descriptor
    • - -
    • "ERROR" clair does not have a spec descriptor
    • - -
    • "ERROR" quay does not have a spec descriptor
    • - -
    • "ERROR" redis does not have a spec descriptor
    • - -
    • "ERROR" quay does not have a spec descriptor
    • - -
    • "ERROR" quay does not have a spec descriptor
    • - -
    • "ERROR" clair does not have a spec descriptor
    • - -
    • "ERROR" quay does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for clair
    • - -
    • "WARNING" Add a spec descriptor for quay
    • - -
    • "WARNING" Add a spec descriptor for clair
    • - -
    • "WARNING" Add a spec descriptor for quay
    • - -
    • "WARNING" Add a spec descriptor for redis
    • - -
    • "WARNING" Add a spec descriptor for quay
    • - -
    • "WARNING" Add a spec descriptor for quay
    • - -
    • "WARNING" Add a spec descriptor for clair
    • - -
    • "WARNING" Add a spec descriptor for quay
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For project-quay.v1.1.2:

      - - -

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

    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 -
    -
      - - -
      -

      For starboard-operator.v0.11.0:

      - -

    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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
    • - -
    • "WARNING" Add a spec descriptor for coordinator
    • - -
    • "WARNING" Add a spec descriptor for worker
    • - -
    • "WARNING" Add a spec descriptor for imageDetails
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For steerd-presto-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: (["prestos.falarica.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    wso2am-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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 -
    -
      - - -
      -

      For wso2am-operator.v1.1.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" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

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

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Warning: Value : (project-quay-container-security-operator.v1.0.6) example annotations not found
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

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

      - - -

    • "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" this bundle is using APIs which were deprecated 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" (project-quay-container-security-operator.v1.0.6) example annotations not found
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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 t8c-operator.v8.2.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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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:

      - - -

    • "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"])
    • - - - -
    -
    - -

    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:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" managers.tf.tungsten.io does not have a status descriptor
    • - -
    • "ERROR" commonConfiguration does not have a spec descriptor
    • - -
    • "ERROR" services does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for commonConfiguration
    • - -
    • "WARNING" Add a spec descriptor for services
    • - -
    • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Vrouter: 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 tf.tungsten.io/v1alpha1, Kind=Zookeeper: 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 tf.tungsten.io/v1alpha1, Kind=AnalyticsAlarm: 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 tf.tungsten.io/v1alpha1, Kind=Cassandra: 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 tf.tungsten.io/v1alpha1, Kind=Control: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value tf.tungsten.io/v1alpha1, Kind=Kubemanager: provided API should have an example annotation
    • - - -
      -

      For tf-operator.latest:

      - -

    • "ERROR" error getting custom resources
    • - -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • - -
    • "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 tf.tungsten.io/v1alpha1, Kind=Vrouter: 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 tf.tungsten.io/v1alpha1, Kind=Analytics: 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 tf.tungsten.io/v1alpha1, Kind=Cassandra: 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 tf.tungsten.io/v1alpha1, Kind=Control: 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 tf.tungsten.io/v1alpha1, Kind=AnalyticsSnmp: 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 tf.tungsten.io/v1alpha1, Kind=Rabbitmq: 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 tf.tungsten.io/v1alpha1, Kind=Config: provided API should have an example annotation
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For tf-operator.v0.0.1-2011:

      - - -

    • "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" this bundle is using APIs which were deprecated 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
    • - -
    • "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 tf-operator.latest:

      - - -

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

    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 -
    -
      - - -
      -

      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" Error: Value edgefs.rook.io/v1, Kind=S3: example must have a provided API
    • - -
    • "ERROR" Error: Value edgefs.rook.io/v1, Kind=S3X: example must have a provided API
    • - -
    • "ERROR" Error: Value edgefs.rook.io/v1, Kind=SWIFT: example must have a provided API
    • - -
    • "ERROR" Error: Value edgefs.rook.io/v1, Kind=ISCSI: example must have a provided API
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" edgefsImageName does not have a spec descriptor
    • - -
    • "ERROR" serviceAccount does not have a spec descriptor
    • - -
    • "ERROR" dataDirHostPath does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" annotations does not have a spec descriptor
    • - -
    • "ERROR" remoteURL does not have a spec descriptor
    • - -
    • "ERROR" direction does not have a spec descriptor
    • - -
    • "ERROR" instances does not have a spec descriptor
    • - -
    • "ERROR" instances does not have a spec descriptor
    • - -
    • "ERROR" instances does not have a spec descriptor
    • - -
    • "ERROR" instances does not have a spec descriptor
    • - -
    • "ERROR" clusters.edgefs.rook.io does not have a status descriptor
    • - -
    • "ERROR" iscsis.edgefs.rook.io does not have a status descriptor
    • - -
    • "ERROR" isgws.edgefs.rook.io does not have a status descriptor
    • - -
    • "ERROR" nfss.edgefs.rook.io does not have a status descriptor
    • - -
    • "ERROR" s3s.edgefs.rook.io does not have a status descriptor
    • - -
    • "ERROR" s3xs.edgefs.rook.io does not have a status descriptor
    • - -
    • "ERROR" swifts.edgefs.rook.io does not have a status descriptor
    • - - -
    • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=ISGW: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=S3: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=S3X: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=SWIFT: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=NFS: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value edgefs.rook.io/v1beta1, Kind=ISCSI: provided API should have an example annotation
    • - -
    • "WARNING" Add a spec descriptor for edgefsImageName
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for dataDirHostPath
    • - -
    • "WARNING" Add a spec descriptor for storage
    • - -
    • "WARNING" Add a spec descriptor for annotations
    • - -
    • "WARNING" Add a spec descriptor for remoteURL
    • - -
    • "WARNING" Add a spec descriptor for direction
    • - -
    • "WARNING" Add a spec descriptor for instances
    • - -
    • "WARNING" Add a spec descriptor for instances
    • - -
    • "WARNING" Add a spec descriptor for instances
    • - -
    • "WARNING" Add a spec descriptor for instances
    • - - - -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "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
    (0)
    camel-k -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      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" source does not have a spec descriptor
    • - -
    • "ERROR" sink does not have a spec descriptor
    • - -
    • "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
    • - - -
    • "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.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
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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" 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
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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.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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For camel-k-operator.v1.3.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: (["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 camel-k-operator.v1.5.1:

      - - - -
      -

      For camel-k-operator.v1.5.1:

      - - - -
      -

      For camel-k-operator.v1.4.1:

      - - - - -

    -
    - -

    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 -
    -
      - - -
      -

      For deployment-validation-operator.v0.0.10:

      - - -

    • "WARNING" Warning: Value : (deployment-validation-operator.v0.0.10) example annotations not found
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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

    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 -
    -
      - - -
      -

      For jenkins-operator.v0.3.0:

      - -

    • "ERROR" jenkins.jenkins.io does not have a status descriptor
    • - -
    • "ERROR" jenkins.jenkins.io does not have a status descriptor
    • - -
    • "ERROR" master does not have a spec descriptor
    • - -
    • "ERROR" seedJobs does not have a spec descriptor
    • - -
    • "ERROR" master does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for Jenkins/v1alpha2
    • - -
    • "WARNING" Add CRD validation for Jenkins/v1alpha2
    • - -
    • "WARNING" Add a spec descriptor for master
    • - -
    • "WARNING" Add a spec descriptor for seedJobs
    • - -
    • "WARNING" Add a spec descriptor for master
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For jenkins-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: (["jenkins.jenkins.io"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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
    • - -
    • "ERROR" mainClass does not have a spec descriptor
    • - -
    • "ERROR" driver does not have a spec descriptor
    • - -
    • "ERROR" executor does not have a spec descriptor
    • - -
    • "ERROR" updateInterval does not have a spec descriptor
    • - -
    • "ERROR" retainedApplications does not have a spec descriptor
    • - -
    • "ERROR" customImage does not have a spec descriptor
    • - -
    • "ERROR" sparkConfiguration does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" expose does not have a spec descriptor
    • - -
    • "ERROR" logDirectory does not have a spec descriptor
    • - -
    • "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 executor
    • - -
    • "WARNING" Add a spec descriptor for updateInterval
    • - -
    • "WARNING" Add a spec descriptor for retainedApplications
    • - -
    • "WARNING" Add a spec descriptor for customImage
    • - -
    • "WARNING" Add a spec descriptor for sparkConfiguration
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for expose
    • - -
    • "WARNING" Add a spec descriptor for logDirectory
    • - -
    • "WARNING" Add CRD validation for SparkCluster/v1
    • - -
    • "WARNING" Add CRD validation for SparkApplication/v1
    • - -
    • "WARNING" Add CRD validation for SparkHistoryServer/v1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For sparkoperator.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: (["sparkapplications.radanalytics.io" "sparkclusters.radanalytics.io" "sparkhistoryservers.radanalytics.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    eclipse-che -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For eclipse-che.v7.35.2:

      - -

    • "ERROR" auth does not have a spec descriptor
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" devWorkspace does not have a spec descriptor
    • - -
    • "ERROR" k8s does not have a spec descriptor
    • - -
    • "ERROR" metrics does not have a spec descriptor
    • - -
    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for auth
    • - -
    • "WARNING" Add a spec descriptor for database
    • - -
    • "WARNING" Add a spec descriptor for devWorkspace
    • - -
    • "WARNING" Add a spec descriptor for k8s
    • - -
    • "WARNING" Add a spec descriptor for metrics
    • - -
    • "WARNING" Add a spec descriptor for server
    • - -
    • "WARNING" Add a spec descriptor for storage
    • - -
    • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheBackupServerConfiguration: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheClusterBackup: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value org.eclipse.che/v1, Kind=CheClusterRestore: provided API should have an example annotation
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For eclipse-che.v7.35.2:

      - - -

    • "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" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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

    - - - +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)
    kubemq-operator -

    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 -
    -
      - - -
      -

      For kubemq-operator.v0.5.1:

      - -

    • "ERROR" Port does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for Port
    • - -
    • "WARNING" Add CRD validation for spec field `Port` in KubemqDashboard/v1alpha1
    • - - -
      -

      For kubemq-operator.v0.3.2:

      - -

    • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
    • - - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubemq-operator.v0.5.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" this bundle is using APIs which were deprecated 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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    sematext -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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 -
    -
      - - -
      -

      For sematext-operator.v1.0.33:

      - - -

    • "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: (["sematextagents.sematext.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    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 -
    -
      - - -
      -

      For wavefront-operator.v0.1.0:

      - -

    • "ERROR" wavefrontproxies.wavefront.com does not have a status descriptor
    • - -
    • "ERROR" wavefrontcollectors.wavefront.com does not have a status descriptor
    • - -
    • "ERROR" enableAutoUpgrade does not have a spec descriptor
    • - -
    • "ERROR" token does not have a spec descriptor
    • - -
    • "ERROR" url does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" daemon does not have a spec descriptor
    • - -
    • "ERROR" enableAutoUpgrade does not have a spec descriptor
    • - -
    • "ERROR" env does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" tolerations does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for enableAutoUpgrade
    • - -
    • "WARNING" Add a spec descriptor for token
    • - -
    • "WARNING" Add a spec descriptor for url
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for daemon
    • - -
    • "WARNING" Add a spec descriptor for enableAutoUpgrade
    • - -
    • "WARNING" Add a spec descriptor for env
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for tolerations
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For wavefront-operator.v0.1.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: (["wavefrontcollectors.wavefront.com" "wavefrontproxies.wavefront.com"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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" instances does not have a spec descriptor
    • - -
    • "ERROR" extensions does not have a spec descriptor
    • - -
    • "ERROR" externalAccess does not have a spec descriptor
    • - -
    • "ERROR" realm does not have a spec descriptor
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For keycloak-operator.v15.0.2:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    sap-btp-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 -
    -
      - - -
      -

      For sap-btp-operator.v0.1.6:

      - -

    • "ERROR" serviceInstanceName does not have a spec descriptor
    • - -
    • "ERROR" serviceOfferingName does not have a spec descriptor
    • - -
    • "ERROR" servicePlanName does not have a spec descriptor
    • - -
    • "ERROR" servicebindings.services.cloud.sap.com does not have a status descriptor
    • - -
    • "ERROR" serviceinstances.services.cloud.sap.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for serviceInstanceName
    • - -
    • "WARNING" Add a spec descriptor for serviceOfferingName
    • - -
    • "WARNING" Add a spec descriptor for servicePlanName
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For sap-btp-operator.v0.1.6:

      - - -

    • "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.
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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

    - - - +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
    • - - -
    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (400)
    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 -
    -
      - - -
      -

      For topolvm-operator.v1.0.0:

      - -

    • "ERROR" topolvmclusters.topolvm.cybozu.com does not have a status descriptor
    • - -
    • "ERROR" logicalvolumes.topolvm.cybozu.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" topolvmVersion does not have a spec descriptor
    • - -
    • "ERROR" deviceClasses does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for topolvmVersion
    • - -
    • "WARNING" Add a spec descriptor for deviceClasses
    • - - -
      -

      For topolvm-operator.v1.0.0:

      - -

    • "ERROR" topolvmclusters.topolvm.cybozu.com does not have a status descriptor
    • - -
    • "ERROR" logicalvolumes.topolvm.cybozu.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" topolvmVersion does not have a spec descriptor
    • - -
    • "ERROR" deviceClasses does not have a spec 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 -
    -
      - - -
      -

      For chaosoperator.v1.9.0:

      - - - -
      -

      For chaosoperator.v0.1.0:

      - -

    • "ERROR" Bundle validation errors: Expecting annotation "operators.operatorframework.io.bundle.channel.default.v1" to have non-empty value
    • - - -
    • "WARNING" Add CRD validation for spec field `experiments` in ChaosEngine/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `appinfo` in ChaosEngine/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `chaosServiceAccount` in ChaosEngine/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For chaosoperator.v1.9.0:

      - - - -
      -

      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: (["chaosengines.litmuschaos.io"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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" 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 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" 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
    • - - - -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For banzaicloud-kafka-operator.0.6.1:

      - - -

    • "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 banzaicloud-kafka-operator.0.3.1:

      - -

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

    NOT USED

    Grade D
    (0)
    cloud-native-postgresql -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cloud-native-postgresql.v1.7.1:

      - -

    • "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" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for cluster
    • - -
    • "WARNING" Add a spec descriptor for storage
    • - -
    • "WARNING" Add a spec descriptor for cluster
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cloud-native-postgresql.v1.7.1:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    klusterlet -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For klusterlet.v0.4.0:

      - -

    • "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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For klusterlet.v0.4.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (700)
    kube-arangodb -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    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 -
    -
      - - -
      -

      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
    • - -
    • "WARNING" provided API should have an example annotation
    • - -
    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    minio-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For minio-operator.v1.0.3:

      - -

    • "ERROR" error spec does not exist
    • - -
    • "ERROR" Error: Value /v1, Kind=Secret: example must have a provided API
    • - -
    • "ERROR" Failed to find an owned CRD for CR minio-creds-secret with GVK /v1, Kind=Secret
    • - -
    • "ERROR" minioinstances.miniocontroller.min.io does not have a status descriptor
    • - -
    • "ERROR" requestAutoCert does not have a spec descriptor
    • - -
    • "ERROR" credsSecret does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for requestAutoCert
    • - -
    • "WARNING" Add a spec descriptor for credsSecret
    • - -
    • "WARNING" Add CRD validation for spec field `credsSecret` in MinIOInstance/v1beta1
    • - -
    • "WARNING" Add CRD validation for spec field `requestAutoCert` in MinIOInstance/v1beta1
    • - - - -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For minio-operator.v1.0.3:

      - -

    • "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: (["minioinstances.miniocontroller.min.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    mongodb-atlas-kubernetes -

    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 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
    • - -
    • "ERROR" providerSettings does not have a spec descriptor
    • - -
    • "ERROR" databaseName does not have a spec descriptor
    • - -
    • "ERROR" passwordSecretRef does not have a spec descriptor
    • - -
    • "ERROR" projectRef does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" username does not have a spec descriptor
    • - -
    • "ERROR" connectionSecretRef does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" projectIpAccessList does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for projectRef
    • - -
    • "WARNING" Add a spec descriptor for providerSettings
    • - -
    • "WARNING" Add a spec descriptor for databaseName
    • - -
    • "WARNING" Add a spec descriptor for passwordSecretRef
    • - -
    • "WARNING" Add a spec descriptor for projectRef
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for username
    • - -
    • "WARNING" Add a spec descriptor for connectionSecretRef
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for projectIpAccessList
    • - - -
      -

      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
    • - -
    • "ERROR" projectRef does not have a spec descriptor
    • - -
    • "ERROR" providerSettings does not have a spec descriptor
    • - -
    • "ERROR" databaseName does not have a spec descriptor
    • - -
    • "ERROR" passwordSecretRef does not have a spec descriptor
    • - -
    • "ERROR" projectRef does not have a spec descriptor
    • - -
    • "ERROR" roles does not have a spec descriptor
    • - -
    • "ERROR" username does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" projectIpAccessList does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for projectRef
    • - -
    • "WARNING" Add a spec descriptor for providerSettings
    • - -
    • "WARNING" Add a spec descriptor for databaseName
    • - -
    • "WARNING" Add a spec descriptor for passwordSecretRef
    • - -
    • "WARNING" Add a spec descriptor for projectRef
    • - -
    • "WARNING" Add a spec descriptor for roles
    • - -
    • "WARNING" Add a spec descriptor for username
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for projectIpAccessList
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For mongodb-atlas-kubernetes.v0.4.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.
    • - - -
      -

      For mongodb-atlas-kubernetes.v0.6.1:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    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 -
    -
      - - -
      -

      For dynatrace-monitoring.v0.10.1:

      - -

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

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["oneagentapms.dynatrace.com" "oneagents.dynatrace.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    postgresql-operator-dev4devs-com -

    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 -
    -
      - - -
      -

      For postgresql-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: (["backups.postgresql.dev4devs.com" "databases.postgresql.dev4devs.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    chaosblade-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 chaosblade-operator.v0.5.1:

      - -

    • "ERROR" chaosblades.chaosblade.io does not have a status descriptor
    • - -
    • "ERROR" experiments does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for experiments
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For chaosblade-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: (["chaosblades.chaosblade.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    couchbase-enterprise -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For couchbase-operator.v2.1.0:

      - -

    • "ERROR" upgradeStrategy does not have a spec descriptor
    • - -
    • "ERROR" monitoring does not have a spec descriptor
    • - -
    • "ERROR" enablePreviewScaling does not have a spec descriptor
    • - -
    • "ERROR" cluster does not have a spec descriptor
    • - -
    • "ERROR" recoveryPolicy does not have a spec descriptor
    • - -
    • "ERROR" logRetentionTime does not have a spec descriptor
    • - -
    • "ERROR" hibernate does not have a spec descriptor
    • - -
    • "ERROR" hibernationStrategy does not have a spec descriptor
    • - -
    • "ERROR" xdcr does not have a spec descriptor
    • - -
    • "ERROR" logRetentionCount does not have a spec descriptor
    • - -
    • "ERROR" backup does not have a spec descriptor
    • - -
    • "ERROR" start does not have a spec descriptor
    • - -
    • "ERROR" end does not have a spec descriptor
    • - -
    • "ERROR" logRetention does not have a spec descriptor
    • - -
    • "ERROR" servers does not have a spec descriptor
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For couchbase-operator.v2.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: (["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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    knative-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

    - - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (800)
    metering-upstream -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    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 -
    -
      - - -
      -

      For metering-operator-upstream.v4.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: (["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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    splunk -

    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 splunk.v0.1.0:

      - -

    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" indexerclusters.enterprise.splunk.com does not have a status descriptor
    • - -
    • "ERROR" licensemasters.enterprise.splunk.com does not have a status descriptor
    • - -
    • "ERROR" searchheadclusters.enterprise.splunk.com does not have a status descriptor
    • - -
    • "ERROR" sparks.enterprise.splunk.com does not have a status descriptor
    • - -
    • "ERROR" standalones.enterprise.splunk.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For splunk.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: (["indexerclusters.enterprise.splunk.com" "licensemasters.enterprise.splunk.com" "searchheadclusters.enterprise.splunk.com" "sparks.enterprise.splunk.com" "standalones.enterprise.splunk.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    storageos -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For storageosoperator.v2.4.2:

      - - -

    • "WARNING" Warning: Value storageos.com/v1, Kind=Job: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value storageos.com/v1, Kind=StorageOSUpgrade: 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 -
    -
      - - -
      -

      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: (["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
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    postgresql-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 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 -
    -
      - - -
      -

      For postgresql-operator.v0.0.1:

      - - -

    • "WARNING" (postgresql-operator.v0.0.1) csv.Spec.Icon not specified
    • - -
    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    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 -
    -
      - - -
      -

      For sigstore-helm-operator.v0.0.1:

      - -

    • "ERROR" server does not have a spec descriptor
    • - -
    • "ERROR" rekors.helm.sigstore.dev does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add CRD validation for spec field `server` in Rekor/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for server
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For sigstore-helm-operator.v0.0.1:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    akka-cluster-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

    -

    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 -
    -
      - - -
      -

      For akka-cluster-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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    cockroachdb -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "WARNING" Add a spec descriptor for service
    • - - -
      -

      For cockroachdb.v2.1.11:

      - -

    • "ERROR" cockroachdbs.charts.helm.k8s.io does not have a status descriptor
    • - -
    • "ERROR" ImageTag does not have a spec descriptor
    • - -
    • "ERROR" PodManagementPolicy does not have a spec descriptor
    • - -
    • "ERROR" Tolerations does not have a spec descriptor
    • - -
    • "ERROR" Replicas does not have a spec descriptor
    • - -
    • "ERROR" HttpName does not have a spec descriptor
    • - -
    • "ERROR" Resources does not have a spec descriptor
    • - -
    • "ERROR" CacheSize does not have a spec descriptor
    • - -
    • "ERROR" Name does not have a spec descriptor
    • - -
    • "ERROR" MaxUnavailable does not have a spec descriptor
    • - -
    • "ERROR" InternalGrpcPort does not have a spec descriptor
    • - -
    • "ERROR" ExternalGrpcName does not have a spec descriptor
    • - -
    • "ERROR" ClusterDomain does not have a spec descriptor
    • - -
    • "ERROR" NetworkPolicy does not have a spec descriptor
    • - -
    • "ERROR" Secure does not have a spec descriptor
    • - -
    • "ERROR" Component does not have a spec descriptor
    • - -
    • "ERROR" ExternalGrpcPort does not have a spec descriptor
    • - -
    • "ERROR" Image does not have a spec descriptor
    • - -
    • "ERROR" InternalGrpcName does not have a spec descriptor
    • - -
    • "ERROR" StorageClass does not have a spec descriptor
    • - -
    • "ERROR" Service does not have a spec descriptor
    • - -
    • "ERROR" UpdateStrategy does not have a spec descriptor
    • - -
    • "ERROR" ImagePullPolicy does not have a spec descriptor
    • - -
    • "ERROR" NodeSelector does not have a spec descriptor
    • - -
    • "ERROR" ExternalHttpPort does not have a spec descriptor
    • - -
    • "ERROR" MaxSQLMemory does not have a spec descriptor
    • - -
    • "ERROR" InternalHttpPort does not have a spec descriptor
    • - -
    • "ERROR" InitPodResources does not have a spec descriptor
    • - -
    • "ERROR" Storage does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for Cockroachdb/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for ImageTag
    • - -
    • "WARNING" Add a spec descriptor for PodManagementPolicy
    • - -
    • "WARNING" Add a spec descriptor for Tolerations
    • - -
    • "WARNING" Add a spec descriptor for Replicas
    • - -
    • "WARNING" Add a spec descriptor for HttpName
    • - -
    • "WARNING" Add a spec descriptor for Resources
    • - -
    • "WARNING" Add a spec descriptor for CacheSize
    • - -
    • "WARNING" Add a spec descriptor for Name
    • - -
    • "WARNING" Add a spec descriptor for MaxUnavailable
    • - -
    • "WARNING" Add a spec descriptor for InternalGrpcPort
    • - -
    • "WARNING" Add a spec descriptor for ExternalGrpcName
    • - -
    • "WARNING" Add a spec descriptor for ClusterDomain
    • - -
    • "WARNING" Add a spec descriptor for NetworkPolicy
    • - -
    • "WARNING" Add a spec descriptor for Secure
    • - -
    • "WARNING" Add a spec descriptor for Component
    • - -
    • "WARNING" Add a spec descriptor for ExternalGrpcPort
    • - -
    • "WARNING" Add a spec descriptor for Image
    • - -
    • "WARNING" Add a spec descriptor for InternalGrpcName
    • - -
    • "WARNING" Add a spec descriptor for StorageClass
    • - -
    • "WARNING" Add a spec descriptor for Service
    • - -
    • "WARNING" Add a spec descriptor for UpdateStrategy
    • - -
    • "WARNING" Add a spec descriptor for ImagePullPolicy
    • - -
    • "WARNING" Add a spec descriptor for NodeSelector
    • - -
    • "WARNING" Add a spec descriptor for ExternalHttpPort
    • - -
    • "WARNING" Add a spec descriptor for MaxSQLMemory
    • - -
    • "WARNING" Add a spec descriptor for InternalHttpPort
    • - -
    • "WARNING" Add a spec descriptor for InitPodResources
    • - -
    • "WARNING" Add a spec descriptor for Storage
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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:

      - - -

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

    NOT USED

    Grade B
    (700)
    hedvig-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hedvig-operator.v1.0.1:

      - - -

    • "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: (["hedvigdeploys.hedvig.io"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For joget-tomcat-operator.v0.0.1:

      - -

    • "ERROR" size does not have a spec descriptor
    • - -
    • "ERROR" jogettomcats.apps.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 spec field `size` in JogetTomcat/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For joget-tomcat-operator.v0.0.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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    mcad-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 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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["mcadhelmconfigs.mcad.ibm.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    microcks -

    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 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
    • - -
    • "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
    • - -
    • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
    • - -
    • "ERROR" microcksinstalls.microcks.github.io does not have a status descriptor
    • - - -
    • "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
    • - -
    • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
    • - -
    • "WARNING" Add CRD validation for MicrocksInstall/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For microcks-operator.v0.3.0:

      - - -

    • "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 microcks-operator.v1.3.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    pmem-csi-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 -
    -
      - - -
      -

      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
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - - -
      -

      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
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - - - -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (700)
    portworx-essentials -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    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 -
    -
      - - -
      -

      For portworx-essentials.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: (["storageclusters.core.libopenstorage.org" "storagenodes.core.libopenstorage.org"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    awss3-operator-registry -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

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

    NOT USED

    - - -

    NOT USED

    -

    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
    • - - -
    • "WARNING" Add a spec descriptor for generateBucketName
    • - -
    • "WARNING" Add a spec descriptor for bucketName
    • - -
    • "WARNING" Add a spec descriptor for storageClassName
    • - -
    • "WARNING" Add a spec descriptor for Connection
    • - -
    • "WARNING" Add a spec descriptor for claimRef
    • - -
    • "WARNING" Add a spec descriptor for reclaimPolicy
    • - -
    • "WARNING" Add a spec descriptor for storageClassName
    • - -
    • "WARNING" Add CRD validation for ObjectBucketClaim/v1alpha1
    • - -
    • "WARNING" Add CRD validation for ObjectBucket/v1alpha1
    • - - -
      -

      For awss3operator.v1.0.1:

      - - - - -

    -
    - -
    -

    ONLY WARNINGS

    - - - +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:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    credstash-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 credstash-operator.v1.13.0:

      - -

    • "ERROR" credstashsecrets.credstash.ouzi.tech does not have a status descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" secrets does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for secrets
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For credstash-operator.v1.13.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: (["credstashsecrets.credstash.ouzi.tech"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    ember-csi-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 WARNINGS

    - - - +Info -
    -
      - - -
      -

      For ember-csi-operator.v0.9.4:

      - - -

    • "WARNING" Add CRD validation for EmberStorageBackend/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For ember-csi-operator.v0.9.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: (["embercsis.ember-csi.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    kogito-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

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

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      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
    • - -
    • "ERROR" kogitoinfras.app.kiegroup.org does not have a status descriptor
    • - -
    • "ERROR" kogitoruntimes.app.kiegroup.org does not have a status descriptor
    • - -
    • "ERROR" kogitosupportingservices.app.kiegroup.org does not have a status descriptor
    • - -
    • "ERROR" gitSource does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" resource does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" serviceType does not have a spec descriptor
    • - -
    • "ERROR" replicas 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 resource
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for serviceType
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - - -
      -

      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
    • - -
    • "ERROR" kogitoinfras.app.kiegroup.org does not have a status descriptor
    • - -
    • "ERROR" kogitoruntimes.app.kiegroup.org does not have a status descriptor
    • - -
    • "ERROR" kogitosupportingservices.app.kiegroup.org does not have a status descriptor
    • - -
    • "ERROR" gitSource does not have a spec descriptor
    • - -
    • "ERROR" type does not have a spec descriptor
    • - -
    • "ERROR" resource does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" serviceType does not have a spec descriptor
    • - -
    • "ERROR" replicas 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 resource
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for serviceType
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kogito-operator.v1.10.0:

      - - -

    • "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 kogito-operator.v1.10.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    runtime-component-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

    -

    PASS

    - - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For runtime-component-operator.v0.7.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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    kubernetes-imagepuller-operator -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubernetes-imagepuller-operator.v0.0.9:

      - -

    • "ERROR" daemonsetName does not have a spec descriptor
    • - -
    • "ERROR" images does not have a spec descriptor
    • - -
    • "ERROR" kubernetesimagepullers.che.eclipse.org does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for daemonsetName
    • - -
    • "WARNING" Add a spec descriptor for images
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubernetes-imagepuller-operator.v0.0.9:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    open-liberty -

    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 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 open-liberty-operator.v0.7.0:

      - -

    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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:

      - - -

    • "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: (["openlibertyapplications.openliberty.io" "openlibertydumps.openliberty.io" "openlibertytraces.openliberty.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    opentelemetry-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 -
    -
      - - -
      -

      For opentelemetry-operator.v0.33.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" config does not have a spec descriptor
    • - -
    • "ERROR" opentelemetrycollectors.opentelemetry.io does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for config
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For opentelemetry-operator.v0.33.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    pulp-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 -
    -
      - - -
      -

      For pulp-operator.v0.3.0:

      - -

    • "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
    • - -
    • "ERROR" error getting custom resources
    • - -
    • "ERROR" failed to parse alm-examples annotation: invalid character '}' looking for beginning of object key string
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For pulp-operator.v0.3.0:

      - - -

    • "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
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    druid-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 -
    -
      - - -
      -

      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
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for podAnnotations
    • - -
    • "WARNING" Add a spec descriptor for readinessProbe
    • - -
    • "WARNING" Add a spec descriptor for commonConfigMountPath
    • - -
    • "WARNING" Add a spec descriptor for volumeMounts
    • - -
    • "WARNING" Add a spec descriptor for common.runtime.properties
    • - -
    • "WARNING" Add a spec descriptor for volumes
    • - -
    • "WARNING" Add a spec descriptor for nodes
    • - - - -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (600)
    elastic-cloud-eck -

    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 elastic-cloud-eck.v1.3.0:

      - -

    • "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" version does not have a spec descriptor
    • - -
    • "ERROR" count 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" 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" 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
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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 elastic-cloud-eck.v1.7.1:

      - - - - -

    -
    - -

    NOT USED

    Grade C
    (500)
    hazelcast-jet-enterprise-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 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
    • - -
    • "ERROR" jet does not have a spec descriptor
    • - -
    • "ERROR" securityContext 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 cluster
    • - -
    • "WARNING" Add a spec descriptor for jet
    • - -
    • "WARNING" Add a spec descriptor for securityContext
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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)
    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 -
    -
      - - -
      -

      For kubefed-operator.v0.1.0:

      - -

    • "ERROR" scope does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for scope
    • - -
    • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=DNSEndpoint: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=KubeFedCluster: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=FederatedTypeConfig: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value core.kubefed.k8s.io/v1beta1, Kind=KubeFedConfig: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=PropagatedVersion: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=ServiceDNSRecord: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=ClusterPropagatedVersion: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value core.kubefed.k8s.io/v1alpha1, Kind=FederatedServiceStatus: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=IngressDNSRecord: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value scheduling.kubefed.k8s.io/v1alpha1, Kind=ReplicaSchedulingPreference: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value multiclusterdns.kubefed.k8s.io/v1alpha1, Kind=Domain: provided API should have an example annotation
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubefed-operator.v0.1.0:

      - - -

    • "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
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    ripsaw -

    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 ripsaw.v0.1.0:

      - -

    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["benchmarks.ripsaw.cloudbulldozer.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    istio-workspace-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 -
    -
      - - -
      -

      For istio-workspace-operator.v0.3.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" sessions.maistra.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 ref
    • - -
    • "WARNING" Add a spec descriptor for route
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For istio-workspace-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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    kubeturbo -

    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 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
    • - - -
      -

      For kubeturbo-operator.v7.21.0:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" kubeturbos.charts.helm.k8s.io does not have a status descriptor
    • - -
    • "ERROR" serverMeta does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for Kubeturbo/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for serverMeta
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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:

      - - -

    • "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" this bundle is using APIs which were deprecated 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
    (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 -
    -
      - - -
      -

      For virt-gateway-operator.v0.0.1:

      - -

    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" serviceAccountAPIGroups does not have a spec descriptor
    • - -
    • "ERROR" apiURL does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" passThrough does not have a spec descriptor
    • - -
    • "ERROR" serviceAccountResources does not have a spec descriptor
    • - -
    • "ERROR" serviceAccountVerbs does not have a spec descriptor
    • - -
    • "ERROR" webAppImage does not have a spec descriptor
    • - -
    • "ERROR" generateSecret does not have a spec descriptor
    • - -
    • "ERROR" namespace does not have a spec descriptor
    • - -
    • "ERROR" resourceNames does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" APIGroups does not have a spec descriptor
    • - -
    • "ERROR" generateServiceAccount does not have a spec descriptor
    • - -
    • "ERROR" gateservers.ocgate.yaacov.com does not have a status descriptor
    • - -
    • "ERROR" gatetokens.ocgate.yaacov.com does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for route
    • - -
    • "WARNING" Add a spec descriptor for serviceAccountAPIGroups
    • - -
    • "WARNING" Add a spec descriptor for apiURL
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for passThrough
    • - -
    • "WARNING" Add a spec descriptor for serviceAccountResources
    • - -
    • "WARNING" Add a spec descriptor for serviceAccountVerbs
    • - -
    • "WARNING" Add a spec descriptor for webAppImage
    • - -
    • "WARNING" Add a spec descriptor for generateSecret
    • - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for resourceNames
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add a spec descriptor for APIGroups
    • - -
    • "WARNING" Add a spec descriptor for generateServiceAccount
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For virt-gateway-operator.v0.0.1:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    jaeger -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ONLY ERRORS

    - - - +Info -
    -
      - - -
      -

      For jaeger-operator.v1.24.0:

      - -

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

    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
    (600)
    neuvector-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

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For neuvector-operator.v1.2.7:

      - -

    • "ERROR" admissionwebhook does not have a spec descriptor
    • - -
    • "ERROR" crdwebhook does not have a spec descriptor
    • - -
    • "ERROR" enforcer does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" containerd does not have a spec descriptor
    • - -
    • "ERROR" openshift does not have a spec descriptor
    • - -
    • "ERROR" cve does not have a spec descriptor
    • - -
    • "ERROR" crio does not have a spec descriptor
    • - -
    • "ERROR" serviceAccount does not have a spec descriptor
    • - -
    • "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 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For neuvector-operator.v1.2.7:

      - - -

    • "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: (["neuvectors.apm.neuvector.com"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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 -
    -
      - - -
      -

      For mattermost-operator.v0.5.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    mysql -

    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 mysqloperator.v1.0.0:

      - -

    • "ERROR" clusterSpec does not have a spec descriptor
    • - -
    • "ERROR" databaseResource does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" slaveReplicas does not have a spec descriptor
    • - -
    • "ERROR" mysqlclusters.mysql.grds.cloud does not have a status descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - - -
    • "WARNING" Add a spec descriptor for clusterSpec
    • - -
    • "WARNING" Add a spec descriptor for databaseResource
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for slaveReplicas
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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: (["mysqlclusters.mysql.grds.cloud"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    nfd-operator -

    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.

    -
      - -
    • nfd-operator.v0.2.0
    • - -
    • nfd-operator.v0.1.0
    • - -
    -
    - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For nfd-operator.v0.2.0:

      - - - -
      -

      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"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    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 -
    -
      - - -
      -

      For opsmx-spinnaker-operator.v1.20.3:

      - -

    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For opsmx-spinnaker-operator.v1.20.3:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    apicast-community-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 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
    • - -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - - -
    • "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-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
    • - -
    • "ERROR" logLevel does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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 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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    cluster-impairment-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 -
    -
      - - -
      -

      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
    • - -
    • "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 B
    (700)
    ibm-application-gateway-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

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

      - -

    • "ERROR" configuration does not have a spec descriptor
    • - -
    • "ERROR" deployment does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" ibmapplicationgateways.ibm.com does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for configuration
    • - -
    • "WARNING" Add a spec descriptor for deployment
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

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

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    kubemod -

    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 -
    -
      - - -
      -

      For kubemod.v0.6.0:

      - -

    • "ERROR" modrules.api.kubemod.io does not have a status descriptor
    • - - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubemod.v0.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: (["modrules.api.kubemod.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    tektoncd-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 -
    -
      - - -
      -

      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
    • - -
    • "ERROR" tektontriggers.operator.tekton.dev does not have a status descriptor
    • - -
    • "ERROR" profile does not have a spec descriptor
    • - -
    • "ERROR" targetNamespace does not have a spec descriptor
    • - -
    • "ERROR" targetNamespace does not have a spec descriptor
    • - -
    • "ERROR" targetNamespace does not have a spec descriptor
    • - -
    • "ERROR" targetNamespace does not have a spec descriptor
    • - -
    • "ERROR" targetNamespace does not have a spec 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 targetNamespace
    • - -
    • "WARNING" Add CRD validation for spec field `profile` in TektonConfig/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonConfig/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonDashboard/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonPipeline/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `targetNamespace` in TektonTrigger/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For tektoncd-operator.v0.49.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For victoriametrics-operator.v0.18.1:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" vmagents.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmalerts.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmalertmanagers.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmalertmanagerconfigs.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmauths.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmclusters.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmnodescrapes.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmpodscrapes.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmprobes.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmrules.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmservicescrapes.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmservicescrapes.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmsingles.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmstaticscrapes.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" vmusers.operator.victoriametrics.com does not have a status descriptor
    • - -
    • "ERROR" extraArgs does not have a spec descriptor
    • - -
    • "ERROR" podScrapeSelector does not have a spec descriptor
    • - -
    • "ERROR" serviceScrapeSelector does not have a spec descriptor
    • - -
    • "ERROR" nodeScrapeSelector does not have a spec descriptor
    • - -
    • "ERROR" probeSelector does not have a spec descriptor
    • - -
    • "ERROR" remoteWrite does not have a spec descriptor
    • - -
    • "ERROR" staticScrapeSelector does not have a spec descriptor
    • - -
    • "ERROR" evaluationInterval does not have a spec descriptor
    • - -
    • "ERROR" notifiers does not have a spec descriptor
    • - -
    • "ERROR" remoteRead does not have a spec descriptor
    • - -
    • "ERROR" remoteWrite does not have a spec descriptor
    • - -
    • "ERROR" ruleSelector does not have a spec descriptor
    • - -
    • "ERROR" datasource does not have a spec descriptor
    • - -
    • "ERROR" configRawYaml does not have a spec descriptor
    • - -
    • "ERROR" configSelector does not have a spec descriptor
    • - -
    • "ERROR" configNamespaceSelector does not have a spec descriptor
    • - -
    • "ERROR" receivers does not have a spec descriptor
    • - -
    • "ERROR" route does not have a spec descriptor
    • - -
    • "ERROR" userNamespaceSelector does not have a spec descriptor
    • - -
    • "ERROR" userSelector does not have a spec descriptor
    • - -
    • "ERROR" vminsert does not have a spec descriptor
    • - -
    • "ERROR" vmselect does not have a spec descriptor
    • - -
    • "ERROR" vmstorage does not have a spec descriptor
    • - -
    • "ERROR" replicationFactor does not have a spec descriptor
    • - -
    • "ERROR" retentionPeriod does not have a spec descriptor
    • - -
    • "ERROR" path does not have a spec descriptor
    • - -
    • "ERROR" relabelConfigs does not have a spec descriptor
    • - -
    • "ERROR" scheme does not have a spec descriptor
    • - -
    • "ERROR" targetLabels does not have a spec descriptor
    • - -
    • "ERROR" bearerTokenFile does not have a spec descriptor
    • - -
    • "ERROR" interval does not have a spec descriptor
    • - -
    • "ERROR" scrapeTimeout does not have a spec descriptor
    • - -
    • "ERROR" selector does not have a spec descriptor
    • - -
    • "ERROR" tlsConfig does not have a spec descriptor
    • - -
    • "ERROR" jobLabel does not have a spec descriptor
    • - -
    • "ERROR" port does not have a spec descriptor
    • - -
    • "ERROR" podMetricsEndpoints does not have a spec descriptor
    • - -
    • "ERROR" selector does not have a spec descriptor
    • - -
    • "ERROR" module does not have a spec descriptor
    • - -
    • "ERROR" targets does not have a spec descriptor
    • - -
    • "ERROR" vmProberSpec does not have a spec descriptor
    • - -
    • "ERROR" interval does not have a spec descriptor
    • - -
    • "ERROR" jobName does not have a spec descriptor
    • - -
    • "ERROR" groups does not have a spec descriptor
    • - -
    • "ERROR" selector does not have a spec descriptor
    • - -
    • "ERROR" endpoints does not have a spec descriptor
    • - -
    • "ERROR" discoveryRole does not have a spec descriptor
    • - -
    • "ERROR" endpoints does not have a spec descriptor
    • - -
    • "ERROR" namespaceSelector does not have a spec descriptor
    • - -
    • "ERROR" selector does not have a spec descriptor
    • - -
    • "ERROR" removePvcAfterDelete does not have a spec descriptor
    • - -
    • "ERROR" retentionPeriod does not have a spec descriptor
    • - -
    • "ERROR" storage does not have a spec descriptor
    • - -
    • "ERROR" jobName does not have a spec descriptor
    • - -
    • "ERROR" targetEndpoints does not have a spec descriptor
    • - -
    • "ERROR" password does not have a spec descriptor
    • - -
    • "ERROR" targetRefs does not have a spec descriptor
    • - -
    • "ERROR" username does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for extraArgs
    • - -
    • "WARNING" Add a spec descriptor for podScrapeSelector
    • - -
    • "WARNING" Add a spec descriptor for serviceScrapeSelector
    • - -
    • "WARNING" Add a spec descriptor for nodeScrapeSelector
    • - -
    • "WARNING" Add a spec descriptor for probeSelector
    • - -
    • "WARNING" Add a spec descriptor for remoteWrite
    • - -
    • "WARNING" Add a spec descriptor for staticScrapeSelector
    • - -
    • "WARNING" Add a spec descriptor for evaluationInterval
    • - -
    • "WARNING" Add a spec descriptor for notifiers
    • - -
    • "WARNING" Add a spec descriptor for remoteRead
    • - -
    • "WARNING" Add a spec descriptor for remoteWrite
    • - -
    • "WARNING" Add a spec descriptor for ruleSelector
    • - -
    • "WARNING" Add a spec descriptor for datasource
    • - -
    • "WARNING" Add a spec descriptor for configRawYaml
    • - -
    • "WARNING" Add a spec descriptor for configSelector
    • - -
    • "WARNING" Add a spec descriptor for configNamespaceSelector
    • - -
    • "WARNING" Add a spec descriptor for receivers
    • - -
    • "WARNING" Add a spec descriptor for route
    • - -
    • "WARNING" Add a spec descriptor for userNamespaceSelector
    • - -
    • "WARNING" Add a spec descriptor for userSelector
    • - -
    • "WARNING" Add a spec descriptor for vminsert
    • - -
    • "WARNING" Add a spec descriptor for vmselect
    • - -
    • "WARNING" Add a spec descriptor for vmstorage
    • - -
    • "WARNING" Add a spec descriptor for replicationFactor
    • - -
    • "WARNING" Add a spec descriptor for retentionPeriod
    • - -
    • "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
    • - -
    • "WARNING" Add a spec descriptor for bearerTokenFile
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +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 B
    (600)
    yaks -

    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 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 -
    -
      - - -
      -

      For yaks-operator.v0.5.0:

      - - -

    • "WARNING" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    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 -
    -
      - - -
      -

      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
    • - -
    • "ERROR" image_name does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" s3_compat_api_endpoint does not have a spec descriptor
    • - -
    • "ERROR" service_type does not have a spec descriptor
    • - -
    • "ERROR" aws_region does not have a spec descriptor
    • - -
    • "ERROR" aws_secret_access_key does not have a spec descriptor
    • - -
    • "ERROR" config_configmap_name 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" aws_access_key_id does not have a spec descriptor
    • - -
    • "ERROR" log_level does not have a spec descriptor
    • - -
    • "ERROR" nireq does not have a spec descriptor
    • - -
    • "ERROR" plugin_config 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" target_device does not have a spec descriptor
    • - -
    • "ERROR" grpc_port does not have a spec descriptor
    • - -
    • "ERROR" https_proxy does not have a spec descriptor
    • - -
    • "ERROR" models_host_path 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" ovms.intel.com does not have a status descriptor
    • - - -
    • "WARNING" Add CRD validation for spec field `grpc_port` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `https_proxy` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `image_name` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `log_level` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `models_volume_claim` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `replicas` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `aws_access_key_id` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `config_configmap_name` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `security_context` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `nireq` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `service_type` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `target_device` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `aws_region` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `gcp_creds_secret_name` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `rest_port` in Ovms/v1alpha1
    • - -
    • "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 CRD validation for spec field `models_host_path` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `plugin_config` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `aws_secret_access_key` in Ovms/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `model_name` in Ovms/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for gcp_creds_secret_name
    • - -
    • "WARNING" Add a spec descriptor for image_name
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for s3_compat_api_endpoint
    • - -
    • "WARNING" Add a spec descriptor for service_type
    • - -
    • "WARNING" Add a spec descriptor for aws_region
    • - -
    • "WARNING" Add a spec descriptor for aws_secret_access_key
    • - -
    • "WARNING" Add a spec descriptor for config_configmap_name
    • - -
    • "WARNING" Add a spec descriptor for model_name
    • - -
    • "WARNING" Add a spec descriptor for model_path
    • - -
    • "WARNING" Add a spec descriptor for aws_access_key_id
    • - -
    • "WARNING" Add a spec descriptor for log_level
    • - -
    • "WARNING" Add a spec descriptor for nireq
    • - -
    • "WARNING" Add a spec descriptor for plugin_config
    • - -
    • "WARNING" Add a spec descriptor for rest_port
    • - -
    • "WARNING" Add a spec descriptor for security_context
    • - -
    • "WARNING" Add a spec descriptor for target_device
    • - -
    • "WARNING" Add a spec descriptor for grpc_port
    • - -
    • "WARNING" Add a spec descriptor for https_proxy
    • - -
    • "WARNING" Add a spec descriptor for models_host_path
    • - -
    • "WARNING" Add a spec descriptor for models_volume_claim
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For ovms-operator.v0.1.0:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (600)
    appdynamics-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 appdynamics-operator.v0.6.10:

      - -

    • "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
    • - - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For appdynamics-operator.v0.6.10:

      - - -

    • "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
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    elastic-phenix-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 -
    -
      - - -
      -

      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: (["elasticindices.elastic.carrefour.com" "elastictemplates.elastic.carrefour.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    hive-operator -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +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
    • - -
    -
    - -
    -

    NOT USED

    - - -

    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
    • - - -
      -

      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
    • - -
    • "WARNING" Warning: Value hive.openshift.io/v1, Kind=SyncIdentityProvider: 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=SelectorSyncIdentityProvider: 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hive-operator.v1.1.9-1.1.8.2:

      - - -

    • "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" 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 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
    • - -
    • "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 hive-operator.v1.1.15:

      - - -

    • "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" 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 hive-operator.v1.1.15:

      - - -

    • "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" 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 hive-operator.v1.0.17:

      - - -

    • "WARNING" (hive-operator.v1.0.17) csv.Spec.Icon not specified
    • - -
    • "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
    • - -
    • "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
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    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
    • - - - -
    -
    - -
    -

    PASS

    - - -

    NOT USED

    Grade B
    (800)
    community-kubevirt-hyperconverged -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubevirt-hyperconverged-operator.v1.4.1:

      - - -

    • "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" provided API should have an example annotation
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (700)
    enc-key-sync -

    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 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
    • - -
    • "WARNING" Add CRD validation for spec field `keysDir` in EncKeySync/v1alpha1
    • - -
    • "WARNING" Add CRD validation for spec field `isOpenShift` in EncKeySync/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For enc-key-sync-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: (["enckeysyncs.oci.crypt"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    myvirtualdirectory -

    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 myvirtualdirectory.1.0.0:

      - -

    • "ERROR" myvirtualdirectories.myvirtualdirectory.tremolo.io does not have a status descriptor
    • - -
    • "ERROR" dest_cfg_map does not have a spec descriptor
    • - -
    • "ERROR" source_secret does not have a spec descriptor
    • - -
    • "ERROR" secret_data does not have a spec descriptor
    • - -
    • "ERROR" myvd_props does not have a spec descriptor
    • - -
    • "ERROR" key_store does not have a spec descriptor
    • - -
    • "ERROR" image does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" dest_secret does not have a spec descriptor
    • - -
    • "ERROR" non_secret_data does not have a spec descriptor
    • - -
    • "ERROR" myvd_log4j2_xml does not have a spec descriptor
    • - -
    • "ERROR" myvd_network_configuration does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for dest_cfg_map
    • - -
    • "WARNING" Add a spec descriptor for source_secret
    • - -
    • "WARNING" Add a spec descriptor for secret_data
    • - -
    • "WARNING" Add a spec descriptor for myvd_props
    • - -
    • "WARNING" Add a spec descriptor for key_store
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for dest_secret
    • - -
    • "WARNING" Add a spec descriptor for non_secret_data
    • - -
    • "WARNING" Add a spec descriptor for myvd_log4j2_xml
    • - -
    • "WARNING" Add a spec descriptor for myvd_network_configuration
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For myvirtualdirectory.1.0.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: (["myvirtualdirectories.myvirtualdirectory.tremolo.io"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    sysdig -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      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" 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For sysdig-operator.v1.7.2:

      - - -

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

    NOT USED

    Grade D
    (200)
    kubestone -

    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 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
    • - -
    • "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" 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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For kubestone.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: (["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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    percona-xtradb-cluster-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "ERROR" backup does not have a spec descriptor
    • - -
    • "ERROR" sslSecretName does not have a spec descriptor
    • - -
    • "ERROR" logCollectorSecretName does not have a spec descriptor
    • - -
    • "ERROR" secretsName 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" sslInternalSecretName 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
    • - -
    • "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" 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
    • - -
    • "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 CRD validation for PerconaXtraDBClusterRestore/v1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For percona-xtradb-cluster-operator.v1.8.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: (["perconaxtradbbackups.pxc.percona.com" "perconaxtradbclusterbackups.pxc.percona.com" "perconaxtradbclusterrestores.pxc.percona.com" "perconaxtradbclusters.pxc.percona.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    planetscale -

    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 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 -
    -
      - - -
      -

      For planetscale-operator.v0.1.8:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    postgresql -

    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:

      - -

    • "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
    • - -
    • "WARNING" Add a spec descriptor for ReplicaStorage
    • - -
    • "WARNING" Add a spec descriptor for secretfrom
    • - -
    • "WARNING" Add a spec descriptor for strategy
    • - -
    • "WARNING" Add a spec descriptor for userlabels
    • - -
    • "WARNING" Add a spec descriptor for usersecretname
    • - -
    • "WARNING" Add a spec descriptor for policies
    • - -
    • "WARNING" Add a spec descriptor for port
    • - -
    • "WARNING" Add a spec descriptor for rootsecretname
    • - -
    • "WARNING" Add a spec descriptor for user
    • - -
    • "WARNING" Add a spec descriptor for ArchiveStorage
    • - -
    • "WARNING" Add a spec descriptor for backuppath
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for primarysecretname
    • - - -
      -

      For postgresoperator.v5.0.2:

      - - - -
      -

      For postgresoperator.v4.0.1:

      - -

    • "ERROR" ContainerResources does not have a spec descriptor
    • - -
    • "ERROR" PrimaryStorage does not have a spec descriptor
    • - -
    • "ERROR" ccpimagetag does not have a spec descriptor
    • - -
    • "ERROR" policies does not have a spec descriptor
    • - -
    • "ERROR" ReplicaStorage does not have a spec descriptor
    • - -
    • "ERROR" ccpimage does not have a spec descriptor
    • - -
    • "ERROR" customconfig does not have a spec descriptor
    • - -
    • "ERROR" backuppvcname does not have a spec descriptor
    • - -
    • "ERROR" userlabels does not have a spec descriptor
    • - -
    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" replicas does not have a spec descriptor
    • - -
    • "ERROR" secretfrom does not have a spec descriptor
    • - -
    • "ERROR" status does not have a spec descriptor
    • - -
    • "ERROR" BackrestStorage does not have a spec descriptor
    • - -
    • "ERROR" backuppath does not have a spec descriptor
    • - -
    • "ERROR" namespace does not have a spec descriptor
    • - -
    • "ERROR" port does not have a spec descriptor
    • - -
    • "ERROR" primaryhost does not have a spec descriptor
    • - -
    • "ERROR" primarysecretname does not have a spec descriptor
    • - -
    • "ERROR" clustername does not have a spec descriptor
    • - -
    • "ERROR" name does not have a spec descriptor
    • - -
    • "ERROR" nodename does not have a spec descriptor
    • - -
    • "ERROR" strategy does not have a spec descriptor
    • - -
    • "ERROR" user does not have a spec descriptor
    • - -
    • "ERROR" ArchiveStorage does not have a spec descriptor
    • - -
    • "ERROR" rootsecretname does not have a spec descriptor
    • - -
    • "ERROR" usersecretname 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 PrimaryStorage
    • - -
    • "WARNING" Add a spec descriptor for ccpimagetag
    • - -
    • "WARNING" Add a spec descriptor for policies
    • - -
    • "WARNING" Add a spec descriptor for ReplicaStorage
    • - -
    • "WARNING" Add a spec descriptor for ccpimage
    • - -
    • "WARNING" Add a spec descriptor for customconfig
    • - -
    • "WARNING" Add a spec descriptor for backuppvcname
    • - -
    • "WARNING" Add a spec descriptor for userlabels
    • - -
    • "WARNING" Add a spec descriptor for database
    • - -
    • "WARNING" Add a spec descriptor for replicas
    • - -
    • "WARNING" Add a spec descriptor for secretfrom
    • - -
    • "WARNING" Add a spec descriptor for status
    • - -
    • "WARNING" Add a spec descriptor for BackrestStorage
    • - -
    • "WARNING" Add a spec descriptor for backuppath
    • - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for port
    • - -
    • "WARNING" Add a spec descriptor for primaryhost
    • - -
    • "WARNING" Add a spec descriptor for primarysecretname
    • - -
    • "WARNING" Add a spec descriptor for clustername
    • - -
    • "WARNING" Add a spec descriptor for name
    • - -
    • "WARNING" Add a spec descriptor for nodename
    • - -
    • "WARNING" Add a spec descriptor for strategy
    • - -
    • "WARNING" Add a spec descriptor for user
    • - -
    • "WARNING" Add a spec descriptor for ArchiveStorage
    • - -
    • "WARNING" Add a spec descriptor for rootsecretname
    • - -
    • "WARNING" Add a spec descriptor for usersecretname
    • - - -
      -

      For postgresoperator.v4.7.0:

      - -

    • "ERROR" namespace does not have a spec descriptor
    • - -
    • "ERROR" podAntiAffinity does not have a spec descriptor
    • - -
    • "ERROR" ReplicaStorage does not have a spec descriptor
    • - -
    • "ERROR" user does not have a spec descriptor
    • - -
    • "ERROR" BackrestStorage does not have a spec descriptor
    • - - -
    • "WARNING" Add a spec descriptor for namespace
    • - -
    • "WARNING" Add a spec descriptor for podAntiAffinity
    • - -
    • "WARNING" Add a spec descriptor for ReplicaStorage
    • - -
    • "WARNING" Add a spec descriptor for user
    • - -
    • "WARNING" Add a spec descriptor for BackrestStorage
    • - -
    • "WARNING" Add CRD validation for spec field `BackrestStorage` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `user` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `namespace` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `podAntiAffinity` in Pgcluster/v1
    • - -
    • "WARNING" Add CRD validation for spec field `ReplicaStorage` in Pgcluster/v1
    • - - -
      -

      For postgresoperator.v4.2.2:

      - -

    • "ERROR" pgreplicas.crunchydata.com does not have a status descriptor
    • - -
    • "ERROR" pgpolicies.crunchydata.com does not have a status descriptor
    • - -
    • "ERROR" pgbackups.crunchydata.com does not have a status descriptor
    • - - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For postgresoperator.v4.3.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 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 postgresoperator.v5.0.2:

      - - - -
      -

      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: (["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"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    atlasmap-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

    -

    ONLY ERRORS

    - - - +Info -
    -
      - - -
      -

      For atlasmap-operator.v0.3.0:

      - -

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

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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.
    • - -
    • "WARNING" this bundle is using APIs which were deprecated 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 D
    (100)
    cos-bucket-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 -
    -
      - - -
      -

      For cos-bucket-operator.v0.1.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (300)
    ibm-block-csi-operator-community -

    COMPLY

    -
    -

    NOT COMPLY

    - - - +Info -
    -

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

    -
      - -
    • maintenance-1.5
    • - -
    -
    - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    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"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    integrity-shield-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 integrity-shield-operator.v0.1.6:

      - -

    • "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" Add a spec descriptor for keyConfig
    • - -
    • "WARNING" Add a spec descriptor for shieldConfig
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For integrity-shield-operator.v0.1.6:

      - - -

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

    NOT USED

    Grade D
    (200)
    rocketmq-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For rocketmq-operator.0.2.1:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    hawkbit-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 hawkbit-operator.v0.1.4:

      - -

    • "ERROR" database does not have a spec descriptor
    • - -
    • "ERROR" rabbit does not have a spec 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 database
    • - -
    • "WARNING" Add a spec descriptor for rabbit
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hawkbit-operator.v0.1.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: (["hawkbits.iot.eclipse.org"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    hazelcast-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 -
    -
      - - -
      -

      For hazelcast-operator.v0.3.7:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" hazelcasts.hazelcast.com does not have a status descriptor
    • - -
    • "ERROR" securityContext does not have a spec descriptor
    • - - -
    • "WARNING" Add CRD validation for Hazelcast/v1alpha1
    • - -
    • "WARNING" Add a spec descriptor for securityContext
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For hazelcast-operator.v0.3.7:

      - - -

    • "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: (["hazelcasts.hazelcast.com"])
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    intel-device-plugins-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 -
    -
      - - -
      -

      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
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for sharedDevNum
    • - -
    • "WARNING" Add a spec descriptor for image
    • - -
    • "WARNING" Add a spec descriptor for kernelVfDrivers
    • - -
    • "WARNING" Add a spec descriptor for logLevel
    • - -
    • "WARNING" Add a spec descriptor for maxNumDevices
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for dpdkDriver
    • - -
    • "WARNING" Add a spec descriptor for nodeSelector
    • - -
    • "WARNING" Add a spec descriptor for provisionLimit
    • - -
    • "WARNING" Add a spec descriptor for enclaveLimit
    • - -
    • "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 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 mode
    • - -
    • "WARNING" Add a spec descriptor for afuId
    • - -
    • "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
    • - - - -
    -
    - -
    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      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" (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.
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    postgres-operator -

    NOT COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    NOT USED

    -

    ERRORS AND WARNINGS

    - - - +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 -
    -
      - - -
      -

      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: (["operatorconfigurations.acid.zalan.do" "postgresqls.acid.zalan.do"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (200)
    alvearie-imaging-ingestion -

    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 imaging-ingestion-operator.v0.0.1:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (800)
    apimatic-kubernetes-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 apimatic-kubernetes-operator.v0.0.1:

      - - -

    • "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.
    • - - - -
    -
    - -

    NOT USED

    Grade B
    (800)
    cert-manager -

    COMPLY

    -
    -

    COMPLY

    - - -
    -

    NOT USED

    - - -

    USED

    -

    ERRORS AND WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cert-manager.v1.5.3:

      - -

    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" selfSigned does not have a spec descriptor
    • - -
    • "ERROR" dnsNames does not have a spec descriptor
    • - -
    • "ERROR" issuerRef does not have a spec descriptor
    • - -
    • "ERROR" secretName does not have a spec descriptor
    • - -
    • "ERROR" issuers.cert-manager.io does not have a status descriptor
    • - -
    • "ERROR" certificates.cert-manager.io does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for selfSigned
    • - -
    • "WARNING" Add a spec descriptor for dnsNames
    • - -
    • "WARNING" Add a spec descriptor for issuerRef
    • - -
    • "WARNING" Add a spec descriptor for secretName
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=CertificateRequest: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=Certificate: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value acme.cert-manager.io/v1alpha3, Kind=Challenge: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value acme.cert-manager.io/v1beta1, Kind=Challenge: provided API should have an example annotation
    • - -
    • "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
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=Issuer: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=CertificateRequest: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1alpha2, Kind=Certificate: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value acme.cert-manager.io/v1beta1, Kind=Order: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value acme.cert-manager.io/v1, Kind=Order: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value acme.cert-manager.io/v1alpha2, Kind=Order: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1, Kind=CertificateRequest: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=Certificate: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value acme.cert-manager.io/v1alpha2, Kind=Challenge: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1alpha3, Kind=ClusterIssuer: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1beta1, Kind=Issuer: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value acme.cert-manager.io/v1alpha3, Kind=Order: provided API should have an example annotation
    • - -
    • "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" Warning: Value cert-manager.io/v1beta1, Kind=ClusterIssuer: provided API should have an example annotation
    • - -
    • "WARNING" Warning: Value cert-manager.io/v1, Kind=ClusterIssuer: provided API should have an example annotation
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For cert-manager.v1.5.3:

      - - -

    • "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
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      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
    • - -
    • "WARNING" Add a spec descriptor for clusterChecksRunner
    • - -
    • "WARNING" Add a spec descriptor for clusterName
    • - -
    • "WARNING" Add a spec descriptor for credentials
    • - -
    • "WARNING" Add a spec descriptor for agent
    • - -
    • "WARNING" Add a spec descriptor for clusterAgent
    • - -
    • "WARNING" Add a spec descriptor for query
    • - -
    • "WARNING" Add a spec descriptor for tags
    • - -
    • "WARNING" Add a spec descriptor for title
    • - -
    • "WARNING" Add a spec descriptor for type
    • - -
    • "WARNING" Add a spec descriptor for message
    • - -
    • "WARNING" Add a spec descriptor for query
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For datadog-operator.v0.6.0:

      - - -

    • "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"])
    • - - - -
    -
    - -

    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 -
    -
      - - -
      -

      For shipwright-operator.v0.1.0:

      - -

    • "ERROR" buildSteps does not have a spec descriptor
    • - -
    • "ERROR" buildSteps does not have a spec descriptor
    • - -
    • "ERROR" output does not have a spec descriptor
    • - -
    • "ERROR" source does not have a spec descriptor
    • - -
    • "ERROR" strategy does not have a spec descriptor
    • - -
    • "ERROR" dockerfile does not have a spec descriptor
    • - -
    • "ERROR" resources does not have a spec descriptor
    • - -
    • "ERROR" buildRef does not have a spec descriptor
    • - -
    • "ERROR" Owned CRDs do not have resources specified
    • - -
    • "ERROR" buildstrategies.build.dev does not have a status descriptor
    • - -
    • "ERROR" clusterbuildstrategies.build.dev does not have a status descriptor
    • - - -
    • "WARNING" Add a spec descriptor for buildSteps
    • - -
    • "WARNING" Add a spec descriptor for buildSteps
    • - -
    • "WARNING" Add a spec descriptor for output
    • - -
    • "WARNING" Add a spec descriptor for source
    • - -
    • "WARNING" Add a spec descriptor for strategy
    • - -
    • "WARNING" Add a spec descriptor for dockerfile
    • - -
    • "WARNING" Add a spec descriptor for resources
    • - -
    • "WARNING" Add a spec descriptor for buildRef
    • - -
    • "WARNING" Add CRD validation for spec field `resources` in BuildRun/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      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.
    • - - - -
    -
    - -

    NOT USED

    Grade C
    (500)
    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 -
    -
      - - -
      -

      For spinnaker-operator.v1.20.3:

      - -

    • "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" halyard does not have a spec descriptor
    • - -
    • "ERROR" dockerRegistries 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 spinnakerFeatureFlags
    • - -
    • "WARNING" Add a spec descriptor for minio
    • - -
    • "WARNING" Add a spec descriptor for rbac
    • - -
    • "WARNING" Add a spec descriptor for serviceAccount
    • - -
    • "WARNING" Add a spec descriptor for halyard
    • - -
    • "WARNING" Add a spec descriptor for dockerRegistries
    • - -
    • "WARNING" Add CRD validation for SpinnakerOperator/v1alpha1
    • - - - -
    -
    - -
    -

    ONLY WARNINGS

    - - - +Info -
    -
      - - -
      -

      For spinnaker-operator.v1.20.3:

      - - -

    • "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"])
    • - - - -
    -
    - -

    NOT USED

    Grade D
    (100)
    -
    -
    - - - 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 deleted file mode 100644 index 1d9760f0..00000000 --- a/testdata/reports/operatorhubio_catalog/dashboards/maxocp_quay.io_operatorhubio_catalog_latest_2021-09-06.html +++ /dev/null @@ -1,8092 +0,0 @@ - - - - - - - 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
    - -
    - -
    -
    FAQ
    -
    1. Can my package still have bundles using deprecated API(s) that are not found by this check?
    -

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

    -
    2. What action(s) should I take?
    - -
    3. What does it mean for a package to be in red, amber or green?
    - -
    - -
    -
    Missing Max OCP Version
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    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-13.html similarity index 98% rename from testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-06.html rename to testdata/reports/redhat_certified_operator_index/dashboards/deprecate-apis_registry.redhat.io_redhat_certified_operator_index_v4.6_2021-09-13.html index 3cd62e4e..caceb156 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-13.html @@ -84,9 +84,9 @@

    Deprecated API(s) Dashboard

    Data from the image used
    @@ -123,7 +123,7 @@
    Using deprecated APIs
    - redhat-marketplace-operator + rocketchat-operator-certified @@ -169,7 +153,7 @@
    Using deprecated APIs
    - rapidbiz-operator-certified + k8s-triliovault