From c1a2a93a6832067301457f161c07c6131b419fd7 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Tue, 17 Aug 2021 07:38:12 +0100 Subject: [PATCH] fix deprecate green helper and generate reports based on the latest version of the images --- .gitignore | 3 + Makefile | 7 ++ .../deprecate-green/deprecated_index.go | 35 +++++-- ...rtified_operator_index_v4.8_2021-08-17.yml | 42 ++++++++ ...dhat_marketplace_index_v4.8_2021-08-17.yml | 16 ++++ ...redhat_operator_index_v4.8_2021-08-17.yml} | 95 +++++-------------- 6 files changed, 119 insertions(+), 79 deletions(-) create mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-08-17.yml create mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-08-17.yml rename hack/scripts/deprecated-bundles-repo/deprecate-green/{deprecated.yml => deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml} (71%) diff --git a/.gitignore b/.gitignore index f2a1114a..147b41a8 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ # skip .out files (coverage tests) *.out +# skip files used locally that cannot be commited +**/mongo-query-join-results-prod.json +*ivs_registry.*.json diff --git a/Makefile b/Makefile index 00f11e24..45b35e3b 100644 --- a/Makefile +++ b/Makefile @@ -96,3 +96,10 @@ generate-dashboards: go run ./hack/deprecate-api/generate.go go run ./hack/grade/generate.go go run ./hack/index/generate.go + +## @Helpers - Deprecated implementations +.PHONY: generate-deprecate-green ## This method should be remove soon. It is only an internal helper +generate-deprecate-green: ## 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.8_2021-08-16.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.8_2021-08-16.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.8_2021-08-15.json 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 93f633e4..a3c59a3b 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go @@ -17,14 +17,20 @@ // deprecated on 4.9. That will be removed as soon as possible and is just added // here in case it be required to be checked and used so far. // The following script uses the JSON format output image to -// generates the deprecate.yml file with all bundles which requires +// generates the yml file with all bundles which requires // to be deprecated because are using the APIs which will be removed on ocp 4.9 . // Note that is equals the deprecate-all but will only return the cases where -// we can found a compatible path with 4.9 +// we can found a compatible distribution with 4.9 +// Example of usage: (see that we leave makefile target to help you out here) +// nolint: lll +// 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.8_2021-08-10.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.8_2021-08-06.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.8_2021-08-15.json package main import ( "encoding/json" + "flag" "log" "os" "path/filepath" @@ -60,10 +66,17 @@ func main() { log.Fatal(err) } - // Update here the path of the JSON report for the image that you would like to be used - path := "testdata/reports/redhat_redhat_operator_index/bundles_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-07.json" + 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.Parse() - byteValue, err := pkg.ReadFile(filepath.Join(currentPath, path)) + byteValue, err := pkg.ReadFile(filepath.Join(currentPath, jsonFile)) if err != nil { log.Fatal(err) } @@ -109,7 +122,7 @@ func main() { mapPackagesWithBundles[""] = all } - apiDashReport, err := getAPIDashForImage(path) + apiDashReport, err := getAPIDashForImage(jsonFile) if err != nil { log.Fatal(err) } @@ -149,6 +162,13 @@ func main() { }) for _, b := range bundles { + + // skip the scenarios where deprecate apis were not found + if len(b.KindsDeprecateAPIs) == 0 || + (len(b.KindsDeprecateAPIs) == 1 && b.KindsDeprecateAPIs[0] == pkg.Unknown) { + continue + } + deprecatedYaml.Bundles = append(deprecatedYaml.Bundles, Bundles{ Paths: strings.ReplaceAll(b.BundleImagePath, "registry.redhat.io/", ""), @@ -162,7 +182,8 @@ func main() { return allDeprecated[i].PackageName < allDeprecated[j].PackageName }) - f, err := os.Create(filepath.Join(currentPath, "hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated.yml")) + fp := filepath.Join(currentPath, outputPath, pkg.GetReportName(apiDashReport.ImageName, "deprecated", "yml")) + f, err := os.Create(fp) if err != nil { log.Fatal(err) } diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-08-17.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-08-17.yml new file mode 100644 index 00000000..09d215f3 --- /dev/null +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-08-17.yml @@ -0,0 +1,42 @@ +couchbase-enterprise-certified: + # Bundle: couchbase-operator.v1.2.1 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:cf4a0448fa22963d711bb2d3af8b56e3c356073b76233f33421121403893a859 + # Bundle: couchbase-operator.v1.2.2 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:a2c9323d78e4a2e83810eb9df6e2f364356cd5432cee9bbd98c94784fbc27468 + # Bundle: couchbase-operator.v2.0.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:9462f3735254b047f4b80b539797b83c31faa0ad923fe4a351dba693e51cadef + # Bundle: couchbase-operator.v2.0.1 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:1ec6fc8724eed1b9260eb3765a6280c0f1781bf6d51e998903cb65f1e20b5d73 + # Bundle: couchbase-operator.v2.0.2 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:10ec7cafa6c4be66ea634b88e10a2b136fcd3322cad00309a7ccef455679c6ba + # Bundle: couchbase-operator.v2.1.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:78656ed0df41696e67429609e3262ec31f5ca9f5ca946300e6a4a6503c1bbd18 +gpu-operator-certified: + # Bundle: gpu-operator-certified.v1.3.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:3a70920f1aca227ebe5b1db44125c4370bad00379a941f0bac301d61ee112ba2 + # Bundle: gpu-operator-certified.v1.3.1 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:243b8f0bbc2bda6bb13395f165fe5ec01999331e9b61878686d2073df3bf906c + # Bundle: gpu-operator-certified.v1.4.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:0e69c29d33d5ab9d6676c6a6d5b89e57caddf44090bbabc74a12fea3005704bd + # Bundle: gpu-operator-certified.v1.5.1 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:5ec5a5cbaf6e667e761d3a6273c44f5facf29dabe2ffe502f08fe345536c8dc8 + # Bundle: gpu-operator-certified.v1.5.2 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:3a944050b7ba261b5451e639165eb230f1afbc3be7624a7d6039f138b09cb19f +ibm-block-csi-operator: + # Bundle: ibm-block-csi-operator.v1.3.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:aa2f7b4b4b2d489cd9671b0b45d696ca2fcb8f76ad2b2551a06475917b9fdc99 + # Bundle: ibm-block-csi-operator.v1.4.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:d78c62ef65db4858374cb7bc8434ef6442f6aef306475eb482d130abce8db971 + # Bundle: ibm-block-csi-operator.v1.5.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:4e6b7b6006f6ad537b75fb681805003d4873230ef2706cab3333c4567502361c +nginx-ingress-operator: + # Bundle: nginx-ingress-operator.v0.0.4 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:5825614ced508b2d168fca5dc0d53e169c0c598bf9008dd3ee0d6bf75781d3f6 + # Bundle: nginx-ingress-operator.v0.0.6 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:d53eea0345b2e18fb84d1208f5ca6c2e74c425403ba1611b5b1ee525315da0ae + # Bundle: nginx-ingress-operator.v0.0.7 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:3dc0dc8f785195dc30977d96d038b8101ddb79e4e7ea9375c94bdbb533d4969b + # Bundle: nginx-ingress-operator.v0.1.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:bb5088b3310edf490b5b72e89077326cb92ce6ad543330953c8fab92dfb6637d + # Bundle: nginx-ingress-operator.v0.2.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:39e36214aae291f6724a9e688b16d702bbe57dfcb06e81de6d0d5efb0a5864d6 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-08-17.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-08-17.yml new file mode 100644 index 00000000..cc6199fb --- /dev/null +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-08-17.yml @@ -0,0 +1,16 @@ +couchbase-enterprise-certified-rhmp: + # Bundle: couchbase-operator.v1.2.1 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:e97934cd2d4218d63105de60bcc8872e3d5aefefe81536d815e29463b2b2dc50 + # Bundle: couchbase-operator.v1.2.2 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:6a5bda304437d7f303b09baf5f489654ca64b5ecbdc7c412798689c6392adcb6 + # Bundle: couchbase-operator.v2.0.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:0778f04a4ff5fdbbcd57abf6ad06f1f9081281873dd927e48ff4be288588135b + # Bundle: couchbase-operator.v2.0.1 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:246ebf83967674dcdf0abb1553544690564927ea698dbf1928f3097f388ad677 + # Bundle: couchbase-operator.v2.0.2 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:27f2297c5bf84bf8c28dd67bf806436992400763ada87263ebf90abe6c3cb692 + # Bundle: couchbase-operator.v2.1.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:7d00537b2505fdb5418ad7a279451d5953f0b12b0223ac328ba885be73cbdbed +seldon-deploy-operator-rhmp: + # Bundle: seldon-deploy-operator.v0.7.0 : Note that this package has 1..N bundles compatible with 4.9 + - registry.connect.redhat.com/seldonio/seldon-deploy-operator-bundle@sha256:ec4e1dd7d2049b5378e41987cec3fa36470aa20c89a98a96cb0ed433437afe34 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml similarity index 71% rename from hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated.yml rename to hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml index 8abb798c..ab0bcde7 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated.yml +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml @@ -47,8 +47,8 @@ advanced-cluster-management: - rhacm2/acm-operator-bundle@sha256:5af9a80acccef3f230dca67538276c3777568cbc98b20d6018c5a9843ab18005 # Bundle: advanced-cluster-management.v2.2.5 : Note that this package has 1..N bundles compatible with 4.9 - rhacm2/acm-operator-bundle@sha256:2dc9b26f20e89ab7faa9b6a4a4cdf3137061a5115447d0342de268b8fbdd34ad - # Bundle: advanced-cluster-management.v2.3.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:595f4345c97f951c5733879f4d817668b9028805b1f2a158f915c19aa00f392c + # Bundle: advanced-cluster-management.v2.2.6 : Note that this package has 1..N bundles compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:5f9235a715e8091889aff5427683c6a529d222a8126a883da570fb531cb2771b amq-online: # Bundle: amq-online.1.4.0 : Note that this package has 1..N bundles compatible with 4.9 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:ed1658893b5e78ea6d684dac7f237a80eb1a5fe146996c39152c077ea59f0d61 @@ -70,10 +70,6 @@ amq-online: - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:c5b5ba7265c5ac8e77ff9836746a8ac9ca5e1967270adffffdfe32d8a14968cf # Bundle: amq-online.1.6.2 : Note that this package has 1..N bundles compatible with 4.9 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:debf79ef45e0fdd229bdfae29ff9a40926854278b39b4aa0d364f5ae9c02c6dc - # Bundle: amq-online.1.7.0 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:5f582e82bd357530a7d66bdf25598b69ad75e79e2b28ca028cd656fb52a8259f - # Bundle: amq-online.1.7.1 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:c838ae843b44b9c812bb0f79002cefbc49e68a7eabcb96f242974bb606408a3f businessautomation-operator: # Bundle: businessautomation-operator.1.2.0 : Note that this package has 1..N bundles compatible with 4.9 - rhpam-7/rhpam-operator-bundle@sha256:df348c6ad999c3be37ab19b3651b5a61ab1fa55f7b2ff02b1fea48bfad69ab4a @@ -85,30 +81,10 @@ businessautomation-operator: - rhpam-7/rhpam-operator-bundle@sha256:5929b5d30f2c3c215bf0c3052101b618d1e16c39f8b525a22ceb3541009c1a2c # Bundle: businessautomation-operator.1.4.1 : Note that this package has 1..N bundles compatible with 4.9 - rhpam-7/rhpam-operator-bundle@sha256:3e7da2092cffe5bd2161c98b86e26ce6107248ca52c94a3a333b180f623333de - # Bundle: businessautomation-operator.7.10.0-1 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:ee5ef1dfefb946f8eec41f05c0f7b496b431c04ddb16489ea4a0515a5a43f0c2 - # Bundle: businessautomation-operator.7.10.0-2 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:42dd0fa00313fd075868fb81b07b1567169bd89b1168e1d4d29e8b62e63adfc4 - # Bundle: businessautomation-operator.7.10.1-1 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:d59c5d8525cf543fc3c12ef631f9fa7a2dd59e2147cbd840437723bbeaa76008 - # Bundle: businessautomation-operator.7.10.1-2 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:aa942303f701c3f484cd5ff75eb231dbb2c3d5d2a9a748d57bb5b6c1b34d05f7 - # Bundle: businessautomation-operator.7.11.0-1 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:9d59749ec85ac601c326532492431cdabe86070bc2876ddf760daab08dd5e842 - # Bundle: businessautomation-operator.7.11.0-2 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:5dc16930b4d2f061eb32698cdd1b108e6e2ceb72df319b0a212bc2e4131429d8 - # Bundle: businessautomation-operator.7.11.1-1 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:f5819f66a1e6bbc890fa5e9529eca33154539dfe1a4ce35bdf681ebb1fd8f5b1 # Bundle: businessautomation-operator.7.8.0 : Note that this package has 1..N bundles compatible with 4.9 - rhpam-7/rhpam-operator-bundle@sha256:8bd9ac4b1ddcc03f2e6beb131bcfaf0f65ba6b90039e7a1af9dda631ae8d37f8 # Bundle: businessautomation-operator.7.8.1 : Note that this package has 1..N bundles compatible with 4.9 - rhpam-7/rhpam-operator-bundle@sha256:5a5429d84cc36ce29d95fe86d9b6a9eaef0c3ed3d1925fd9b653904c411cbcb4 - # Bundle: businessautomation-operator.7.9.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:f486e4a3085ce9245a7d0eec827f97b6d7fac61eeeca01563288d0370370af83 - # Bundle: businessautomation-operator.7.9.0-2 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:af5a192a66fd81506cc5361103d7e3d510992f207343f6580a91022dc1bce745 - # Bundle: businessautomation-operator.7.9.1-1 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:ce102ebf04a9854a71b1fdac0d9d9e17580fa18d8cb9f6ee507abcd77e6efeac codeready-workspaces: # Bundle: crwoperator.v2.0.0 : Note that this package has 1..N bundles compatible with 4.9 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:7b7558c8d9170bd27c9dcf2e62df827d477dbbea694f7040f5cd5bcd0eb598a4 @@ -116,10 +92,6 @@ codeready-workspaces: - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:af5795b85faa63523353eba59b244b94578eed6ee11d0a4f834e64009395a069 # Bundle: crwoperator.v2.1.1 : Note that this package has 1..N bundles compatible with 4.9 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:aba490f87a1ed4c4a47cb5cb5a82ea1bd67031db0382df400d81e13a125f4aff - # Bundle: crwoperator.v2.10.0 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:55baa64259da5a50d9ee5e40f0177a3a73ad1f0e73459748ccf7e97ff91296bc - # Bundle: crwoperator.v2.10.1 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:71267d186d55327e25c0d9a74c21835257b7ed262b3b56319c7ff648e0be0395 # Bundle: crwoperator.v2.2.0 : Note that this package has 1..N bundles compatible with 4.9 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:b9bc3d8fb71df47ef32e4f2c7d74b938887fbe2683b132d76e0215eb6cee4a9a # Bundle: crwoperator.v2.3.0 : Note that this package has 1..N bundles compatible with 4.9 @@ -138,15 +110,19 @@ codeready-workspaces: - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:69761d7600d9602fd89f600d9670156e71f68c82802578b0db729cfa0087c89b # Bundle: crwoperator.v2.8.0 : Note that this package has 1..N bundles compatible with 4.9 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:080bc58804ca40380c5ed58a5bbdd5fe035fed84a07e58d1c590e06695bbb720 - # Bundle: crwoperator.v2.9.0 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:345073710fca51ab00006902064ab1f5a24db220498acfa7c92986696d33cb6f elasticsearch-operator: - # Bundle: elasticsearch-operator.4.6.0-202103010126.p0 : Note that this package has 1..N bundles compatible with 4.9 - - openshift4/ose-elasticsearch-operator-bundle@sha256:037eac94f8d1b63c52f09b0abafd48b7bb3a76db6d01b457fc3a16f63f60a639 - # Bundle: elasticsearch-operator.5.0.6-40 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-logging/elasticsearch-operator-bundle@sha256:de2098bea36e57810342ccc41a1c7af9a2549e0ac7b398f23d686dae776b6557 # Bundle: elasticsearch-operator.5.1.0-96 : Note that this package has 1..N bundles compatible with 4.9 - openshift-logging/elasticsearch-operator-bundle@sha256:f5cebaa2582fee8e6420b009efb9f4d894a487ebf5ab8c717408442eb0cd9bc1 +fuse-console: + # Bundle: fuse-console.v7.7.1 : Note that this package has 1..N bundles compatible with 4.9 + - fuse7/fuse-console-operator-bundle@sha256:5e3e9d565510c1a12351f89f912e21f318ee0d7ed52fc8cca6051a6dbf3a6e6d + # Bundle: fuse-console.v7.8.2 : Note that this package has 1..N bundles compatible with 4.9 + - fuse7/fuse-console-rhel7-operator-metadata@sha256:d207bf3721bdfb6d4d90cda5245b3c49cedef0ba2a308ed64cd00aa6fea7b152 +fuse-online: + # Bundle: fuse-online-operator.v7.7.1 : Note that this package has 1..N bundles compatible with 4.9 + - fuse7/fuse-online-operator-bundle@sha256:93d12b2fc2a2e0263890529e227dcb9e37172139f63a95d39b1dce4f19cee39c + # Bundle: fuse-online-operator.v7.8.1 : Note that this package has 1..N bundles compatible with 4.9 + - fuse7/fuse-online-operator-bundle@sha256:0161c67a3c6be92306f68c2a3b7d9ce3edcf57fdeb1bf2843f988cc85fefc89b klusterlet-product: # Bundle: klusterlet-product.v2.2.0 : Note that this package has 1..N bundles compatible with 4.9 - rhacm2/klusterlet-operator-bundle@sha256:58b7976358bd5b30958602c820c5d3b0ba136e65fd7424ce92d23801dbd0976f @@ -158,8 +134,8 @@ klusterlet-product: - rhacm2/klusterlet-operator-bundle@sha256:33651be7274ff2cd66c9e23e7eb20d5d5ca9649aed6777bb8b0ec03dfc8b0707 # Bundle: klusterlet-product.v2.2.5 : Note that this package has 1..N bundles compatible with 4.9 - rhacm2/klusterlet-operator-bundle@sha256:e5a7688faeb49b5ba135fb37251926c9d6c877c0793a1d88a786f0cd2efb03c1 - # Bundle: klusterlet-product.v2.3.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/klusterlet-operator-bundle@sha256:281fe57deda5c26e8861540513479fa08bc697eb35fb40544abf0fb697a73a16 + # Bundle: klusterlet-product.v2.2.6 : Note that this package has 1..N bundles compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:91e79536fefd2f5f6d4dde0a46441fa610c410c721bdfbc3f804da5e2e8c77ee kubevirt-hyperconverged: # Bundle: kubevirt-hyperconverged-operator.v2.3.0 : Note that this package has 1..N bundles compatible with 4.9 - container-native-virtualization/hco-bundle-registry@sha256:3e26ec915e2b9b21300d384594223ec3db3e885a627ee433df80ac9b04a5da75 @@ -197,42 +173,14 @@ kubevirt-hyperconverged: - container-native-virtualization/hco-bundle-registry@sha256:23dee295d93e7e917cefdbf0a6933bcf6136d0f44d723f03f0e533990ca8f14e # Bundle: kubevirt-hyperconverged-operator.v2.6.5 : Note that this package has 1..N bundles compatible with 4.9 - container-native-virtualization/hco-bundle-registry@sha256:4a64b511e6d455bc5bcbd821456b1f089cec9f902d90289dd89b8a923b09d803 - # Bundle: kubevirt-hyperconverged-operator.v4.8.0 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:d0aea69adbe85ba64ec810d203e5207ece6b29c4e0a54cc6b2291671b2f50572 openshift-pipelines-operator-rh: - # Bundle: openshift-pipelines-operator.v1.0.1 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:5ee476b093569846e19deca332ff18809f01e46353e0d4d8de10876be60ef3e3 - # Bundle: openshift-pipelines-operator.v1.1.1 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:aae9c3409971cf612629321aa4657ebc9705b78d6917e30c7c47ebb2d49d25d5 - # Bundle: redhat-openshift-pipelines-operator.v1.1.2 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:3e953a2a4910d026672681f97bdb8bfbc0c0ce21ed74790df254d8398ee8d7b9 - # Bundle: redhat-openshift-pipelines-operator.v1.2.0 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:04007ddaa0c12d6c38ef11a3e24bc5a0f451476292a81c7fb2d17d03fb785c3e - # Bundle: redhat-openshift-pipelines-operator.v1.2.1 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:2371ccddc7b04c70ee75477cca6cd832b19c9a8c63f67f3a0127dd970506e30a - # Bundle: redhat-openshift-pipelines-operator.v1.2.2 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:f7f29ecf9f6aa87d8eafa967996b3323bf0eb86cd612524dbe2327accc1c5f8e # Bundle: redhat-openshift-pipelines-operator.v1.2.3 : Note that this package has 1..N bundles compatible with 4.9 - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:0f4b4082d0b087da0a56cf43ce17763925ac2bca743bf1ef164a38375ae3c5a4 - # Bundle: redhat-openshift-pipelines.v1.3.0 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:4521df2f43b4b0d3d305c4a85621675b02da17c58d9f40a6f616bb40934c86f7 - # Bundle: redhat-openshift-pipelines.v1.3.1 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:ee6146e6d1e2417190f690ec9173c756b5115b36d450422aa2e94ad564cb51a5 - # Bundle: redhat-openshift-pipelines.v1.4.0 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines/pipelines-operator-bundle@sha256:4a8a4f4dc20909ad47a0e357f22a8d50763afd515c1c2c607a3df90f1dac0d34 - # Bundle: redhat-openshift-pipelines.v1.5.0 : Note that this package has 1..N bundles compatible with 4.9 - - openshift-pipelines/pipelines-operator-bundle@sha256:d4c28d783105a9efae2bd20f199ad1b21904602cbefc3ba8c31a938ff49e7e9f performance-addon-operator: # Bundle: performance-addon-operator.v4.4.1 : Note that this package has 1..N bundles compatible with 4.9 - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:52b92063ab262de4eccd82b3e276bc464448a552f47f019b13f5bc03603ab3a1 # Bundle: performance-addon-operator.v4.5.4 : Note that this package has 1..N bundles compatible with 4.9 - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:d822388c726075230f1eb6e9fd26a99291590bc267d76fde7b7137eb737e46fd - # Bundle: performance-addon-operator.v4.6.3 : Note that this package has 1..N bundles compatible with 4.9 - - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:cb3c005ede341aba4e9c42b7461474e67ec810461287ca9f174565c12dced7f0 - # Bundle: performance-addon-operator.v4.7.3 : Note that this package has 1..N bundles compatible with 4.9 - - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:51eeb8f196464a6a0046984592701073b5788ab54420a097054909dbb926c8b1 - # Bundle: performance-addon-operator.v4.8.0 : Note that this package has 1..N bundles compatible with 4.9 - - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:d1fd434f371a7c06d6a20b39297765858ba6579931946c86e7226d046bcd98c3 service-registry-operator: # Bundle: service-registry-operator.v1.0.0 : Note that this package has 1..N bundles compatible with 4.9 - integration/service-registry-rhel8-operator-metadata@sha256:49b50e2b4cfe341a30f6d4f8e8a6d411da7926335bd22a2397ba37acaf1ce756 @@ -248,12 +196,15 @@ service-registry-operator: - integration/service-registry-rhel8-operator-metadata@sha256:6269cb4e07a545c4b06557e7a3f3e6969c51cbc4fb13efcd593b4c045207bd06 # Bundle: service-registry-operator.v1.1.3 : Note that this package has 1..N bundles compatible with 4.9 - integration/service-registry-rhel8-operator-metadata@sha256:a21153027b7a1146752cabb02f53bd2e7f5b72af3af38bd822e214e83e046f31 - # Bundle: service-registry-operator.v2.0.0 : Note that this package has 1..N bundles compatible with 4.9 - - integration/service-registry-rhel8-operator-metadata@sha256:93da36db720902a958cfe3df7b0c67a96bd0fc2cf57f52c205f1e0dde8764bcd - # Bundle: service-registry-operator.v2.0.1 : Note that this package has 1..N bundles compatible with 4.9 - - integration/service-registry-rhel8-operator-metadata@sha256:042a75d8910d68719bdc28a59d735a871986e3ceeb11ed135ebd1d7991a6df7c submariner: # Bundle: submariner.v0.8.1 : Note that this package has 1..N bundles compatible with 4.9 - rhacm2-tech-preview/submariner-operator-bundle@sha256:0de0f0ee7078e566f0ce21dcfb4eb9f0177ddc790a8a575b967635259df51da5 - # Bundle: submariner.v0.9.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2-tech-preview/submariner-operator-bundle@sha256:7725b42971d6735cda68cac2cc46c39b972c8694d2ed21a203551912183aa90c +web-terminal: + # Bundle: web-terminal.v1.0.1 : Note that this package has 1..N bundles compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:72654f9d638fc59231c4bfa75781aa2cf7ab911a3c42d6ba51232ee9894d54d5 + # Bundle: web-terminal.v1.1.0 : Note that this package has 1..N bundles compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:320875845790b0da60dbfbe08fbd4112a80d47cd79510f16d2a1080c66420fd5 + # Bundle: web-terminal.v1.2.0 : Note that this package has 1..N bundles compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:e08d38c7b0e585df1185d97890a8723827c47c6749e7d7cec0afa8c9359c3ff4 + # Bundle: web-terminal.v1.2.1 : Note that this package has 1..N bundles compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:cbf74af4bf114e9207613a850a62116e99eb3148d3e27e3f7b540f39d6259234