From 6a6f41add3a0d441c7f3bae510a5d969292711f7 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Sun, 22 Aug 2021 13:19:06 +0100 Subject: [PATCH 1/3] improve and update deprecate green yml results --- Makefile | 12 +- .../deprecate-green/deprecated_index.go | 3 +- ...tified_operator_index_v4.9_2021-08-22.yml} | 45 ++-- ...dhat_marketplace_index_v4.8_2021-08-17.yml | 16 -- ...dhat_marketplace_index_v4.9_2021-08-22.yml | 23 ++ ..._redhat_operator_index_v4.8_2021-08-17.yml | 210 ---------------- ..._redhat_operator_index_v4.8_2021-08-22.yml | 224 ++++++++++++++++++ .../deprecate-green/template.go.tmpl | 9 +- 8 files changed, 289 insertions(+), 253 deletions(-) rename hack/scripts/deprecated-bundles-repo/deprecate-green/{deprecated_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-08-17.yml => deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml} (55%) delete mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_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.9_2021-08-22.yml delete mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml create mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml diff --git a/Makefile b/Makefile index ba45d9f3..906f56d0 100644 --- a/Makefile +++ b/Makefile @@ -100,13 +100,13 @@ generate-dashboards: ## @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 +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-08-22.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-08-22.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-21.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.8_2021-08-16.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.8_2021-08-16.json + 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-08-22.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-08-22.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 a3c59a3b..191cab66 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_index.go @@ -56,6 +56,7 @@ type Deprecated struct { type File struct { Deprecated []Deprecated + APIDashReport *custom.APIDashReport } //nolint: lll @@ -191,7 +192,7 @@ func main() { defer f.Close() t := template.Must(template.ParseFiles(filepath.Join(currentPath, "hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl"))) - err = t.Execute(f, File{allDeprecated}) + err = t.Execute(f, File{Deprecated: allDeprecated, APIDashReport: apiDashReport}) if err != nil { panic(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.9_2021-08-22.yml similarity index 55% rename from hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.8_2021-08-17.yml rename to hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml index 09d215f3..68c50ced 100644 --- 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.9_2021-08-22.yml @@ -1,42 +1,49 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: registry.redhat.io/redhat/certified-operator-index:v4.9 +# - Image ID: sha256:a8b8344cc4640777e25f9818a75bf49a84433f40e1ac6a3a58f71df6de89f7e5 +# - Image Created at: 2021-08-19T16:49:52.05975663Z +# - From JSON report generated at: 2021-08-22 +############################################## couchbase-enterprise-certified: - # Bundle: couchbase-operator.v1.2.1 : Note that this package has 1..N bundles compatible with 4.9 + # Bundle: couchbase-operator.v1.2.1 : Package has distributions 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 + # Bundle: couchbase-operator.v1.2.2 : Package has distributions 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 + # Bundle: couchbase-operator.v2.0.0 : Package has distributions 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 + # Bundle: couchbase-operator.v2.0.1 : Package has distributions 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 + # Bundle: couchbase-operator.v2.0.2 : Package has distributions 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 + # Bundle: couchbase-operator.v2.1.0 : Package has distributions 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 + # Bundle: gpu-operator-certified.v1.3.0 : Package has distributions 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 + # Bundle: gpu-operator-certified.v1.3.1 : Package has distributions 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 + # Bundle: gpu-operator-certified.v1.4.0 : Package has distributions 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 + # Bundle: gpu-operator-certified.v1.5.1 : Package has distributions 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 + # Bundle: gpu-operator-certified.v1.5.2 : Package has distributions 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 + # Bundle: ibm-block-csi-operator.v1.3.0 : Package has distributions 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 + # Bundle: ibm-block-csi-operator.v1.4.0 : Package has distributions 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 + # Bundle: ibm-block-csi-operator.v1.5.0 : Package has distributions 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 + # Bundle: nginx-ingress-operator.v0.0.4 : Package has distributions 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 + # Bundle: nginx-ingress-operator.v0.0.6 : Package has distributions 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 + # Bundle: nginx-ingress-operator.v0.0.7 : Package has distributions 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 + # Bundle: nginx-ingress-operator.v0.1.0 : Package has distributions 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 + # Bundle: nginx-ingress-operator.v0.2.0 : Package has distributions 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 deleted file mode 100644 index cc6199fb..00000000 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.8_2021-08-17.yml +++ /dev/null @@ -1,16 +0,0 @@ -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_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml new file mode 100644 index 00000000..8a6f8127 --- /dev/null +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml @@ -0,0 +1,23 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: registry.redhat.io/redhat/redhat-marketplace-index:v4.9 +# - Image ID: sha256:2469558a82f56cd0853578d0d8ff3f15bdcae83eabf3df6630080c3745a098ec +# - Image Created at: 2021-08-18T22:00:24.074412133Z +# - From JSON report generated at: 2021-08-22 +############################################## +couchbase-enterprise-certified-rhmp: + # Bundle: couchbase-operator.v1.2.1 : Package has distributions compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:e97934cd2d4218d63105de60bcc8872e3d5aefefe81536d815e29463b2b2dc50 + # Bundle: couchbase-operator.v1.2.2 : Package has distributions compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:6a5bda304437d7f303b09baf5f489654ca64b5ecbdc7c412798689c6392adcb6 + # Bundle: couchbase-operator.v2.0.0 : Package has distributions compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:0778f04a4ff5fdbbcd57abf6ad06f1f9081281873dd927e48ff4be288588135b + # Bundle: couchbase-operator.v2.0.1 : Package has distributions compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:246ebf83967674dcdf0abb1553544690564927ea698dbf1928f3097f388ad677 + # Bundle: couchbase-operator.v2.0.2 : Package has distributions compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:27f2297c5bf84bf8c28dd67bf806436992400763ada87263ebf90abe6c3cb692 + # Bundle: couchbase-operator.v2.1.0 : Package has distributions compatible with 4.9 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:7d00537b2505fdb5418ad7a279451d5953f0b12b0223ac328ba885be73cbdbed +seldon-deploy-operator-rhmp: + # Bundle: seldon-deploy-operator.v0.7.0 : Package has distributions 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_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml deleted file mode 100644 index ab0bcde7..00000000 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-17.yml +++ /dev/null @@ -1,210 +0,0 @@ -advanced-cluster-management: - # Bundle: advanced-cluster-management.v2.0.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:280bf802843fab435a2946a49324900223f14ae01abbb113624bc056b5ab0188 - # Bundle: advanced-cluster-management.v2.0.1 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:1e1cd6a2950349e3e619e2ffe15cd10d36a5b15e1a9e3b0024bdb11a2355b7ca - # Bundle: advanced-cluster-management.v2.0.10 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:ea42543f1127fd6ec53cf7f6c7f61f3e0b62f1b210844584d89d60c4bf53fef9 - # Bundle: advanced-cluster-management.v2.0.2 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:75c32ced4add3c6c583daf0bcf81b13cbeb99fd2e24f2c3261fb95ac7bcec4f1 - # Bundle: advanced-cluster-management.v2.0.3 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:c068e6f697764fe0aa82f5572450bbf6cc80d9670a7cb65a8753afa9fa9f8bf6 - # Bundle: advanced-cluster-management.v2.0.4 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:1af785b35226525dc1265123bc274bccb025439ea396e560d0a562791f2c8217 - # Bundle: advanced-cluster-management.v2.0.5 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:3a8c3261d61779907a9a86bb4a2699bd8c60f3ec6466cf6656034b7eda127bc6 - # Bundle: advanced-cluster-management.v2.0.6 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:d97ae02a20eaaa1a0770710a7b5808787d9617ce63c03d3c3f08a11f5bf41aa3 - # Bundle: advanced-cluster-management.v2.0.7 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:e77e15271554a64192f4c80a864efe4f082caeeb94d72f10165beb5cba043ebf - # Bundle: advanced-cluster-management.v2.0.8 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:c86057b81e3f4a2979f6d5e2ddcbb9fc31549f8d528497a4924e53b26fd75c8c - # Bundle: advanced-cluster-management.v2.0.9 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:a0a2be3279d03955acf2c2471384c819d45ee765401242eeac20751fe3c835fd - # Bundle: advanced-cluster-management.v2.1.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:76435cfe5728bbcacabb1a444ca45df913a7d5a8541b0cc40496cd11d77865db - # Bundle: advanced-cluster-management.v2.1.1 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:f02648187cb8cc1c34a6c463ce7f307cab7016da4c06e836971b9bd23d967394 - # Bundle: advanced-cluster-management.v2.1.2 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:9725b91409219faf9e37bab93529ca21bfd209aab3395403866275a3bd08f072 - # Bundle: advanced-cluster-management.v2.1.3 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:510b81899ac25c4318e31a7a44b5c2645fc14e24cc463847f19c5229e8d87c6f - # Bundle: advanced-cluster-management.v2.1.4 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:5d6c8f7a046eaebd4cee3ad10151bfa3bb176df8e20cd475db66becdcd7356fd - # Bundle: advanced-cluster-management.v2.1.5 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:4e4fc6cdfec03a175ada82a98044ba6ae80e5d7fc096a24bc5f2977f49d6c70b - # Bundle: advanced-cluster-management.v2.1.6 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:55906425c2619315d98a9f2b3b014379bfa14875592d18a550a93344097c5496 - # Bundle: advanced-cluster-management.v2.2.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:96e323e923dfb556daadc87e990eb89277c21926e56e378bae60bf1d2a46931a - # Bundle: advanced-cluster-management.v2.2.1 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:adba2e6b585bde1c05d041097a9f19b0753230480032aa44ad1b27fecbf819f5 - # Bundle: advanced-cluster-management.v2.2.2 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:82f8508111f307c25e458a2283e86a21eaeeaa2cd0b335766174f324f6bd392d - # Bundle: advanced-cluster-management.v2.2.3 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/acm-operator-bundle@sha256:3560cfe5aa98787496ad1db0440c32a53c9f91ec6bf56fe674b44fcce0913fbc - # Bundle: advanced-cluster-management.v2.2.4 : Note that this package has 1..N bundles compatible with 4.9 - - 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.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 - # Bundle: amq-online.1.4.1 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:6195b018194b457eb6bad2c53381bdfa4d84329e86d561580a63a9c2faab66d9 - # Bundle: amq-online.1.4.2 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:28157b46dcee1e5fffef9260aa9639df03cca2d8e84ccd63bf1fd966c17c10d5 - # Bundle: amq-online.1.4.4 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:f0f899b90e0ab0e9cc9818e4181beccf178543388c14570da0fd8dda0b4abaa9 - # Bundle: amq-online.1.5.0 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:b350796e748ac56aeaf71711f4eaae06d2b9f77fc1c9aeec1680c9ab096e663c - # Bundle: amq-online.1.5.1 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:609f34c93dfc53fb853c45d395fcb5c07b6d96e7ab075b036c785203415cfc11 - # Bundle: amq-online.1.5.2 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:81fabc8e6bdc05a772fbf4401331e8ccc568593dafada38fff4c8aaf0565ba06 - # Bundle: amq-online.1.5.3 : Note that this package has 1..N bundles compatible with 4.9 - - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:e81aac14ba253b4a89370f8aabfebf491f34621cf8d54efd6b8b3796ca8732bb - # Bundle: amq-online.1.6.1 : Note that this package has 1..N bundles compatible with 4.9 - - 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 -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 - # Bundle: businessautomation-operator.1.2.1 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:a9d8ced4deb7113de7c97efc226cb9d2ee912be2ce6e67418ddcee423f2a9204 - # Bundle: businessautomation-operator.1.3.0 : Note that this package has 1..N bundles compatible with 4.9 - - rhpam-7/rhpam-operator-bundle@sha256:c119d2dc15f7d0038623fc2d682e513bba0cbbc63e0095ab769bd119faf59b7f - # Bundle: businessautomation-operator.1.4.0 : Note that this package has 1..N bundles compatible with 4.9 - - 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.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 -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 - # Bundle: crwoperator.v2.1.0 : Note that this package has 1..N bundles compatible with 4.9 - - 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.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 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:1007e3de27d2235e319c23b08dce4ad83d3569f37fff37ad8174b29909e01f04 - # Bundle: crwoperator.v2.4.0 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:289f77b62c012b6ef09930acf1466749327ef9a1594eb39e077ff7116f5be73b - # Bundle: crwoperator.v2.5.0 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:c48e4c3f85e30ab3a209369f7fd9212d34fbe2b97de5334439b06742e9cdec2a - # Bundle: crwoperator.v2.5.1 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:181dc432a5aa228ca57a4c23218391f846284e258f72ed306f15ef884e991ee8 - # Bundle: crwoperator.v2.6.0 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:496aeecec52b0645cfcaa8b7ee7e71c55f823c7520ce3d2c9238d522c17a6e98 - # Bundle: crwoperator.v2.7.0 : Note that this package has 1..N bundles compatible with 4.9 - - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:357f830568a690ea194acdf2b1c5d66b54b10bf1a0dc58d1e771454692dc2270 - # Bundle: crwoperator.v2.7.1 : Note that this package has 1..N bundles compatible with 4.9 - - 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 -elasticsearch-operator: - # 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 - # Bundle: klusterlet-product.v2.2.1 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/klusterlet-operator-bundle@sha256:dd102ee9ec3a32312e63309e5cd5526e8eb1eb7e7b5ee299b95302618c00a0cb - # Bundle: klusterlet-product.v2.2.2 : Note that this package has 1..N bundles compatible with 4.9 - - rhacm2/klusterlet-operator-bundle@sha256:d3b166fed222fbbcfe70e7a3872e8c1ac02a5ccd2cbf8585bedd29c005f6a16d - # Bundle: klusterlet-product.v2.2.3 : Note that this package has 1..N bundles compatible with 4.9 - - 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.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 - # Bundle: kubevirt-hyperconverged-operator.v2.4.0 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:307e78697fa8546af3c965feda55b3499a6db0c10612812ad849221b4d450534 - # Bundle: kubevirt-hyperconverged-operator.v2.4.1 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:039844b547e6e28f5e24b8d0caf9d26bc04ff61f44e3b3a5a6b4e6e5d4748293 - # Bundle: kubevirt-hyperconverged-operator.v2.4.2 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:ca5315dec677075a643cd009dfbe768eb6d1dea941e41e3b7ea88d1a430c2fae - # Bundle: kubevirt-hyperconverged-operator.v2.4.3 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:5128091ce8551d630ba7afb4723d9433da3cb09f99eb06b1dbc4fee490faa612 - # Bundle: kubevirt-hyperconverged-operator.v2.4.4 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:096949be81c57a0f2d6834c6dbd3a39f8464d7687115da5824dd3acb58bf4bcd - # Bundle: kubevirt-hyperconverged-operator.v2.4.5 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:1cd80adae36f3ceae5b8f3703d5761e82c1a5ed364b5f771f537dd6090d1c5a7 - # Bundle: kubevirt-hyperconverged-operator.v2.5.0 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:546e4497d96fd0ef834acbe7dae2c7383d2e5325b14cdaec2e631560d102720f - # Bundle: kubevirt-hyperconverged-operator.v2.5.1 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:9811228cf63e2d85529410c0fcaa36999a25dcede649dc4d7d809b98b0a1c332 - # Bundle: kubevirt-hyperconverged-operator.v2.5.2 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:90a1f9a2db2b0d1ac78586e79dd0ea3e1ca0a20300e4da95118d0bb77271b39b - # Bundle: kubevirt-hyperconverged-operator.v2.5.3 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:76402738a5a52397b164aa85850df9d5ffa446a2be4b0956d30120c1eade0848 - # Bundle: kubevirt-hyperconverged-operator.v2.5.4 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:4ed94efd3ddf14dc111a473c891469f7251cd94ccf2046c96524d17ca82c6602 - # Bundle: kubevirt-hyperconverged-operator.v2.6.0 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:1d08941f581ce9c39fde20ca1d6e17b2732b78504cd490ccaddc75e5db144a08 - # Bundle: kubevirt-hyperconverged-operator.v2.6.1 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:e99ff69879859d0bf689e052839c47d95e47da44926f86240d8f833858af77a2 - # Bundle: kubevirt-hyperconverged-operator.v2.6.2 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:6639ea7b8cf2d0f4a1df71116525c3383c9a55962403fee4bae461e1095d3718 - # Bundle: kubevirt-hyperconverged-operator.v2.6.3 : Note that this package has 1..N bundles compatible with 4.9 - - container-native-virtualization/hco-bundle-registry@sha256:37bbf59bce47d6d469b908003f8545b4e2c87b52b274da59daa1993a22fe5591 - # Bundle: kubevirt-hyperconverged-operator.v2.6.4 : Note that this package has 1..N bundles compatible with 4.9 - - 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 -openshift-pipelines-operator-rh: - # 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 -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 -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 - # Bundle: service-registry-operator.v1.0.1 : Note that this package has 1..N bundles compatible with 4.9 - - integration/service-registry-rhel8-operator-metadata@sha256:39b0ba26ea73c6ba54c8ce0c86c2563a3284e5690f091a0536c9722e4f11d62a - # Bundle: service-registry-operator.v1.0.2 : Note that this package has 1..N bundles compatible with 4.9 - - integration/service-registry-rhel8-operator-metadata@sha256:31c7dd275bc4c2b0d9ead9c2002963485791b279a90174191826236ac624a44b - # Bundle: service-registry-operator.v1.1.0 : Note that this package has 1..N bundles compatible with 4.9 - - integration/service-registry-rhel8-operator-metadata@sha256:720fd4d865f4e4a404d9a7846d5608b87d540f87a49cb5161ce383be0233d4b4 - # Bundle: service-registry-operator.v1.1.1 : Note that this package has 1..N bundles compatible with 4.9 - - integration/service-registry-rhel8-operator-metadata@sha256:a4f5b333f7009001bc27849f752aaf71daf03a534e65b59b88463e2b8ddce8f4 - # Bundle: service-registry-operator.v1.1.2 : Note that this package has 1..N bundles compatible with 4.9 - - 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 -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 -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 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml new file mode 100644 index 00000000..151f2ba3 --- /dev/null +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml @@ -0,0 +1,224 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: registry.redhat.io/redhat/redhat-operator-index:v4.8 +# - Image ID: sha256:b88b8b3531b315848d5a4d53c6e376660547bdee84e07a06d07aa7406974dcc2 +# - Image Created at: 2021-08-19T18:05:29.215979732Z +# - From JSON report generated at: 2021-08-21 +############################################## +advanced-cluster-management: + # Bundle: advanced-cluster-management.v2.0.0 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:280bf802843fab435a2946a49324900223f14ae01abbb113624bc056b5ab0188 + # Bundle: advanced-cluster-management.v2.0.1 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:1e1cd6a2950349e3e619e2ffe15cd10d36a5b15e1a9e3b0024bdb11a2355b7ca + # Bundle: advanced-cluster-management.v2.0.10 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:ea42543f1127fd6ec53cf7f6c7f61f3e0b62f1b210844584d89d60c4bf53fef9 + # Bundle: advanced-cluster-management.v2.0.2 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:75c32ced4add3c6c583daf0bcf81b13cbeb99fd2e24f2c3261fb95ac7bcec4f1 + # Bundle: advanced-cluster-management.v2.0.3 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:c068e6f697764fe0aa82f5572450bbf6cc80d9670a7cb65a8753afa9fa9f8bf6 + # Bundle: advanced-cluster-management.v2.0.4 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:1af785b35226525dc1265123bc274bccb025439ea396e560d0a562791f2c8217 + # Bundle: advanced-cluster-management.v2.0.5 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:3a8c3261d61779907a9a86bb4a2699bd8c60f3ec6466cf6656034b7eda127bc6 + # Bundle: advanced-cluster-management.v2.0.6 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:d97ae02a20eaaa1a0770710a7b5808787d9617ce63c03d3c3f08a11f5bf41aa3 + # Bundle: advanced-cluster-management.v2.0.7 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:e77e15271554a64192f4c80a864efe4f082caeeb94d72f10165beb5cba043ebf + # Bundle: advanced-cluster-management.v2.0.8 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:c86057b81e3f4a2979f6d5e2ddcbb9fc31549f8d528497a4924e53b26fd75c8c + # Bundle: advanced-cluster-management.v2.0.9 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:a0a2be3279d03955acf2c2471384c819d45ee765401242eeac20751fe3c835fd + # Bundle: advanced-cluster-management.v2.1.0 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:76435cfe5728bbcacabb1a444ca45df913a7d5a8541b0cc40496cd11d77865db + # Bundle: advanced-cluster-management.v2.1.1 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:f02648187cb8cc1c34a6c463ce7f307cab7016da4c06e836971b9bd23d967394 + # Bundle: advanced-cluster-management.v2.1.2 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:9725b91409219faf9e37bab93529ca21bfd209aab3395403866275a3bd08f072 + # Bundle: advanced-cluster-management.v2.1.3 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:510b81899ac25c4318e31a7a44b5c2645fc14e24cc463847f19c5229e8d87c6f + # Bundle: advanced-cluster-management.v2.1.4 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:5d6c8f7a046eaebd4cee3ad10151bfa3bb176df8e20cd475db66becdcd7356fd + # Bundle: advanced-cluster-management.v2.1.5 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:4e4fc6cdfec03a175ada82a98044ba6ae80e5d7fc096a24bc5f2977f49d6c70b + # Bundle: advanced-cluster-management.v2.1.6 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:55906425c2619315d98a9f2b3b014379bfa14875592d18a550a93344097c5496 + # Bundle: advanced-cluster-management.v2.2.0 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:96e323e923dfb556daadc87e990eb89277c21926e56e378bae60bf1d2a46931a + # Bundle: advanced-cluster-management.v2.2.1 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:adba2e6b585bde1c05d041097a9f19b0753230480032aa44ad1b27fecbf819f5 + # Bundle: advanced-cluster-management.v2.2.2 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:82f8508111f307c25e458a2283e86a21eaeeaa2cd0b335766174f324f6bd392d + # Bundle: advanced-cluster-management.v2.2.3 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:3560cfe5aa98787496ad1db0440c32a53c9f91ec6bf56fe674b44fcce0913fbc + # Bundle: advanced-cluster-management.v2.2.4 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:5af9a80acccef3f230dca67538276c3777568cbc98b20d6018c5a9843ab18005 + # Bundle: advanced-cluster-management.v2.2.5 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:2dc9b26f20e89ab7faa9b6a4a4cdf3137061a5115447d0342de268b8fbdd34ad + # Bundle: advanced-cluster-management.v2.2.6 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:5f9235a715e8091889aff5427683c6a529d222a8126a883da570fb531cb2771b + # Bundle: advanced-cluster-management.v2.2.7 : Package has distributions compatible with 4.9 + - rhacm2/acm-operator-bundle@sha256:1292fa5177f41a96698a37a35a96d61c1e9c85934a71b4fe91ed9416e78658b3 +amq-online: + # Bundle: amq-online.1.4.0 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:ed1658893b5e78ea6d684dac7f237a80eb1a5fe146996c39152c077ea59f0d61 + # Bundle: amq-online.1.4.1 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:6195b018194b457eb6bad2c53381bdfa4d84329e86d561580a63a9c2faab66d9 + # Bundle: amq-online.1.4.2 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:28157b46dcee1e5fffef9260aa9639df03cca2d8e84ccd63bf1fd966c17c10d5 + # Bundle: amq-online.1.4.4 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:f0f899b90e0ab0e9cc9818e4181beccf178543388c14570da0fd8dda0b4abaa9 + # Bundle: amq-online.1.5.0 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:b350796e748ac56aeaf71711f4eaae06d2b9f77fc1c9aeec1680c9ab096e663c + # Bundle: amq-online.1.5.1 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:609f34c93dfc53fb853c45d395fcb5c07b6d96e7ab075b036c785203415cfc11 + # Bundle: amq-online.1.5.2 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:81fabc8e6bdc05a772fbf4401331e8ccc568593dafada38fff4c8aaf0565ba06 + # Bundle: amq-online.1.5.3 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:e81aac14ba253b4a89370f8aabfebf491f34621cf8d54efd6b8b3796ca8732bb + # Bundle: amq-online.1.6.1 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:c5b5ba7265c5ac8e77ff9836746a8ac9ca5e1967270adffffdfe32d8a14968cf + # Bundle: amq-online.1.6.2 : Package has distributions compatible with 4.9 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:debf79ef45e0fdd229bdfae29ff9a40926854278b39b4aa0d364f5ae9c02c6dc +amq-streams: + # Bundle: amqstreams.v1.6.3 : Package has distributions compatible with 4.9 + - amq7/amqstreams-rhel7-operator-metadata@sha256:cc19289ff777153ca9ab3cebc45e4c98e9c083437d5e2b6407244aead6e89312 + # Bundle: amqstreams.v1.7.0 : Package has distributions compatible with 4.9 + - amq7/amqstreams-rhel7-operator-metadata@sha256:6ef3bf83ee075cff73ecc2df897d747b6d589df423dcb3ac1f493d1535e627eb + # Bundle: amqstreams.v1.7.1 : Package has distributions compatible with 4.9 + - amq7/amqstreams-rhel7-operator-metadata@sha256:ec906a4abe8e72844e0fd0ebf0abdc312c0b599e22dc3b7c80b9543cdc76b622 + # Bundle: amqstreams.v1.7.2 : Package has distributions compatible with 4.9 + - amq7/amq-streams-rhel7-operator-metadata@sha256:4ae366be201075ebd86d5bf352d5c77cfa13b8faf5eee5093bfd480ca3a392a2 + # Bundle: amqstreams.v1.7.3 : Package has distributions compatible with 4.9 + - amq7/amq-streams-rhel7-operator-metadata@sha256:e07c00d943b6951f66c2b629f1086fc4357746b09f647856d8802c4fcb4105fc +businessautomation-operator: + # Bundle: businessautomation-operator.1.2.0 : Package has distributions compatible with 4.9 + - rhpam-7/rhpam-operator-bundle@sha256:df348c6ad999c3be37ab19b3651b5a61ab1fa55f7b2ff02b1fea48bfad69ab4a + # Bundle: businessautomation-operator.1.2.1 : Package has distributions compatible with 4.9 + - rhpam-7/rhpam-operator-bundle@sha256:a9d8ced4deb7113de7c97efc226cb9d2ee912be2ce6e67418ddcee423f2a9204 + # Bundle: businessautomation-operator.1.3.0 : Package has distributions compatible with 4.9 + - rhpam-7/rhpam-operator-bundle@sha256:c119d2dc15f7d0038623fc2d682e513bba0cbbc63e0095ab769bd119faf59b7f + # Bundle: businessautomation-operator.1.4.0 : Package has distributions compatible with 4.9 + - rhpam-7/rhpam-operator-bundle@sha256:5929b5d30f2c3c215bf0c3052101b618d1e16c39f8b525a22ceb3541009c1a2c + # Bundle: businessautomation-operator.1.4.1 : Package has distributions compatible with 4.9 + - rhpam-7/rhpam-operator-bundle@sha256:3e7da2092cffe5bd2161c98b86e26ce6107248ca52c94a3a333b180f623333de + # Bundle: businessautomation-operator.7.8.0 : Package has distributions compatible with 4.9 + - rhpam-7/rhpam-operator-bundle@sha256:8bd9ac4b1ddcc03f2e6beb131bcfaf0f65ba6b90039e7a1af9dda631ae8d37f8 + # Bundle: businessautomation-operator.7.8.1 : Package has distributions compatible with 4.9 + - rhpam-7/rhpam-operator-bundle@sha256:5a5429d84cc36ce29d95fe86d9b6a9eaef0c3ed3d1925fd9b653904c411cbcb4 +codeready-workspaces: + # Bundle: crwoperator.v2.0.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:7b7558c8d9170bd27c9dcf2e62df827d477dbbea694f7040f5cd5bcd0eb598a4 + # Bundle: crwoperator.v2.1.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:af5795b85faa63523353eba59b244b94578eed6ee11d0a4f834e64009395a069 + # Bundle: crwoperator.v2.1.1 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:aba490f87a1ed4c4a47cb5cb5a82ea1bd67031db0382df400d81e13a125f4aff + # Bundle: crwoperator.v2.2.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:b9bc3d8fb71df47ef32e4f2c7d74b938887fbe2683b132d76e0215eb6cee4a9a + # Bundle: crwoperator.v2.3.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:1007e3de27d2235e319c23b08dce4ad83d3569f37fff37ad8174b29909e01f04 + # Bundle: crwoperator.v2.4.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:289f77b62c012b6ef09930acf1466749327ef9a1594eb39e077ff7116f5be73b + # Bundle: crwoperator.v2.5.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:c48e4c3f85e30ab3a209369f7fd9212d34fbe2b97de5334439b06742e9cdec2a + # Bundle: crwoperator.v2.5.1 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:181dc432a5aa228ca57a4c23218391f846284e258f72ed306f15ef884e991ee8 + # Bundle: crwoperator.v2.6.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:496aeecec52b0645cfcaa8b7ee7e71c55f823c7520ce3d2c9238d522c17a6e98 + # Bundle: crwoperator.v2.7.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:357f830568a690ea194acdf2b1c5d66b54b10bf1a0dc58d1e771454692dc2270 + # Bundle: crwoperator.v2.7.1 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:69761d7600d9602fd89f600d9670156e71f68c82802578b0db729cfa0087c89b + # Bundle: crwoperator.v2.8.0 : Package has distributions compatible with 4.9 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:080bc58804ca40380c5ed58a5bbdd5fe035fed84a07e58d1c590e06695bbb720 +elasticsearch-operator: + # Bundle: elasticsearch-operator.5.1.0-96 : Package has distributions compatible with 4.9 + - openshift-logging/elasticsearch-operator-bundle@sha256:f5cebaa2582fee8e6420b009efb9f4d894a487ebf5ab8c717408442eb0cd9bc1 + # Bundle: elasticsearch-operator.5.1.1-36 : Package has distributions compatible with 4.9 + - openshift-logging/elasticsearch-operator-bundle@sha256:fed2865db0b9766c2b524c27ab055e7a5a7ae7c0f1d5397e6f77c1d9a30a8191 +fuse-console: + # Bundle: fuse-console.v7.7.1 : Package has distributions compatible with 4.9 + - fuse7/fuse-console-operator-bundle@sha256:5e3e9d565510c1a12351f89f912e21f318ee0d7ed52fc8cca6051a6dbf3a6e6d + # Bundle: fuse-console.v7.8.2 : Package has distributions compatible with 4.9 + - fuse7/fuse-console-rhel7-operator-metadata@sha256:d207bf3721bdfb6d4d90cda5245b3c49cedef0ba2a308ed64cd00aa6fea7b152 +fuse-online: + # Bundle: fuse-online-operator.v7.7.1 : Package has distributions compatible with 4.9 + - fuse7/fuse-online-operator-bundle@sha256:93d12b2fc2a2e0263890529e227dcb9e37172139f63a95d39b1dce4f19cee39c + # Bundle: fuse-online-operator.v7.8.1 : Package has distributions compatible with 4.9 + - fuse7/fuse-online-operator-bundle@sha256:0161c67a3c6be92306f68c2a3b7d9ce3edcf57fdeb1bf2843f988cc85fefc89b +klusterlet-product: + # Bundle: klusterlet-product.v2.2.0 : Package has distributions compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:58b7976358bd5b30958602c820c5d3b0ba136e65fd7424ce92d23801dbd0976f + # Bundle: klusterlet-product.v2.2.1 : Package has distributions compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:dd102ee9ec3a32312e63309e5cd5526e8eb1eb7e7b5ee299b95302618c00a0cb + # Bundle: klusterlet-product.v2.2.2 : Package has distributions compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:d3b166fed222fbbcfe70e7a3872e8c1ac02a5ccd2cbf8585bedd29c005f6a16d + # Bundle: klusterlet-product.v2.2.3 : Package has distributions compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:33651be7274ff2cd66c9e23e7eb20d5d5ca9649aed6777bb8b0ec03dfc8b0707 + # Bundle: klusterlet-product.v2.2.5 : Package has distributions compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:e5a7688faeb49b5ba135fb37251926c9d6c877c0793a1d88a786f0cd2efb03c1 + # Bundle: klusterlet-product.v2.2.6 : Package has distributions compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:91e79536fefd2f5f6d4dde0a46441fa610c410c721bdfbc3f804da5e2e8c77ee + # Bundle: klusterlet-product.v2.2.7 : Package has distributions compatible with 4.9 + - rhacm2/klusterlet-operator-bundle@sha256:5524fe5d379b9fd4351243ccd3c0acffef58055e0782a527a90fdd711e8d5044 +kubevirt-hyperconverged: + # Bundle: kubevirt-hyperconverged-operator.v2.5.0 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:546e4497d96fd0ef834acbe7dae2c7383d2e5325b14cdaec2e631560d102720f + # Bundle: kubevirt-hyperconverged-operator.v2.5.1 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:9811228cf63e2d85529410c0fcaa36999a25dcede649dc4d7d809b98b0a1c332 + # Bundle: kubevirt-hyperconverged-operator.v2.5.2 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:90a1f9a2db2b0d1ac78586e79dd0ea3e1ca0a20300e4da95118d0bb77271b39b + # Bundle: kubevirt-hyperconverged-operator.v2.5.3 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:76402738a5a52397b164aa85850df9d5ffa446a2be4b0956d30120c1eade0848 + # Bundle: kubevirt-hyperconverged-operator.v2.5.4 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:4ed94efd3ddf14dc111a473c891469f7251cd94ccf2046c96524d17ca82c6602 + # Bundle: kubevirt-hyperconverged-operator.v2.6.0 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:1d08941f581ce9c39fde20ca1d6e17b2732b78504cd490ccaddc75e5db144a08 + # Bundle: kubevirt-hyperconverged-operator.v2.6.1 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:e99ff69879859d0bf689e052839c47d95e47da44926f86240d8f833858af77a2 + # Bundle: kubevirt-hyperconverged-operator.v2.6.2 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:6639ea7b8cf2d0f4a1df71116525c3383c9a55962403fee4bae461e1095d3718 + # Bundle: kubevirt-hyperconverged-operator.v2.6.3 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:37bbf59bce47d6d469b908003f8545b4e2c87b52b274da59daa1993a22fe5591 + # Bundle: kubevirt-hyperconverged-operator.v2.6.4 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:23dee295d93e7e917cefdbf0a6933bcf6136d0f44d723f03f0e533990ca8f14e + # Bundle: kubevirt-hyperconverged-operator.v2.6.5 : Package has distributions compatible with 4.9 + - container-native-virtualization/hco-bundle-registry@sha256:4a64b511e6d455bc5bcbd821456b1f089cec9f902d90289dd89b8a923b09d803 +openshift-pipelines-operator-rh: + # Bundle: redhat-openshift-pipelines-operator.v1.2.3 : Package has distributions compatible with 4.9 + - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:0f4b4082d0b087da0a56cf43ce17763925ac2bca743bf1ef164a38375ae3c5a4 +red-hat-camel-k: + # Bundle: red-hat-camel-k-operator.v1.3.0 : Package has distributions compatible with 4.9 + - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:7290c901a716ce5285659c69cc212f678f5e5c203fbdfef062307eb9aa8eb8ce + # Bundle: red-hat-camel-k-operator.v1.3.1 : Package has distributions compatible with 4.9 + - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:684bd0865612137b06177054af618ac1cb800ec9e9f4fa08824068e71e5deb37 + # Bundle: red-hat-camel-k-operator.v1.3.2 : Package has distributions compatible with 4.9 + - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:bd035c4c61c5dd8a7e8b9420a296733c5c410aea5bf993f973d61dcb2042e998 + # Bundle: red-hat-camel-k-operator.v1.3.3 : Package has distributions compatible with 4.9 + - integration/camel-k-rhel8-operator-bundle@sha256:d133ea9aa66646d493443dcabccebcbdb1e7a70dd84939ed772e912f4b3090b5 +service-registry-operator: + # Bundle: service-registry-operator.v1.0.0 : Package has distributions compatible with 4.9 + - integration/service-registry-rhel8-operator-metadata@sha256:49b50e2b4cfe341a30f6d4f8e8a6d411da7926335bd22a2397ba37acaf1ce756 + # Bundle: service-registry-operator.v1.0.1 : Package has distributions compatible with 4.9 + - integration/service-registry-rhel8-operator-metadata@sha256:39b0ba26ea73c6ba54c8ce0c86c2563a3284e5690f091a0536c9722e4f11d62a + # Bundle: service-registry-operator.v1.0.2 : Package has distributions compatible with 4.9 + - integration/service-registry-rhel8-operator-metadata@sha256:31c7dd275bc4c2b0d9ead9c2002963485791b279a90174191826236ac624a44b + # Bundle: service-registry-operator.v1.1.0 : Package has distributions compatible with 4.9 + - integration/service-registry-rhel8-operator-metadata@sha256:720fd4d865f4e4a404d9a7846d5608b87d540f87a49cb5161ce383be0233d4b4 + # Bundle: service-registry-operator.v1.1.1 : Package has distributions compatible with 4.9 + - integration/service-registry-rhel8-operator-metadata@sha256:a4f5b333f7009001bc27849f752aaf71daf03a534e65b59b88463e2b8ddce8f4 + # Bundle: service-registry-operator.v1.1.2 : Package has distributions compatible with 4.9 + - integration/service-registry-rhel8-operator-metadata@sha256:6269cb4e07a545c4b06557e7a3f3e6969c51cbc4fb13efcd593b4c045207bd06 + # Bundle: service-registry-operator.v1.1.3 : Package has distributions compatible with 4.9 + - integration/service-registry-rhel8-operator-metadata@sha256:a21153027b7a1146752cabb02f53bd2e7f5b72af3af38bd822e214e83e046f31 +submariner: + # Bundle: submariner.v0.8.1 : Package has distributions compatible with 4.9 + - rhacm2-tech-preview/submariner-operator-bundle@sha256:0de0f0ee7078e566f0ce21dcfb4eb9f0177ddc790a8a575b967635259df51da5 +web-terminal: + # Bundle: web-terminal.v1.0.1 : Package has distributions compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:72654f9d638fc59231c4bfa75781aa2cf7ab911a3c42d6ba51232ee9894d54d5 + # Bundle: web-terminal.v1.1.0 : Package has distributions compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:320875845790b0da60dbfbe08fbd4112a80d47cd79510f16d2a1080c66420fd5 + # Bundle: web-terminal.v1.2.0 : Package has distributions compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:e08d38c7b0e585df1185d97890a8723827c47c6749e7d7cec0afa8c9359c3ff4 + # Bundle: web-terminal.v1.2.1 : Package has distributions compatible with 4.9 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:cbf74af4bf114e9207613a850a62116e99eb3148d3e27e3f7b540f39d6259234 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl b/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl index 05bb1e76..7755ee3c 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl @@ -1,4 +1,11 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: {{ .APIDashReport.ImageName }} +# - Image ID: {{ .APIDashReport.ImageID }} +# - Image Created at: {{ .APIDashReport.ImageBuild }} +# - From JSON report generated at: {{ .APIDashReport.GeneratedAt }} +############################################## {{ with .Deprecated }}{{ range . }}{{ .PackageName }}:{{ with .Bundles }}{{ range . }} - # Bundle: {{ .Details }} : Note that this package has 1..N bundles compatible with 4.9 + # Bundle: {{ .Details }} : Package has distributions compatible with 4.9 - {{ .Paths }}{{ end }}{{ end }} {{ end }}{{ end }} \ No newline at end of file From 3cd5844e690e8c12962c15c2d193948aa57757d0 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Sun, 22 Aug 2021 14:27:05 +0100 Subject: [PATCH 2/3] improvements for the deprecate all helper --- Makefile | 6 + .../deprecate-all/deprecated_index.go | 47 +- ...rtified_operator_index_v4.9_2021-08-22.yml | 930 ++++++++++++++++++ ...dhat_marketplace_index_v4.9_2021-08-22.yml | 580 +++++++++++ ..._redhat_operator_index_v4.8_2021-08-22.yml | 817 +++++++++++++++ .../deprecate-all/template.go.tmpl | 7 + 6 files changed, 2381 insertions(+), 6 deletions(-) create mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml create mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml create mode 100644 hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml diff --git a/Makefile b/Makefile index 906f56d0..130e84c6 100644 --- a/Makefile +++ b/Makefile @@ -105,6 +105,12 @@ generate-deprecate-green: install ## ensure that you have update the the date of 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-08-22.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-21.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-08-22.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-08-22.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.8_2021-08-21.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-08-22.json 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 15461cf1..83607c58 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go +++ b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_index.go @@ -17,12 +17,18 @@ // 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 . +// Example of usage: (see that we leave makefile target to help you out here) +// nolint: lll +// 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.8_2021-08-10.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.8_2021-08-06.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.8_2021-08-15.json package main import ( "encoding/json" + "flag" "log" "os" "path/filepath" @@ -30,6 +36,8 @@ import ( "strings" "text/template" + "github.com/operator-framework/audit/pkg/reports/custom" + "github.com/operator-framework/audit/pkg" "github.com/operator-framework/audit/pkg/reports/bundles" ) @@ -46,6 +54,7 @@ type Deprecated struct { type File struct { Deprecated []Deprecated + APIDashReport *custom.APIDashReport } //nolint: lll @@ -56,10 +65,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-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.Parse() - byteValue, err := pkg.ReadFile(filepath.Join(currentPath, path)) + byteValue, err := pkg.ReadFile(filepath.Join(currentPath, jsonFile)) if err != nil { log.Fatal(err) } @@ -105,6 +121,11 @@ func main() { mapPackagesWithBundles[""] = all } + apiDashReport, err := getAPIDashForImage(jsonFile) + if err != nil { + log.Fatal(err) + } + // filter by all pkgs which has only deprecated APIs hasDeprecated := make(map[string][]bundles.Column) for key, bundles := range mapPackagesWithBundles { @@ -140,7 +161,8 @@ func main() { return allDeprecated[i].PackageName < allDeprecated[j].PackageName }) - f, err := os.Create(filepath.Join(currentPath, "hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated.yml")) + fp := filepath.Join(currentPath, outputPath, pkg.GetReportName(apiDashReport.ImageName, "deprecated", "yml")) + f, err := os.Create(fp) if err != nil { log.Fatal(err) } @@ -148,9 +170,22 @@ func main() { defer f.Close() t := template.Must(template.ParseFiles(filepath.Join(currentPath, "hack/scripts/deprecated-bundles-repo/deprecate-all/template.go.tmpl"))) - err = t.Execute(f, File{allDeprecated}) + err = t.Execute(f, File{Deprecated: allDeprecated, APIDashReport: apiDashReport}) 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/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml new file mode 100644 index 00000000..dc43dc68 --- /dev/null +++ b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml @@ -0,0 +1,930 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: registry.redhat.io/redhat/certified-operator-index:v4.9 +# - Image ID: sha256:a8b8344cc4640777e25f9818a75bf49a84433f40e1ac6a3a58f71df6de89f7e5 +# - Image Created at: 2021-08-19T16:49:52.05975663Z +# - From JSON report generated at: 2021-08-22 +############################################## +aci-containers-operator: + # Bundle: aci-containers-operator.v1.0.0 + - registry.connect.redhat.com/noiro/aci-operator-bundle@sha256:281e5b5458b4f96e23d828da2f3320785103183674127549cd9fefdfc04ba304 +akka-cluster-operator-certified: + # Bundle: akka-cluster-operator-certified.v1.0.0 + - registry.connect.redhat.com/lightbend/akka-cluster-operator-certified-bundle@sha256:e7dc6a53e75a9416f0619998cb1ab12aef98f2e4cbd8f10bc4f60bfefa553e82 +alcide-kaudit-operator: + # Bundle: alcide-kaudit-operator.v0.0.3 + - registry.connect.redhat.com/alcide/kaudit-operator-bundle@sha256:8b95b3769017ae44a5ba4bfaac8bccc07d11f2afcff0ce03af46e71cb440f9f2 +anaconda-team-edition: + # Bundle: anaconda-team-edition.v6.1.3 + - registry.connect.redhat.com/anaconda/anaconda-team-edition-bundle@sha256:43327356ec622d12126d5d13ae9c968dd7cc9e8555eadbb8e212d0b37cfb25a3 +anchore-engine: + # Bundle: anchore-engine.v1.0.0 + - registry.connect.redhat.com/anchore/engine-operator-bundle@sha256:aac8eefb589ceafced25b345b5f4d5ae6dbb7c2952ffb1985227ebee9ace1714 +appdynamics-operator: + # Bundle: appdynamics-operator.v0.4.3 + - registry.connect.redhat.com/appdynamics/cluster-agent-operator-bundle@sha256:301a02f4760dd17cd24004b6bbcdf7aa3588c517da1bac08c6eaea081f6df6b5 + # Bundle: appdynamics-operator.v0.6.3 + - registry.connect.redhat.com/appdynamics/cluster-agent-operator-bundle@sha256:cebac3376fe72321aefd39f816331f37242f602e1133ec2f6d825cc128a8d066 +appranix-cps: + # Bundle: appranix-operator.v2.5.0 + - registry.connect.redhat.com/appranix/apx-operator-bundle@sha256:126965743834b9d3fa15f354f41fe47618cea51c6f2ab88d3401b62b0362b1b6 + # Bundle: appranix.v2.3.0 + - registry.connect.redhat.com/appranix/apx-operator-bundle@sha256:0722fe603686fa004bc0047f4535435ab9005ef4e9fd96820d330c1c17908259 +appsody-operator-certified: + # Bundle: appsody-operator.v0.6.1 + - registry.connect.redhat.com/ibm/appsody-operator-certified-bundle@sha256:6eae693fe4d14a6f72ff49e151aa5fa9bd0ebd75fab08effff7c55aa3c1ad55c +aqua-operator-certified: + # Bundle: aqua-operator.v1.0.4 + - registry.connect.redhat.com/aquasec/aquasec-operator-bundle@sha256:7efc06dd8e946188593079d6100187034f39298bce2c13ab50cb1e0747a9e608 + # Bundle: aqua-operator.v5.0.0 + - registry.connect.redhat.com/aquasec/aquasec-operator-bundle@sha256:e3b33c305cd178151b2d61fe3fd7e17285179087e65fc7d9ff710b37fcecc256 + # Bundle: aqua-operator.v5.3.0 + - registry.connect.redhat.com/aquasec/aquasec-operator-bundle@sha256:c367a6e2000ff5eb18363b3008930e86623a1ef74d0236cdb9423b63468fdfc2 +armory-operator: + # Bundle: armory-operator.v1.2.0-ubi + - registry.connect.redhat.com/armory/armory-operator-bundle@sha256:f652675af906bff73b5658d588070328aa9c3fd1f460c35c72e12de504a3050e +as400rpc-operator: + # Bundle: as400rpc-operator.v0.0.5 + - registry.connect.redhat.com/openlegacy-corp/as400-nocode@sha256:e1b06b21720e5ebaa68fb00eb8fe7e44d1574f73164528ce8d6c560ccf9beda1 +atomicorp-helm-operator-certified: + # Bundle: atomicorp-helm-operator.v0.0.1 + - registry.connect.redhat.com/atomicorp/atomicorp-aeo-hub-bundle@sha256:5eda67f2842f0ceb90979716597e1c3d94eddcad67e1014bbe56f7e8474d8d71 +aws-event-sources-operator-certified: + # Bundle: aws-sources-operator.v0.2.0 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:efaeab6112c4ca88ba5427936eda7e3b316e22060fa6ae8b920410cd9a3a6c4d + # Bundle: aws-sources-operator.v0.2.1 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:b41abde7767e00d6ad016739df7e6c07fa9ac21e096c9fd6b42bf1aa08abb162 + # Bundle: aws-sources-operator.v0.2.2 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:b9d8f05aa217db6847aed2b06cff677777bbdd5606191b832ff53000dea489cd + # Bundle: aws-sources-operator.v0.3.0 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:76d525c7a995ea48ba06e9f1aa332603869aff8be72f2446b53bad92753fcff4 +bacula-operator2: + # Bundle: bacula-operator.v0.0.1 + - registry.connect.redhat.com/bacula-enterprise/bacula-enterprise-openshift-plugin-operator@sha256:fc9f5368c10878f1e7fc0e4968c2186d079bb233cb769b7375202bd36ccd5610 +behavior-analytics-services-operator-certified: + # Bundle: behavior-analytics-services-operator.v1.0.0 + - registry.connect.redhat.com/ibm-edge/behavior-analytics-services-operator-bundle@sha256:79520ef98e9cd360fb2a01519631e3d3c488ada6d3cb8c68334c4f517750c0ac + # Bundle: behavior-analytics-services-operator.v1.1.0 + - registry.connect.redhat.com/ibm-edge/behavior-analytics-services-operator-bundle@sha256:c73665a97beb2f5def36868ecd42cf870d7a92a0f2f728099ec05dd3abf584d8 +blackduck-connector-operator: + # Bundle: blackduck-connector-operator.v1.0.0 + - registry.connect.redhat.com/blackducksoftware/blackduck-connector-operator-bundle@sha256:17b255728650f2fdf7e7f289a9b8cfdb96bc2d283709637c0b540690512dfe70 +can-operator: + # Bundle: can-operator.v0.0.6 + - registry.connect.redhat.com/can-avanseus/can@sha256:d957c2bb195782cd0c5a34effa2e4a01372b35d559e3877d938e8acb31f5ff85 +cert-manager-operator: + # Bundle: cert-manager-operator.v0.15.2 + - registry.connect.redhat.com/jetstack/cert-manager-operator-bundle@sha256:e0898bd5df18e2dccbe2d648cc4533e064e584166675e02260cb856817ece844 + # Bundle: cert-manager-operator.v0.15.3 + - registry.connect.redhat.com/jetstack/cert-manager-operator-bundle@sha256:a7cb0f2a1b263c432727d1ffe7ec8d0be470fcca26e1b568eb9d0dc64e96373e +cic-operator: + # Bundle: cic-operator.v1.7.6 + - registry.connect.redhat.com/citrix/citrix-k8s-ingress-bundle@sha256:3b9f5cddc5c4c048f1be9339b50ce88bd042ecacc3259811e61e9fb0e45cafbc +cic-operator-with-crds: + # Bundle: citrix-api-gateway-operator.v0.0.1 + - registry.connect.redhat.com/citrix/citrix-api-gateway-bundle@sha256:56abc00d5ad2221471924f4bec169ac65d92a61f1ac87dff4d6dfddd10496fd8 +cilium: + # Bundle: cilium.v1.10.2-x7fc9ed7 + - registry.connect.redhat.com/isovalent/cilium-olm-metadata@sha256:d514f9a3715a45afc0da10147ad1fb263ca5c089fc2e769f1d8f2eda7a245259 +citrix-adc-istio-ingress-gateway-operator: + # Bundle: citrix-adc-istio-ingress-gateway-operator.v0.9.5 + - registry.connect.redhat.com/citrix/istioingressgateway-bundle@sha256:16a717fc3e153fcfb42d9a47da732803f21341cbec2ae3bd1950f33b6043619e +citrix-cpx-istio-sidecar-injector-operator: + # Bundle: citrix-cpx-istio-sidecar-injector-operator.v0.9.5 + - registry.connect.redhat.com/citrix/istiosidecarcitrix-bundle@sha256:98f70609bb8a1519876b9c103a200abc88b74dfc0ef9c8a0c0aa464c1e8c463e +citrix-cpx-with-ingress-controller-operator: + # Bundle: citrix-cpx-with-ingress-controller-operator.v1.13.20 + - registry.connect.redhat.com/citrix/citrix-k8s-cpx-ingress-bundle@sha256:58f15e99628043753fefa5c8df190cc90e82a6bd3b00aed3c52f0fbf69d81039 +citrix-ingress-controller-operator: + # Bundle: citrix-ingress-controller-operator.v1.13.20 + - registry.connect.redhat.com/citrix/citrix-k8s-ingress-bundle@sha256:1cf84c905b444c613f67f5b2a7b80015226b6a99c5723503e87c795a719e6347 +cloud-native-postgresql: + # Bundle: cloud-native-postgresql.v1.0.0 + - registry.connect.redhat.com/enterprisedb/cloud-native-postgresql@sha256:4ac5d2ae655403f7cb1cede3d4bab2adf1d996b839bc289b76c5acd3299f3552 + # Bundle: cloud-native-postgresql.v1.1.0 + - registry.connect.redhat.com/enterprisedb/cloud-native-postgresql@sha256:01f8ef65ccb4fd5bfe699fcdc62de4cffed5f3d35dbd0eba073b353ef1635fe6 +cnvrg-operator-marketplace: + # Bundle: cnvrg-operator.v0.352.0 + - registry.connect.redhat.com/cnvrg-core/cnvrgio-operator-bundle@sha256:56f6c78611a26e4ed42e8228067ae4851799224f80d965bb034d7fe36f32b65f +coralogix-operator-certified: + # Bundle: coralogix-operator.v1.0.0 + - registry.connect.redhat.com/coralogix/coralogix-operator-bundle@sha256:ae2b55af16cbd21e45ab4bd4483c106c03d77ffce2be61f92f59b36a98c82f41 +cortex-certifai-operator: + # Bundle: cortex-certifai-operator.v1.3.10 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:7beaacb9261b0ab823443b4f7c3f3c3bff8250caee7f1ca68887e2457e8f963b + # Bundle: cortex-certifai-operator.v1.3.2 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:2ff2df4e61105cb9cc1905f504ed0e74907fcd43f85d200f729e464e824e928f + # Bundle: cortex-certifai-operator.v1.3.3 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:26199886640c352804df4a634f5ea3e45c3c4d4e41f241e9ef36cd4b3536be57 + # Bundle: cortex-certifai-operator.v1.3.4 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:c85d3cac53bab7690ee87f6a8fc15e3471e6ceff7feecf9749fad89a1e6a12e3 + # Bundle: cortex-certifai-operator.v1.3.9 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:d69cb1d66cba931eb04310b8917a41cf427ba70ad5f422478d812b303391a8c0 +cortex-fabric-operator: + # Bundle: cortex-fabric-operator.v0.0.1 + - registry.connect.redhat.com/c12e/cortex-fabric-operator-bundle@sha256:de8cf8423ab8ea22f2090947fb51c3091407fcca623d5a83137b266c43e00f6d + # Bundle: cortex-fabric-operator.v1.0.0 + - registry.connect.redhat.com/c12e/cortex-fabric-operator-bundle@sha256:90a89c97f73301c7f82424ca069677217faa61095b41401bbd6024b72dde108c +cortex-healthcare-hub-operator: + # Bundle: cortex-healthcare-hub-operator.v0.0.24 + - registry.connect.redhat.com/c12e/cortex-healthcare-hub-operator-bundle@sha256:27cb3851d88ee293c260e452670cad361800cc50b1c9ff98cd3617113b13d117 + # Bundle: cortex-healthcare-hub-operator.v0.0.25 + - registry.connect.redhat.com/c12e/cortex-healthcare-hub-operator-bundle@sha256:40fa05e3729d61d05527d36e307b3d2b2299defae8fac6a08f11d676c0b5dc2f +cortex-hub-operator: + # Bundle: cortex-hub-operator.v0.0.24 + - registry.connect.redhat.com/c12e/cortex-hub-operator-bundle@sha256:53ed857edafa5f90ad45ee3c67be454e8b42cc8a12fabdfcb87b93fcbb4bd1fc + # Bundle: cortex-hub-operator.v0.0.25 + - registry.connect.redhat.com/c12e/cortex-hub-operator-bundle@sha256:8330ca92f9b71fc4380a01206185838b3a706d00d156726567436baac65291a6 +couchbase-enterprise-certified: + # Bundle: couchbase-operator.v1.2.1 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:cf4a0448fa22963d711bb2d3af8b56e3c356073b76233f33421121403893a859 + # Bundle: couchbase-operator.v1.2.2 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:a2c9323d78e4a2e83810eb9df6e2f364356cd5432cee9bbd98c94784fbc27468 + # Bundle: couchbase-operator.v2.0.0 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:9462f3735254b047f4b80b539797b83c31faa0ad923fe4a351dba693e51cadef + # Bundle: couchbase-operator.v2.0.1 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:1ec6fc8724eed1b9260eb3765a6280c0f1781bf6d51e998903cb65f1e20b5d73 + # Bundle: couchbase-operator.v2.0.2 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:10ec7cafa6c4be66ea634b88e10a2b136fcd3322cad00309a7ccef455679c6ba + # Bundle: couchbase-operator.v2.1.0 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:78656ed0df41696e67429609e3262ec31f5ca9f5ca946300e6a4a6503c1bbd18 + # Bundle: couchbase-operator.v2.2.0-1 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:69c9d29a8a5ba4eac037051a256a458d5772fca8b813c764ddbe02f80d89b76f +couchdb-operator-certified: + # Bundle: couchdb-operator.v1.0.14 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:bac2f2b7378030d82b3385fc3f441430a179a611aadac8a65d27e304114b5e16 + # Bundle: couchdb-operator.v1.1.0 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:93ac2ae304e90e37554a97fe7705dd3b9cdb9ab89c29961a0094601908e2555d + # Bundle: couchdb-operator.v1.2.1 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:351a5012eaf8a3649bf81f1c3a737cb5ae4457e9df8078a7229322839db567e4 + # Bundle: couchdb-operator.v1.3.0 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:a065ec9f129f79e21881ee4644c1e34c3f13b90bdc76d72cb76bf8216d45ee44 + # Bundle: couchdb-operator.v1.3.1 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:730800366a7127b70c07c8298d9ecbdbf32c248ad09198388fe1a0f03b3ee4cf + # Bundle: couchdb-operator.v1.4.0 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:ac3d5a0fc91bf7a6b2b06f6a19e42c219bb304681dc3f50c3aaa3d9a206ab1c8 + # Bundle: couchdb-operator.v1.4.1 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:14aa8a718a050baa0fef250d3385d18f408c572f38ee53528ce4293f4db30757 + # Bundle: couchdb-operator.v1.4.2 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:0bf222bc4a737f1c9c20a8d6129177cf3dd2bd7d52bb08834518a6e81ecdf0af + # Bundle: couchdb-operator.v1.4.3 + - registry.connect.redhat.com/ibm/couchdb-operator-certified-bundle@sha256:b660525be732487acdd72219f301c9d572dd29d5d9b1e1e771da90b1d3652a21 +cpx-cic-operator: + # Bundle: cpx-cic-operator.v130.36.29 + - registry.connect.redhat.com/citrix/citrix-k8s-cpx-ingress-bundle@sha256:88485817f37b79ef5d8cf84552a956d7989504c2f031f21ca6f487387074ed27 + # Bundle: cpx-cic-operator.v130.47.103 + - registry.connect.redhat.com/citrix/citrix-k8s-cpx-ingress-bundle@sha256:5c437ab48671036215dd807ad5c92e07df59b90577a0e48e68d6d193bcd23fc6 +crunchy-postgres-operator: + # Bundle: postgresoperator.v4.5.0 + - registry.connect.redhat.com/crunchydata/postgres-operator-bundle@sha256:18963931a1403bec1dd5294cc3df725079a3f0c2b11a0958439a5235b4f5970c + # Bundle: postgresoperator.v4.6.2 + - registry.connect.redhat.com/crunchydata/postgres-operator-bundle@sha256:0f00850ef583bd1c889da6219cb40759809df7d0dd552658c36517c45a8fef39 +cyberarmor-operator-certified: + # Bundle: cyberarmor-operator.0.0.1 + - registry.connect.redhat.com/cyber-armor/ca-operator-bundle@sha256:c9d7743181b4811203eaf7f977949ceaa369cfb2407d878bf8677f3d0536419f +data-explorer-operator-certified: + # Bundle: data-explorer-operator.v0.0.1 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:b6efb516d646752d2309c3791a1d094d6430f9230ebfe9694442ff2eea7d5aa6 + # Bundle: data-explorer-operator.v0.0.10 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:2f9440148f9741bc7ebf6d59d02b42ab4e8969ead1eac58251578e2ef1524400 + # Bundle: data-explorer-operator.v0.0.2 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:61317c2c85660fe4291b3945c928df375890ad00b3168b72bd71b787ef4077dc + # Bundle: data-explorer-operator.v0.0.3 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:cdd24dd021bb730168eb11b796872975d84fdb471456b745d03a30392dc38d2d + # Bundle: data-explorer-operator.v0.0.4 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:403219f0791689e2f3484f33be08e243dc2bd9e22ca962c430ddd7eee2caf0ee + # Bundle: data-explorer-operator.v0.0.5 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:af28ac6d3c7b2f0267b54554b777a6475c6e61fb32dc09d0e5018a0709d363c7 + # Bundle: data-explorer-operator.v0.0.6 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:efff12d1b48af0f69de56abd18edc717c6a647f52c7e34b41bc38191cffcc363 + # Bundle: data-explorer-operator.v0.0.7 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:252eb0f3b3cf70b199f209a8ec03ff0d1c99c4cc0a60af18687238944b6e5140 + # Bundle: data-explorer-operator.v0.0.8 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:bf21e966e38761ab59e74271d1ca154f75e2a1c85d6f4eab418fb6d5261c9d1c + # Bundle: data-explorer-operator.v0.0.9 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:20211956d089d8958f08e103304eae586144cddddb5cf17f71fc749cbe6a4da7 + # Bundle: data-explorer-operator.v0.1.1 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:16f043d2f31f879b1aa6cf2385ca873b45850f238c32370b661f2c8ebc7668be + # Bundle: data-explorer-operator.v0.1.2 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:29de0c8f38adb379957ec2564eea036e4f839980377e52c49f8b462e3033c7aa + # Bundle: data-explorer-operator.v0.1.3 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:ced5bc02c7bec13ba5d10b5fcfc559af8499eac9bad9688401d1caf8beb6d3b2 + # Bundle: data-explorer-operator.v0.1.4 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:2098ab48bafee24a19a6bd6592a2b177b5d863e9c1d2519bf095325dcd4476e1 + # Bundle: data-explorer-operator.v0.1.5 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:9afce5e1bbde0725580c579ade487aeb2373f647ab7f40cc4d0bd061f3f887d6 + # Bundle: data-explorer-operator.v0.1.6 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:e66be49a23d2b01b81e76c49e7069ac549cb6d44293b94f8b5a2bf76a54054bd + # Bundle: data-explorer-operator.v0.1.7 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:10307151bc8be054b677438353bbe702ce57cc6ebe6954ebd8e00eca0356c852 + # Bundle: data-explorer-operator.v0.1.8 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:5fac1e0a1fc410dc78572fc250bc3d15c121c2ef7aba8496eaf87ab20b4de91a +datadog-operator-certified: + # Bundle: datadog-operator.v0.3.0 + - registry.connect.redhat.com/datadog/operator-bundle@sha256:c4fc64e5ed02c594b876983564ee96123ba255c2376caf9d9f5584ed0a273ee1 + # Bundle: datadog-operator.v0.4.0 + - registry.connect.redhat.com/datadog/operator-bundle@sha256:f0b28286ec3daa7f978c6490f3d61b3fd3db84caf2037eb9f8bd4b46ca1b56cd +db2-zos-db-operator: + # Bundle: db2-zos-db-operator.v0.0.2 + - registry.connect.redhat.com/openlegacy-corp/db2-zos-db-nocode@sha256:f801fcb8a5c445ffce1dadcdca2f557f58ab40538721646320cff9401523561a +dell-csi-operator-certified: + # Bundle: dell-csi-operator-certified.v1.2.0 + - registry.connect.redhat.com/dell-emc/dell-csiop-bundle-110@sha256:36a685117aa33ae94e6e768a10e24f6a65b2cc6f14cdd778948108e613ae5abc + # Bundle: dell-csi-operator.v1.1.0 + - registry.connect.redhat.com/dell-emc/dell-csiop-bundle-110@sha256:0fe8dd27ddc36df73517195b9d4983a4c54e3036683c83952a9514f335ac557d +densify-operator: + # Bundle: densify-operator.v0.0.2 + - registry.connect.redhat.com/densify/densify-operator-bundle@sha256:b369e48b59bcbd9710be712f601dfe00b09e2be24047f32c91b025a9336c88b0 + # Bundle: densify-operator.v1.0.0 + - registry.connect.redhat.com/densify/densify-operator-bundle@sha256:6c37c211385ffad721637ea1a6bcda46e4aa9aa46efdbeec6f75e9b9bd7ff75d + # Bundle: densify-operator.v1.0.1 + - registry.connect.redhat.com/densify/densify-operator-bundle@sha256:b3f96cea8295b88e41a54f80161ac32e79b28f5b0218f93f1f042ff1b9af847f +eddi-operator-certified: + # Bundle: eddi-operator.v1.0.2 + - registry.connect.redhat.com/labsai/eddi-operator-bundle@sha256:c848665b6cddace5bb008c642a90df95ef75febe83fd01d3aa66c6d3eb78ed90 +elasticsearch-eck-operator-certified: + # Bundle: elasticsearch-eck-operator-certified.v1.3.0 + - registry.connect.redhat.com/elastic/eck@sha256:9587db325f9cc13519f16e9fd675e8d74c80603ea6173ed0c25f74e72a2744a2 + # Bundle: elasticsearch-eck-operator-certified.v1.3.1 + - registry.connect.redhat.com/elastic/eck@sha256:c5cfca9f272137c630239676960afa07b64edab4ac2a7be5dc6cf27e17424bfd + # Bundle: elasticsearch-eck-operator-certified.v1.4.0 + - registry.connect.redhat.com/elastic/eck@sha256:bb54021d424a684456facbdf599326a6a4fe3c4cde60ba478355177e215ff099 + # Bundle: elasticsearch-eck-operator-certified.v1.5.0 + - registry.connect.redhat.com/elastic/eck@sha256:6251f79b1f7b589ac83764454a153b885771a481bd55d7d1c17bce6732209d4d +f5-bigip-ctlr-operator: + # Bundle: f5-bigip-ctlr-operator.v1.8.0 + - registry.connect.redhat.com/f5networks/k8s-bigip-ctlr-operator-bundle@sha256:5a11aee22850cd5c1bf3c627ad4cb58af3f9d3115dbd73a1074814b3eea2a5dc +falco-certified: + # Bundle: falco-operator.v1.2.0 + - registry.connect.redhat.com/sysdig/falco-operator-bundle@sha256:ed6d3b83f8ef2c7b2f97ab24a442f211d225f93d516ff6acba55d0566ec3cd2e +federatorai-certified: + # Bundle: federatorai.v4.6.1-2 + - registry.connect.redhat.com/prophetstor/federatorai-operator-bundle@sha256:b61dfd3b015cba83daf5dadc1e502a315eac57e1e9538c818099248138f70abe +fep-ansible-operator: + # Bundle: fujitsu-enterprise-operator.v2.0.0 + - registry.connect.redhat.com/fujitsu-postgres/fujitsu-enterprise-postgres-bundle@sha256:adb3e5776fe4376c9a6c0555f3306482f4cecd3b6fa6cf708252309d877477d3 + # Bundle: fujitsu-enterprise-operator.v2.1.0 + - registry.connect.redhat.com/fujitsu-postgres/fujitsu-enterprise-postgres-bundle@sha256:9a4e357640cff1fe43415b2d587dd3718016734950f735e9454650392be0626d + # Bundle: fujitsu-enterprise-operator.v2.2.0 + - registry.connect.redhat.com/fujitsu-postgres/fujitsu-enterprise-postgres-bundle@sha256:1c5f3b645ceb05266cf8cc8e8a6f88e8400a855f23277f9b79e8b9f2ba278094 +fp-predict-plus-operator-certified: + # Bundle: fp-predict-plus-operator.v0.0.4 + - registry.connect.redhat.com/findability-sciences/fp-predict-plus-operator-bundle@sha256:e4bb2a292033e4eb6de2eee46395465a20f8b067b59fde597eed009be5e93161 +gitlab-runner-operator: + # Bundle: gitlab-runner-operator.v1.0.0 + - registry.connect.redhat.com/gitlab/gitlab-runner-operator-bundle@sha256:1d5c3626119ea8fd92d291ce199515e6cde463d5fbeba831b226966b72e931f0 + # Bundle: gitlab-runner-operator.v1.1.0 + - registry.connect.redhat.com/gitlab/gitlab-runner-operator-bundle@sha256:9a88454a1cb9fe76e6a3a788c0d7a9015af3cc1fd42caf63ad46602959fba2b8 + # Bundle: gitlab-runner-operator.v1.2.0 + - registry.connect.redhat.com/gitlab/gitlab-runner-operator-bundle@sha256:abe1504fedbf38bc1cb45e5393216bae9cca95066ca84fa730c7e8b129930074 +gpu-operator-certified: + # Bundle: gpu-operator-certified.v1.3.0 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:3a70920f1aca227ebe5b1db44125c4370bad00379a941f0bac301d61ee112ba2 + # Bundle: gpu-operator-certified.v1.3.1 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:243b8f0bbc2bda6bb13395f165fe5ec01999331e9b61878686d2073df3bf906c + # Bundle: gpu-operator-certified.v1.4.0 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:0e69c29d33d5ab9d6676c6a6d5b89e57caddf44090bbabc74a12fea3005704bd + # Bundle: gpu-operator-certified.v1.5.1 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:5ec5a5cbaf6e667e761d3a6273c44f5facf29dabe2ffe502f08fe345536c8dc8 + # Bundle: gpu-operator-certified.v1.5.2 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:3a944050b7ba261b5451e639165eb230f1afbc3be7624a7d6039f138b09cb19f + # Bundle: gpu-operator-certified.v1.6.0 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:85938bd7029d5816889869378c47e9843f12431ba93e27f19c6e777f9ee5a11d + # Bundle: gpu-operator-certified.v1.7.1 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:380392c15740edd8853ea65b1e19f3b9bd3afea04612f204c244bf5a23b328ce + # Bundle: gpu-operator-certified.v1.8.0 + - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:949e1d767985e99cde04a070667ba0b81e8422e71555c0c233c528fd746667d3 +growth-stack-operator-certified: + # Bundle: growth-stack-operator.v1.0.0 + - registry.connect.redhat.com/ibm-edge/growth-stack-operator-bundle@sha256:04327840791db3cd6e2ffa48084a515dc763f2119ca678f9d63cf7a11b2f4c82 + # Bundle: growth-stack-operator.v2.0.1 + - registry.connect.redhat.com/ibm-edge/growth-stack-operator-bundle@sha256:328b7978ab51e7019e118ec1777278e5d5c2f74040a292f650f7bb8b3f1917cf +h2o-operator: + # Bundle: h2o-operator.v0.1.0 + - registry.connect.redhat.com/h2oai/h2o-operator-bundle@sha256:a31c191ab992b727ade63d560c284fe953ad8363a5387a88e3989c29b21e4b61 +hazelcast-enterprise-certified: + # Bundle: hazelcast-enterprise-operator.v0.3.1 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:e71b04d8d60de221e857cbef51988caf6f11e938f65b10254eaaf96696ff306d + # Bundle: hazelcast-enterprise-operator.v0.3.2 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:8f3a36528fa5bb601e62d071e93c4026c734d840e43da3645bdb2cc1a5ec75af + # Bundle: hazelcast-enterprise-operator.v0.3.3 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:8fa5c8e02b13ca0fdb6a36aec61ff5cae03ecb8a97a6706896b894767adb7cae + # Bundle: hazelcast-enterprise-operator.v0.3.4-1 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:aa8d5f74a9bb2318aabfb9cb71ed01f2c88ae892b55169872716d05e265b484c + # Bundle: hazelcast-enterprise-operator.v0.3.5 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:cc9f6bb951d46d2ff95c8ae8780d732752a683a33c51795684ade244f6d5b84b + # Bundle: hazelcast-enterprise-operator.v0.3.6 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:094e6fe764454f6623284e79403d98678abc19b1f4672dc079bc3a563213b1ac + # Bundle: hazelcast-enterprise-operator.v0.3.7 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:4090c5206fa7c0602ff0ce4cca18c632b97d294a70ad8b0d2b68ef1081927ea6 +hazelcast-jet-enterprise-operator: + # Bundle: hazelcast-jet-enterprise-operator.v0.1.1 + - registry.connect.redhat.com/hazelcast/hazelcast-jet-enterprise-operator-bundle@sha256:ec7ad7ef1acfb3f2c38aca831742e8008ae41d5ca1fbea38bbd3714eaafaca86 + # Bundle: hazelcast-jet-enterprise-operator.v0.2.0 + - registry.connect.redhat.com/hazelcast/hazelcast-jet-enterprise-operator-bundle@sha256:5879624f21f1d7b263d280bad0f2d209c5fbcac0f624c42b102036eb9f5da33c +hedvig-operator: + # Bundle: hedvig-operator.v1.0.1 + - registry.connect.redhat.com/commvault-hedvig/hedvig-operator@sha256:a68668ac612e5240c61c22f05f7c5c53054058d2caa624c6a49576e61de5d193 +here-service-operator-certified: + # Bundle: hls-service-operator.v0.0.1 + - registry.connect.redhat.com/heremaps/here-service-operator-bundle@sha256:5a48a5194566573c5010a2e3ebc79f834652a777253856b2bc1e2e6c5c0f26e3 +hspc-operator: + # Bundle: hspc-operator.v1.5.0 + - registry.connect.redhat.com/hitachi/hspc-operator-bundle@sha256:ea73bbd83541c454567acf9dbfc348fb7d72d97eaeeb584f2a452cf379621189 +ibm-block-csi-operator: + # Bundle: ibm-block-csi-operator.v1.3.0 + - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:aa2f7b4b4b2d489cd9671b0b45d696ca2fcb8f76ad2b2551a06475917b9fdc99 + # Bundle: ibm-block-csi-operator.v1.4.0 + - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:d78c62ef65db4858374cb7bc8434ef6442f6aef306475eb482d130abce8db971 + # Bundle: ibm-block-csi-operator.v1.5.0 + - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:4e6b7b6006f6ad537b75fb681805003d4873230ef2706cab3333c4567502361c + # Bundle: ibm-block-csi-operator.v1.6.0 + - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:6da931c6455da890b255af2201c073627d4cf8371c16c15a862e8301286be332 +ibm-spectrum-scale-csi: + # Bundle: ibm-spectrum-scale-csi-operator.v2.0.0 + - registry.connect.redhat.com/ibm/ibm-spectrum-scale-csi-operator-bundle@sha256:70f310cb36f6f58221377ac77bfacce3ea80d11811b407131d9723507eaada42 + # Bundle: ibm-spectrum-scale-csi-operator.v2.1.0 + - registry.connect.redhat.com/ibm/ibm-spectrum-scale-csi-operator-bundle@sha256:26e507a96b0473964ab18c84ec899a51c05301e956c3968dae8a0243842f9b5f + # Bundle: ibm-spectrum-scale-csi-operator.v2.2.0 + - registry.connect.redhat.com/ibm/ibm-spectrum-scale-csi-operator-bundle@sha256:042e43455cf5b9fe1acf408661bf8163a3f561a22baa3ef82e2580f447396a81 +ibm-spectrum-symphony-operator: + # Bundle: ibm-spectrum-symphony-operator.v1.1.1 + - registry.connect.redhat.com/ibm/spectrum-symphony-operator-bundle@sha256:6920ea67b4a0387453b95376e2d8f6075eb07b39b42ea3fc7f3d256b68042ec0 +ibm-tas: + # Bundle: ibm-tas.v0.0.1 + - registry.connect.redhat.com/ibm/ibm-tas-bundle@sha256:5bdc5d47591f604d221e74f71efd091873df76198e64cf3ed50a85cacc11c9dd +infinibox-operator-certified: + # Bundle: infinibox-operator.v0.0.1 + - registry.connect.redhat.com/infinidat/infinibox-operator-certified-bundle@sha256:5a8ca8be977bf98a07ac9ca02a2e4132d88e1f2e71130cbd5ff1acec231e4c32 +infrastructure-asset-orchestrator-certified: + # Bundle: infrastructure-asset-orchestrator.v1.0.0 + - registry.connect.redhat.com/ibm/iao-bundle@sha256:28faa7d2803b17e31d261bcf3a9372eb712f900c68486f0efdfabfc43235ee45 +insightedge-enterprise-operator2: + # Bundle: insightedge-enterprise-operator.v15.0.1 + - registry.connect.redhat.com/gigaspaces/insightedge-operator-bundle@sha256:f4cd0ec77bc5f19409242c4e5990447281b6bd60b8d0eff848744a431c73cd22 +instana-agent: + # Bundle: instana-agent-operator.v0.2.6 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:e3bbdf42b6d8e4d5d41793209ebc8c883efee6be03273bc3fef3ce3fe0dc171a + # Bundle: instana-agent-operator.v0.2.7 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:e827ba4c955ecf3e52d72b2ea012a1340daf3f0d7a1f1923e2ba46d9e291b71d + # Bundle: instana-agent-operator.v0.3.10 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:430f28f86bbc3e14e226133048c0fa27b5a446087329d5ec89262d1db5450250 + # Bundle: instana-agent-operator.v0.3.4 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:30cc380829d5185e535c6ce2862fdfbe725694e638edade24d1d2ead76f063ca + # Bundle: instana-agent-operator.v0.3.6 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:bd5065d9525fb3a5c9520200e074d7d95781b19f41f0bce6118c7c0367f4e015 + # Bundle: instana-agent-operator.v0.3.7 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:a01cf756a40c09923a1f00a7516d83a46087731265dcc5ed10a7bbcd8bebd8e8 + # Bundle: instana-agent-operator.v0.3.8 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:89cc136ad0345205fdb4fd32a6d6c73a02068f6a5a9e0669a57c4da5d9624285 + # Bundle: instana-agent-operator.v0.3.9 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:c74519be65015d28508ca3b260449a0365f97968f17e20b48c7b338247c835c3 + # Bundle: instana-agent-operator.v1.0.0 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:62e44a3a7ad63ce183162ad49de72ddd587358251b91a890cfebdb72945c140d + # Bundle: instana-agent-operator.v1.0.2 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:0e445f78b7f921890bfc6f013a0ed5b9fa0f9b2cddf9768e3a8e83d52716b043 + # Bundle: instana-agent-operator.v1.0.4 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:e007bfb95d0e0498967a466dd482002181f4ae797a98d2b5d9bed751defc04b6 +ionir-operator: + # Bundle: ionir-operator.v1.0.2 + - registry.connect.redhat.com/ionir/ionir-operator-bundle@sha256:41d3d00ce48ca90dd3b86e07c2da216339d2b4e1dfe6fbd90708aec7d3df6697 + # Bundle: ionir-operator.v1.0.3 + - registry.connect.redhat.com/ionir/ionir-operator-bundle@sha256:7642cc52a32fb09e7467f3a1fb7d7c25fdbed423faf47e3bdc962c1916f69909 +ivory-server-app: + # Bundle: ivory-server-operator.v1.0.0 + - registry.connect.redhat.com/gtsoftware/ivory-service-architect-operator-bundle@sha256:0587893f027c7b58ea169f9f2587a561ac778db502b0e26a7bf3377fda83b85e +joget-dx-operator: + # Bundle: joget-dx-openshift-operator.v0.0.10 + - registry.connect.redhat.com/joget/joget-dx-operator-bundle@sha256:86591e38d2f64c6a9557ac5cff6383e54cd593002bbfd6508bb5337ec310596d + # Bundle: joget-dx-openshift-operator.v0.0.11 + - registry.connect.redhat.com/joget/joget-dx-operator-bundle@sha256:484577c27bda23181ca94516e63076bca1fcf883f041eef996d5ba61ef39ccfe + # Bundle: joget-dx-openshift-operator.v0.0.12 + - registry.connect.redhat.com/joget/joget-dx-operator-bundle@sha256:2f28ff53962f20a92565ee074b783ce62aac5162bf6b1e3ed4342c78edd087b7 +joget-openshift-operator: + # Bundle: joget-openshift-operator.v0.0.4 + - registry.connect.redhat.com/joget/joget-v6-operator-bundle@sha256:3a06e6251177f3585d43420ad647cd1e6731c959cf37b9294206b2b7ccbb67b6 +jtrac-app-operator: + # Bundle: jtrac-app-operator.v0.0.1 + - registry.connect.redhat.com/corentrepo/corent-operator-bundle@sha256:7f59b09438a61b79ef78872c6e7e169e4ef3164a6c5d04729fe45e0890e7bb36 +k10-kasten-operator: + # Bundle: k10-helm-operator.2.5.18 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:b75d6812f5cbdfc1a26a8d18b6877f2bba5bd239f03fccd246933f6859635102 + # Bundle: k10-kasten-operator.3.0.11 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:051fe316928519e1174758860da97389e0f2a13cf64efc8ff016a942e8e2732f + # Bundle: k10-kasten-operator.3.0.11007 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:a4d336e19f34d7e4c6077261cbe42d8bda2fa9044a7dc957e4d5c996dfc4eb13 + # Bundle: k10-kasten-operator.4.0.5003 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:aca1212f1ffd5d2b76817b0f29a76fef27501cdf5c44798cb5363da9b6397051 + # Bundle: k10-kasten-operator.4.0.6000 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:d2290057a7c9e3ad365bcc21d3a8c88c6917ae9bf3d2822b31c9372b705156e7 +k8s-triliovault: + # Bundle: k8s-triliovault-cluster.v2.0.0 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:3d08fbc3203b68e953d71cf21d2311e2fc6e4529870274535cf1bab1e6bb609f + # Bundle: k8s-triliovault-cluster.v2.0.1 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:46bd2d9a110bb8964d675bec5863de8dd2e5dcdf7d6b97a0d64a8a543fbeebf7 + # Bundle: k8s-triliovault-cluster.v2.0.2 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:4625d639ed8bc07b92b9231b67f67ed6c1866194cd194a02469e36ef7706da3f + # Bundle: k8s-triliovault-cluster.v2.0.3 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:d27785567c5e0db70d99ed7e220a5a58e6466384cd6103849ff0dea6bcfe5c57 + # Bundle: k8s-triliovault-cluster.v2.0.4 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:51408a5ff0498bff23cf95222849e80311a10e3b6575325649e191059c4e8521 + # Bundle: k8s-triliovault-stable.v2.1.0 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:1371ae42f57e443d556eb573342cc1a37f00f3b707b6a7d76b3be19a05bb2bd9 +kong-offline-operator: + # Bundle: kong.v0.3.0 + - registry.connect.redhat.com/kong/kong-offline-operator1-bundle@sha256:7e04701bbd16aa9cab693a99b7e6935e720ef35f0d5d830defffb8fec50b42d4 +kpow-io-certified: + # Bundle: kpow-io.v1.0.3 + - registry.connect.redhat.com/operatr-io/kpow-operator-bundle@sha256:b18d7d949dd02bea3becd844f863889d110eeec8f383b20d34d0928c2a140c55 +kube-arangodb: + # Bundle: kube-arangodb.v1.0.1 + - registry.connect.redhat.com/arangodb/kube-arangodb-bundle@sha256:f7cd48b52e0913ca13968d396ba7158cb94344ad762838574724ef5015153945 +kubemq-operator-marketplace: + # Bundle: kubemq-operator.v0.5.2 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:77737935963af3be8b1354959037e7b6948710deae1150f0aa724af4d240aed0 + # Bundle: kubemq-operator.v0.5.3 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:fce2e20216b3adcb191be3b55f9a5e4505e021a0ffd495a89ef00466f4ada722 + # Bundle: kubemq-operator.v1.0.1 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:338e1b266542af3ff3bc7f628477b1f9714313cc7b18872141fbab7bad7241a0 + # Bundle: kubemq-operator.v1.1.0 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:a488e8afd4b82f128edf45f36f1c75c9ca6beb37855bb1d5009fc6dd8c9f3434 + # Bundle: kubemq-operator.v1.2.6 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:28def796348a6830ef800f0dcdd7a669c01a34f54222828f24b00d419d945917 + # Bundle: kubemq-operator.v1.3.5 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:afe0430ae7f0c5df27e4a3ca69ea25793bfd03870915221510c3d194e4a987ca + # Bundle: kubemq-operator.v1.4.0 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:18ccdb6da4534cf1e10c831e392df7252273ccfa763fe7251391a8bd0bca4571 +kubeplus: + # Bundle: kubeplus.v1.0.5 + - registry.connect.redhat.com/cloudark/kubeplus-operator-bundle@sha256:a1944c0e06d995361c72f03b8a975a646dd25935a0312c5209a03cb1a1732256 +kubeturbo-certified: + # Bundle: kubeturbo-operator.v7.22.6 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:f8bc2060cc0e1ec4bbae7fed0ff0013c4ed936b85413db3011f701bdce2b6367 + # Bundle: kubeturbo-operator.v7.22.9 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:1c09b241712469ae34e4017e9481e3124cb6ce7037b61a44b62f2f7e0c10df46 + # Bundle: kubeturbo-operator.v8.0.0 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:dd364c7a85d6a97629074293a481534226353a1614b61fb2f1ff0972a4016dce + # Bundle: kubeturbo-operator.v8.0.4 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:770c0b5a41cc3103582daeb44a0d897d578e03fdd8597a3a385f8ef78d5b6f38 + # Bundle: kubeturbo-operator.v8.0.6 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:dd05b33ddb1ff5fb9e31d24ab0f568974d6592d50e02908c7a2e9f0d680e27b9 + # Bundle: kubeturbo-operator.v8.1.2-1 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:a6ef9961d40403e2b8832df6cec9e27f35ae70ab610ed138cfd05e153888b498 + # Bundle: kubeturbo-operator.v8.1.6 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:505c038233894f5fd5203f1546544f7b2a0cca334b2e8cc055243f473cd22625 + # Bundle: kubeturbo-operator.v8.2.2 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:8dea6665a8cd0a40b0ad7daa52f22ff341ae29c5b592636bfac25e4767224324 + # Bundle: kubeturbo-operator.v8.2.5 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:64962f1aa0777ff7bec1605a7c13be82fa7596b3cc997ae62500b7714b75c084 +memql-certified: + # Bundle: memsql-operator.v0.0.2 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:1a400322ed8279e6ded73c7fd89c3cc5df2f74ebede9d192017268166a2bb97e + # Bundle: memsql-operator.v0.0.3 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:43d4b83cd44b220ff97974e49f5a451f93058bbf5ed52ef8a650f199bdc0ebdb + # Bundle: memsql-operator.v1.0.0 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:abaf5a3965617a0555757344b802e6112317de9c343cc018f15c74a6843c55fd + # Bundle: memsql-operator.v1.1.0 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:47b4b5c50c392e404ca01fcb53fb7ccaf56000ccaeeeded071662df29b5fb44f + # Bundle: memsql-operator.v1.1.1 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:12cf4fdab07a4a3d97489de54b80231af171494de7cd686d1b792a3643c15142 + # Bundle: memsql-operator.v1.2.1 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:56849484480e43b9a599650ec9c6fba1459e701a3fac5c457ff9b3d2750838d9 +mf-cics-tg-operator: + # Bundle: mf-cics-tg-operator.v0.0.1 + - registry.connect.redhat.com/openlegacy-corp/mf-cics-tg-nocode@sha256:bf84c776f995025ffac87b50971ff401cf92badf987d5c34a19915fa5e124b87 +mf-cics-ts-operator: + # Bundle: mf-cics-ts-operator.v0.0.1 + - registry.connect.redhat.com/openlegacy-corp/mf-cics-ts-nocode@sha256:cc02375c897a1163e1adf315286d008488beb8eecdc0b1804867434c9448e809 +mongodb-enterprise: + # Bundle: mongodb-enterprise.v0.3.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:bd877b7c44e5d1d99596ecb061cf37ae47947a7411cbc4d6efe228a74a7b86fb + # Bundle: mongodb-enterprise.v0.9.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:4474b295785b6a10e82cf34f266022dbcc70897b2c12f07024fb86f035994eb8 + # Bundle: mongodb-enterprise.v1.1.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:6002125e35b4e8b853c3825a136725515f47a569daaab60f6862bf12a0cbb469 + # Bundle: mongodb-enterprise.v1.10.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:e73abd7b4086129ecd1a5f48209af59124ba9d2699de0c90b393377fe9596e2e + # Bundle: mongodb-enterprise.v1.2.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:bb7df5aa12ccca3dca2f90c668dd2714c8519c72e8f62ce471034deb5e589c26 + # Bundle: mongodb-enterprise.v1.2.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:b723279ffbfd735a83afd8db3424f8d8b2806906e483a6b64f9fe12f9e9615a5 + # Bundle: mongodb-enterprise.v1.2.3 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:b77778d5cf77fc1ab9a72814118af5dc43d44c7d0d802c16a7862c09370b0e13 + # Bundle: mongodb-enterprise.v1.2.4 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:8fa9cbb9d0454f11fa1023889513150cab1a743ee092d7f4110824e4512bf1a4 + # Bundle: mongodb-enterprise.v1.3.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:81f2e3748346dbe79ba169cedf855f48d8e5538db6f0d4f56177200aff23d36b + # Bundle: mongodb-enterprise.v1.3.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:6eece28f85cc8722599979c7d460e88a8e433b9e3fee9b71285a826ef9e30862 + # Bundle: mongodb-enterprise.v1.4.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:ade7cee1cfce9d5a5badbcca507fdda3baa842c80f36458a2d6c3ecd5876e25d + # Bundle: mongodb-enterprise.v1.4.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:5d01409483df2df74a1241d290349d612387b64aca09caef9e04161586adac57 + # Bundle: mongodb-enterprise.v1.4.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:e0a36fbe70d56aa4faf878b3a2d8f4196008d87ea9057f8509eaf4334b0eb1c5 + # Bundle: mongodb-enterprise.v1.4.3 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:7c3886d3658f55f572d71ac9c6b0349e040730fb9de2f357c11d8bf595aca8cf + # Bundle: mongodb-enterprise.v1.4.4 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:92f5f489e8ad0cc7e7b10bd474a86810b352b5cc95db7347ce46a676cc4dbb7e + # Bundle: mongodb-enterprise.v1.4.5 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:061187a5a8e57993f3c5a8cec379cc0552a3d690bbafb697d669ae6d192c3a77 + # Bundle: mongodb-enterprise.v1.5.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:04e407898806a44d17138656000aa7b6114369f23aafbb58768d73d3fc37e7bc + # Bundle: mongodb-enterprise.v1.5.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:6cba2675c9bc425e0115c07edd1346b1935b117b0e2154cb2554aec87341ee4c + # Bundle: mongodb-enterprise.v1.5.3 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:470019d6a6e3463df83904388995bb461fd7c6c2882d3bb7b0d3a531e053bcdb + # Bundle: mongodb-enterprise.v1.5.4 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:3d2a384b4f38cffc9d14f7c9f53d12e55dc1e147116b608d263a7c04aed1e18d + # Bundle: mongodb-enterprise.v1.5.5 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:e426e5dad74e713683d535e97a4e586cb898da891e9e61177eefb2db5742398d + # Bundle: mongodb-enterprise.v1.6.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:b5504dbce2d6d8f4dfa7f67549ac094e8f84ecc807ec676dd3ab9544f9d22ef0 + # Bundle: mongodb-enterprise.v1.6.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:3e658321d10716e0163b5538c0f9390d309717618bc782c7d95f3bf58e92c8fd + # Bundle: mongodb-enterprise.v1.7.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:0b16171987afd2205857a91ae15f34e316dac574faca5abfa13e0a4d025e37c8 + # Bundle: mongodb-enterprise.v1.7.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:9af7931f63d1280fcdbe9f33801b560db6b0b44860aa7bdf83e276e907d13a9f + # Bundle: mongodb-enterprise.v1.9.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:caa0aaef0026a513d554a02863abb3bb9f49bdee32bc7fc3e749f03c12ebbacb +neuvector-certified-operator: + # Bundle: neuvector-operator.v0.0.1 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:3ef303a68ac1ec0f5b6b8fcb4be8471180ee24e69ddb6e454ec00cac806fdfe6 + # Bundle: neuvector-operator.v0.9.0 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:f1fc06ee96cc7509e5dc94ef6cd87921fbbe4b4112d9561c14ee06a426c59f91 + # Bundle: neuvector-operator.v1.0.0 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:7e0a5c64a34ebad4b0b156b07e1b53b7fa6cc9ed9c456ff0a33523d6e4313e18 + # Bundle: neuvector-operator.v1.0.1 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:2c354e02f3ddfd9ef6ccac776b77603e60f907b10bac730e133845292500dd40 + # Bundle: neuvector-operator.v1.2.0 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:863e2cbbd481dfe2c70fdfcf866c161c250b95e5e9a320fe211a805c456c7e9e + # Bundle: neuvector-operator.v1.2.1 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:0cc69f7bb40a40bf02485677bc01ae3768b3ae8015c4d3bd1c1d088ee487117a + # Bundle: neuvector-operator.v1.2.2 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:c9a87ec0ec782af1bbd37851f1b15e639a36ff8e4b5a295b9886d7516fc7eba4 + # Bundle: neuvector-operator.v1.2.3 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:df5719e58365fbd71274838705de8e49fe52a30417960fef6e799e01debf6c48 + # Bundle: neuvector-operator.v1.2.6 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:a3150ff18aa21ddeb3a7e052b3bbc65616b62c1d557e910b13528c85c8b9196a + # Bundle: neuvector-operator.v1.2.7 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:a8c0bb66bd911a2720df2cf08391b768e719c2e23344d58913e681066fbbb556 + # Bundle: neuvector-operator.v1.2.8 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:6f4ff463c67af42c1c3603e36e512a60dedb95775380a1a6b26c4cded86de5e1 +nginx-ingress-operator: + # Bundle: nginx-ingress-operator.v0.0.4 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:5825614ced508b2d168fca5dc0d53e169c0c598bf9008dd3ee0d6bf75781d3f6 + # Bundle: nginx-ingress-operator.v0.0.6 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:d53eea0345b2e18fb84d1208f5ca6c2e74c425403ba1611b5b1ee525315da0ae + # Bundle: nginx-ingress-operator.v0.0.7 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:3dc0dc8f785195dc30977d96d038b8101ddb79e4e7ea9375c94bdbb533d4969b + # Bundle: nginx-ingress-operator.v0.1.0 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:bb5088b3310edf490b5b72e89077326cb92ce6ad543330953c8fab92dfb6637d + # Bundle: nginx-ingress-operator.v0.2.0 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:39e36214aae291f6724a9e688b16d702bbe57dfcb06e81de6d0d5efb0a5864d6 + # Bundle: nginx-ingress-operator.v0.3.0 + - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:adaa8e3af45ffc5b42a70ca9a6c623351f1f1240c45e7c50ebe5a9b4cc33471b +node-red-operator-certified: + # Bundle: node-red-operator.v0.0.1 + - registry.connect.redhat.com/ibm-edge/node-red-operator-bundle@sha256:bf24a03362d30d0c31b19ae0a6f9cbb3340cbee7e133c5523efc32ccc963ce0a + # Bundle: node-red-operator.v0.0.2 + - registry.connect.redhat.com/ibm-edge/node-red-operator-bundle@sha256:0cb06a7e47db1ff13ac7542f73041f96fb8e734438db5d4b37e17a69879c0199 + # Bundle: node-red-operator.v0.0.3 + - registry.connect.redhat.com/ibm-edge/node-red-operator-bundle@sha256:834370621a7d6f2e4ade42e5a4eb63625f5a8a4b02f01d23a7422761e07777da +nsx-container-plugin-operator: + # Bundle: nsx-container-plugin-operator.v0.1.0 + - registry.connect.redhat.com/wavefronthq/nsx-ncp-operator-bundle@sha256:9c4d4a422db64d7248dc1a9823e19de2372d06670cddd6d10cefde966cf975f1 +nvmesh-operator: + # Bundle: nvmesh-operator.0.7.2 + - registry.connect.redhat.com/excelero/nvmesh-operator-bundle@sha256:31d2c78ff1afd16b0e5db2cee34d8cb325c61bcf2f6c0f0fccff7899e97548d9 +nxiq-operator-certified: + # Bundle: nxiq-operator-certified.v1.90.0 + - registry.connect.redhat.com/sonatype/nxiq-operator-bundle@sha256:62ca1e8c6114e2ebecd5664491c22c283f406d584507a3619bae3967de8c9726 + # Bundle: nxiq-operator-certified.v1.90.0-1 + - registry.connect.redhat.com/sonatype/nxiq-operator-bundle@sha256:4f49f111d6ac40466fb7f88be3a82bd8b52b8c9567d0a19cd4d21c4c51d06bed + # Bundle: nxiq-operator-certified.v1.94.0-4 + - registry.connect.redhat.com/sonatype/nxiq-operator-bundle@sha256:1677f856c2bdf9947e00d4e58f52c52ff2c7b102d8fcfda7cc2184197aefe33b + # Bundle: nxiq-operator-certified.v1.96.0-1 + - registry.connect.redhat.com/sonatype/nxiq-operator-bundle@sha256:96e43fdd8e19f0f339c518cd01cab0eadc2cf9a02fc4177d64cf437415d687d9 + # Bundle: nxiq-operator-certified.v1.97.0-4 + - registry.connect.redhat.com/sonatype/nxiq-operator-bundle@sha256:48d5a2acbdb1516738ee4eeff15a1085de92a8d0ded3f317317d64df8103ba6e + # Bundle: nxiq-operator-certified.v1.98.0-1 + - registry.connect.redhat.com/sonatype/nxiq-operator-bundle@sha256:a148f6b5251f07de56e593477154200ac9a2993910c93e03455fc2587de2a844 + # Bundle: nxiq-operator-certified.v1.99.0-1 + - registry.connect.redhat.com/sonatype/nxiq-operator-bundle@sha256:40e3e2a969464b33e9f0873628a01e01e6c14959753f9006bf79a8e558e4ea39 +nxrm-operator-certified: + # Bundle: nxrm-operator-certified.v3.22.1-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:f79bfc5a9a3544037537dd6119084b2c72644f9e01b739796c0cef578f99958c + # Bundle: nxrm-operator-certified.v3.23.0-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:3e6bec18d3fcb326ef63f81b8dff5f5d21db6fad489744c94542c75518ca638e + # Bundle: nxrm-operator-certified.v3.24.0-7 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:69cec4ebc1b4638bc289891c7493e71df23cabb301dcaf7ee503347a36bcd8de + # Bundle: nxrm-operator-certified.v3.25.0-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:ac144d0f1720655a10cb43727a3a05783ad08d9397c376c1dc1c9be12abf4764 + # Bundle: nxrm-operator-certified.v3.25.1-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:3e51c8fb0633e5766a160adbd387e066216a43eb6d134c28be8943fa26df87c3 + # Bundle: nxrm-operator-certified.v3.26.0-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:fafd2ae5bf0190bddea2f177ac1733f77f13607435e3e7b97c64e65f83aae71a + # Bundle: nxrm-operator-certified.v3.26.1-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:e0bd5cb48d9c8520a5ff4ce7c4e9d20feb32bc569df33d6c61206268a82b48eb + # Bundle: nxrm-operator-certified.v3.27.0-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:2468cdba4a093312d121be5389b40456fac45c92de4be8560da448bc225be8d7 + # Bundle: nxrm-operator-certified.v3.31.1-2 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:ba710f12a4c97b1a1e851d2a47b1b009543bdbe5c2a769a613d2b25238c19cb8 + # Bundle: nxrm-operator-certified.v3.32.0-1 + - registry.connect.redhat.com/sonatype/nxrm-operator-bundle@sha256:003b936ea11ad47de6b6412a5229314860d82282ffe2138be67862dab987c35c +oneagent-certified: + # Bundle: dynatrace-monitoring.v0.10.1 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:76c97a3d3feba26f2126c4dddb3d72648e0f4bda817880b4e13988c9fc69115e + # Bundle: dynatrace-monitoring.v0.8.2 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:e2ef787858ea4f716ea7112802b874b99028779f4b0636e6755039d5f9ed8357 + # Bundle: dynatrace-monitoring.v0.9.0 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:8c4b0a6f8e465f5b969ea88d78cb3883a308b1c8c19f68e3c9cef2f6a0b40584 + # Bundle: dynatrace-monitoring.v0.9.1 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:68dbfe15d1fd859b294bea3f88dbe94ff61c788b3aa923ad8e029ce52a35a2ec + # Bundle: dynatrace-monitoring.v0.9.2 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:bb0802549d55a58ab1edec52991de5fecbb0403f9f9544a5cc2da44cd995a1cc + # Bundle: dynatrace-monitoring.v0.9.4 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:57038e95b66d81649cb412066c70a20f94c35b6e95453baeac3dbc43b001f374 + # Bundle: dynatrace-monitoring.v0.9.5 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:fc750e6590bf2336144268bb09688a94e0baca2d5ebfb45b9f734b5cb5f68606 +open-liberty-certified: + # Bundle: open-liberty-operator.v0.7.0 + - registry.connect.redhat.com/ibm/open-liberty-operator-bundle@sha256:66987dd9d568c2b004a358c9fbbb5c89a74a7512bd43599b2463b08cf44724a4 +openshiftartifactoryha-operator: + # Bundle: artifactory-ha-operator.v1.0.0 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:5526e86dd60790139a6620e2464cb3450091dd0e6941600e9dab66a6fc79012e + # Bundle: artifactory-ha-operator.v1.0.1 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:f4a009d95308df12c8e754d05313d6674b3e508efb918e054e682f8270b761d6 + # Bundle: artifactory-ha-operator.v1.0.2 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:6cb92a59c468246bb9a9060b7abce13ba9f2bb9b8d583a2b65837afdc291270e + # Bundle: artifactory-ha-operator.v1.0.3 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:ee798802b03e93ccc74762d5da175a0e6f00692ca7f2c94c16c2048862bee7ba + # Bundle: artifactory-ha-operator.v1.1.0 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:7e1160ad7bd60a804af78882a34f38a741339a8ea21375389604dac3985d0f14 + # Bundle: artifactory-ha-operator.v1.1.1 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:6467f705bdc76f568941848ae6accc02d639b3a61a09d8555aed0b8333cefd1d + # Bundle: artifactory-ha-operator.v1.1.10 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:106f9243c74c6a1a2509988d284889beb5a079f4112bf0654fee635a9232fdb1 + # Bundle: artifactory-ha-operator.v1.1.11 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:109ae78d718c0cc410d157ed4737d94445215a4e06894bdebf467bdc7a25d5dd + # Bundle: artifactory-ha-operator.v1.1.12 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:1b4675a3d6fe07e2d2b5bf88bdf130a2d3df8f5db5f0112883df9c06a2b9facf + # Bundle: artifactory-ha-operator.v1.1.13 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:c791ad2b333614b4409381e5898c1a48029104af25f722cc5c93945fbfe1a800 + # Bundle: artifactory-ha-operator.v1.1.2 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:b29e83b16f2f1d536f3d369964dd7e892768a6a5b439915f85770f7c055bd6e0 + # Bundle: artifactory-ha-operator.v1.1.3 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:fc274d39736785b098a52a375301aaf3b0f3dd4d7cf5a263982086d15996e816 + # Bundle: artifactory-ha-operator.v1.1.4 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:9e558f919dcde8725e92e313fa50263273b2eb785fc4c6cbc671af63b2b0b7bc + # Bundle: artifactory-ha-operator.v1.1.5 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:a4aadd0ff8dbf7d22fa1be564d0d07c597b98b6525b1d3fbeeff07187612bb8b + # Bundle: artifactory-ha-operator.v1.1.6 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:ee74e62af554f6ee99d0e6c3e1e6d5550a99797d7f8cfa2a4c0a5f38652c8f40 + # Bundle: artifactory-ha-operator.v1.1.7 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:55db08dd0f5020223d955b1befd9f8efebe2b5cc341be54e5d665f42b1d96170 + # Bundle: artifactory-ha-operator.v1.1.9 + - registry.connect.redhat.com/jfrog/artifactory-operator-bundle@sha256:6a998ac372b5b63e022db600ca799c275c90c12f7b630c0fa588d1169ce850ef +openshiftpipeline-operator: + # Bundle: pipeline-operator.v1.0.1 + - registry.connect.redhat.com/jfrog/pipelines-operator-bundle@sha256:319b188f70a139c3f5e1a64533280a60388365a5585465d55c6a4e1db98fca28 +openshiftxray-operator: + # Bundle: xray-operator.v1.0.0 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:c699fc5449544fec0551567347ee541dbea8344c00ec2ecfb44e7a67427bd473 + # Bundle: xray-operator.v1.0.1 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:ac71b64ccb38aa4724dc95a782c5b18775d599c54954193abf2ab58589a93afe + # Bundle: xray-operator.v1.0.2 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:30d89756af5a4ce5ac9d1298b62a4984f87e329670ea70c5d03cb25a15809924 + # Bundle: xray-operator.v1.0.3 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:a55697133ce82a3626aa9e8ff06c0aeef1c57ae81768217513e926131177a33e + # Bundle: xray-operator.v1.1.0 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:5fe48acf4230e2104ed876f362ff1b2ad8ad66f29e9fd41a1b855d611911ce62 + # Bundle: xray-operator.v1.1.1 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:c021eead94bf385c5f463a6b3e6aa76584dcabdf11d00eaf2ce5317429251ddb + # Bundle: xray-operator.v1.1.2 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:3e07815f69fc3f36abda84131830e76c62eaf88d9b31ad4639c6b5cc89b1efba + # Bundle: xray-operator.v1.1.3 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:38c5f9c1bb486e49d6829a3427d62e493e89df89a00f5d635f6c943823213eff + # Bundle: xray-operator.v1.1.4 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:18f3ddc0970c0aef2f6b288369f9ed8ba48516b6ed01299972bd6820eb0ad244 + # Bundle: xray-operator.v1.1.5 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:360ee474b795d583155b19d514ee2c8a3ffdeb1f1a6ec883b94c37443559b7e3 + # Bundle: xray-operator.v1.1.6 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:32a498be4c7eee8f5d94806127271d93b3400e78a8928682c76b5ae3eded44ae + # Bundle: xray-operator.v1.1.7 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:8a2ed2e02372265c2950c6fa6b5d929d2c2fed7ee2bae2424782d1abe19564a6 + # Bundle: xray-operator.v1.1.8 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:46e80952bb5267d09d96559ebfeb04f15f7c25b81481402e4ed68823826eddbc + # Bundle: xray-operator.v2.0.0 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:211689acde185f0a3342e34a9f9df17a01bc1aed72795ff564d0db3ffb57e800 + # Bundle: xray-operator.v2.0.1 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:1646e0157cbcc443383e7869b7e276970ef61f36b089538193f37040919b2c23 + # Bundle: xray-operator.v2.0.3 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:c0585cad4530488abaed82c0391b6afee1620ea552a088f0631bd8c9bbeb73df + # Bundle: xray-operator.v2.0.4 + - registry.connect.redhat.com/jfrog/xray-operator-bundle@sha256:5f46760cc6a192e8437bd409f02f9b4f5aba2467c5a44e3fb215ce525d116d7e +openunison-ocp-certified: + # Bundle: openunison.1.0.0 + - registry.connect.redhat.com/tremolosecurity/openunison-operator-bundle@sha256:bf50b128eefd6fb80e48f08aa8f6e6f3f384ca3d76641e7d2f5df73b055f6fbf +orca: + # Bundle: orca-operator.v1.0.193 + - registry.connect.redhat.com/tufin/orca-operator-bundle@sha256:95250ad63b44b9c3c4cca17514d4fa0396c7a8f1d0c5394383c70f4cee653cfa + # Bundle: orca-operator.v1.0.195 + - registry.connect.redhat.com/tufin/orca-operator-bundle@sha256:ec53a8fd3ac62698b27d52ee4e1af95eec2620457990de26b1673dde5ab75377 + # Bundle: orca-operator.v1.0.197 + - registry.connect.redhat.com/tufin/orca-operator-bundle@sha256:3ea67ab24efcb9b693d57ba2624de6c9dd5745c788d669dff0562c4b283d447b +perceptilabs-operator-package: + # Bundle: perceptilabs-operator.v1.0.16 + - registry.connect.redhat.com/perceptilabs/perceptilabs-operator-bundle@sha256:90b5771978da944a76d790e3609d4523b82c1c4b75f86da3960fbf682a697fb3 + # Bundle: perceptilabs-operator.v1.0.20 + - registry.connect.redhat.com/perceptilabs/perceptilabs-operator-bundle@sha256:30aed432c70f6bd3da4e6365e32da1877affa4b56458c17549b119de17eaa932 + # Bundle: perceptilabs-operator.v1.0.21 + - registry.connect.redhat.com/perceptilabs/perceptilabs-operator-bundle@sha256:ac9d7ca9b4ca142bd5c983e541cc687fea3143446b79d7d853f7dd654a3001ef +percona-server-mongodb-operator-certified: + # Bundle: percona-server-mongodb-operator.v1.8.0 + - registry.connect.redhat.com/percona/percona-server-mongodb-operator-bundle@sha256:a0a367801ec964b74d015e8c4025930283f8dd5f125776e78a72101d170f0df4 +percona-xtradb-cluster-operator-certified: + # Bundle: percona-xtradb-cluster-operator.v1.8.0 + - registry.connect.redhat.com/percona/percona-xtradb-cluster-operator-bundle@sha256:a280b29739d410d14616edde83066cad0f63d2e1a191ee1434636e25448d4e56 +portshift-controller-operator: + # Bundle: portshift-operator.v0.1.5 + - registry.connect.redhat.com/portshift/operator-bundle@sha256:3165cd171a5e046461a6b55011084ac293e92334983ef65acaf03ec5fc40c141 + # Bundle: portshift-operator.v0.1.6 + - registry.connect.redhat.com/portshift/operator-bundle@sha256:315706e1ed51c3543b44c0524ee717b36324d128d8dafac2388adf94107c4c48 +portworx-certified: + # Bundle: portworx-operator.v1.3.4 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:45e1a7f6115be1545cf0ad204a206458277c80e83cff7414726e05f40edb83b5 + # Bundle: portworx-operator.v1.4.0 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:e7981e3a197cf2519d442d180353b489df5f7b180534b064e2f63f5ebf115fe6 + # Bundle: portworx-operator.v1.4.1 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:46948a9049f11cab4b7896b20e29381c8c06b92fbedc2c0605480711f4786323 + # Bundle: portworx-operator.v1.4.2 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:c2bc0d28a5c322d55ad45a82fb1845cf4346b387afc3076e0f891b3d4e6656d3 + # Bundle: portworx-operator.v1.4.3 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:fc7bc43b6a932255f45e1ef8b72f906919fdf222487ccf3227fd1b1840187b5c + # Bundle: portworx-operator.v1.4.4 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:635efccc15cf37bc8dda8278790cda45596712b378802a3658c09b9435c1c8a7 + # Bundle: portworx-operator.v1.4.5 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:94ceda7ed2ae07580045b723f3c2783a2a454bc6b838ed22edfa54c6f91e8a77 + # Bundle: portworx-operator.v1.5.0 + - registry.connect.redhat.com/portworx/portworx-certified-bundle@sha256:9d9a3d6259b1b1ef0d48f08aafd9a7fef29ea243742c8ccdc0750fb3ec184e59 +presto-operator: + # Bundle: starburst-presto-helm-operator.v350.1.1-ubi + - registry.connect.redhat.com/starburst/presto-operator-bundle@sha256:75de295cfe227db51aa7a1b1880076175f3e8725682f845b47fa018e2e6791f5 +prisma-cloud-compute-console-operator.v2.0.1: + # Bundle: prisma-cloud-compute-console-operator.v1.0.0 + - registry.connect.redhat.com/prismacloud/compute-console-operator-bundle@sha256:81b134cf7e21acac8c2a80ec733745a4bd17229fcd7aaddffc4a18a89865dc2c +rapidbiz-operator-certified: + # Bundle: rapidbiz-operator.v0.0.1 + - registry.connect.redhat.com/vacava/rapidbiz-operator-bundle@sha256:57e0e6c51ed2b9ebf5347eee1fdd3ebff795cf8cf51f83e43cad4b02ea3872ad +redhat-marketplace-operator: + # Bundle: redhat-marketplace-operator.v0.2.0 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:2c1cfca71bdbfc3bc58ff026e2e661d2f8a517880b496ab7b781489f5ffe73ab + # Bundle: redhat-marketplace-operator.v1.0.0 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:f2916ae447f0b1f969f67bdbc418c17fd61887b31024a06618dbf5426cedaee7 + # Bundle: redhat-marketplace-operator.v1.0.2 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:539a8f4e847a89523f1acf2e6dfb00ed2776b38ec3f24a5bedb2e71fac65ab5b + # Bundle: redhat-marketplace-operator.v1.0.3 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:f4e205936e8fba2fef8e6294c492c7d3c289c9a5e071615abec373d7c5566b85 + # Bundle: redhat-marketplace-operator.v1.0.4 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:6e6717231634235adfd203b94daa2df8ccc844975d3bcb7a40406080946b15be + # Bundle: redhat-marketplace-operator.v1.0.5 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:c75756c5dc30ca757b7d798df0afa12877b62bd2f5602ce360c9144e7038efe3 + # Bundle: redhat-marketplace-operator.v1.0.6 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:d55a85c57dfd83ad010fead6b3c34cf0d8f098404bfab7dee22bbd66cc993855 + # Bundle: redhat-marketplace-operator.v2.1.0 + - registry.connect.redhat.com/rh-marketplace/rh-marketplace-bundle@sha256:50919a4329e9d72ee85cc1370797c0402aa0d6a43924373049a3f5656d4f8538 +redis-enterprise-operator-cert: + # Bundle: redis-enterprise-operator-preview.v6.0.20-12 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:099ce5ed6a2a9a8217676d2901f0872b7aa3d4ada5000b52a44878d5c4bf1cac + # Bundle: redis-enterprise-operator.v5.4.14-7 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:16da0c69f0e2585be8e44abe6e269dd35176771f5a1ecda3111c8a2f52c790a0 + # Bundle: redis-enterprise-operator.v6.0.12-5 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:292bef653614d21a7d7a8d7df2507978eafcf66910f978b1edf6469a42302874 + # Bundle: redis-enterprise-operator.v6.0.20-12a + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:5666acf5598f96dfbfac5704bb70e6578522979ef63b418ed2d1438a32d2440f + # Bundle: redis-enterprise-operator.v6.0.6-11 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:a16342d44039d3619f08f3fdd411e0074f7809442fbb486939b69f8c15451ecf + # Bundle: redis-enterprise-operator.v6.0.6-24 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:b0edae8a793cf9e47a9d33a6341e2d2dfd3656ce8f2a4fbaa7d22a7407402b7f + # Bundle: redis-enterprise-operator.v6.0.6-6 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:9ea442914977e8d29dc1f50a8d87d51363f729e2962a91ae993038b358916996 + # Bundle: redis-enterprise-operator.v6.0.8-1 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:350e0a49321d7a92b95803925f4bcfe97a95d07e1444f3b378fa80370f27087d + # Bundle: redis-enterprise-operator.v6.0.8-20 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:889042a1600da27e338f688044802838bb1b8126e9fd900ff0fbccfdf29b75ec +rocketchat-operator-certified: + # Bundle: rocketchat-operator.v0.1.0 + - registry.connect.redhat.com/rocketchat/rocketchat-operator-bundle@sha256:939fd27346e704244fda2c6666cda4e6f164d541e89c0000f4a46d91296831c1 +runtime-component-operator-certified: + # Bundle: runtime-component-operator.v0.7.0 + - registry.connect.redhat.com/ibm/runtime-component-operator-bundle@sha256:8e8792d973514ff1e87acbfbcaef90fa41d7dc66eac939f5e74b307946f7dd37 +seldon-operator-certified: + # Bundle: seldon-operator.v1.1.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:c380d43717df7db52058bcf261ece6ceb0e0ce779b0576d31d25d8a3c9c70e55 + # Bundle: seldon-operator.v1.2.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:cb77b47b96bbdc309b17468b8f644bac7206be94125d43a1609f20637937876f + # Bundle: seldon-operator.v1.2.1 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:1f423936c3134391ba56414c05ece71e90347666f69a2193fe01370b21ce138f + # Bundle: seldon-operator.v1.2.2 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:0f91afcdf6ef68f7a103834d6bf85938f457af36d3fab2fec164476ecb711cfa + # Bundle: seldon-operator.v1.5.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:64b7bbd99fa305eee77225a1d19c351817eff13bd018a95caf13c06749ff0491 + # Bundle: seldon-operator.v1.6.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:01aed6c653b9cd10b942981218ae777c9326a7f18011e52e2fa125beafaa1268 + # Bundle: seldonoperator.v0.1.5 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:53569fdf8eecee215755dcd02d56cb906330f84e3bc1015652d9b7a1ddc01edd +sematext: + # Bundle: sematext-operator.v1.0.9 + - registry.connect.redhat.com/sematext/sematext-operator-bundle@sha256:6261bac8dbfc9453bf59eed93a860f55e15529c564058f79246a5bfe9c6ad698 +snyk-operator-certified: + # Bundle: snyk-operator-certified.v1.40.3 + - registry.connect.redhat.com/snyk/snyk-operator-bundle@sha256:4830b241f5e18221172ddc3a9916215dcb0164f8ec2b0317cb6d31a7c2ce76ac +splunk-certified: + # Bundle: splunk.v0.1.0 + - registry.connect.redhat.com/splunk/splunk-operator-bundle@sha256:69ab15464e35611399ced93804618510717be529f42c50e70da0ea6a0027a6bb +starburst-enterprise-helm-operator: + # Bundle: starburst-enterprise-helm-operator.v354.0.0-ubi + - registry.connect.redhat.com/starburst/starburst-enterprise-helm-operator-bundle@sha256:31b39961bc96d35430fe527f3c7e5fa98c3ecb430e4f8d9d776f1f82e14785cf +stonebranch-universalagent-operator-certified: + # Bundle: universalagent-operator.v1.0.0 + - registry.connect.redhat.com/stonebranch/stonebranch-operator-bundle@sha256:b39a3421cf285a88e550fd4ad9a875c0e8e0deeb8b893402400682fe576c6bdc +storageos2: + # Bundle: storageosoperator.v2.3.0 + - registry.connect.redhat.com/storageos/cluster-operator2-bundle@sha256:d3cf17ee3f76aa8fe6158c276476c9cceb1837d0fbc1cc6c134e1b8194ab1294 +synopsys-certified: + # Bundle: synopsys-operator.2019.8.4 + - registry.connect.redhat.com/blackducksoftware/synopsys-operator-bundle@sha256:46cee91fdddca9dc6d10fadd954676b7d582505418ba0eec0f2788c19ed1a72a +sysdig-certified: + # Bundle: sysdig-operator.v1.8.3 + - registry.connect.redhat.com/sysdig/sysdig-operator-bundle@sha256:cee924a4b045cb2c5cd0a4cadbe070a47647b03b7c52762c163f5325ca82ed17 +t8c-certified: + # Bundle: t8c-operator.v7.22.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:e1c153bcadefa513dcb4df736084dcd6885ef014e7ff34dbbbeba8158839c59c + # Bundle: t8c-operator.v7.22.9 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:8890c8329b9968a041860d9eea7685a103b6643882dc569eb634d467442c79c2 + # Bundle: t8c-operator.v8.0.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:54455b83daafad874a99acd5da452c19b0f492ed9781b50cc76940059d7673c4 + # Bundle: t8c-operator.v8.1.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:348f3c9216384a33b21fbdfb37e6359f5288cc28381e57e5b0e0e99a18c02b73 + # Bundle: t8c-operator.v8.2.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:d1996f41abc640884dd988174df35b39e4d487bdfe4a1e2c39b1c365d20612e3 +tf-operator: + # Bundle: tf-operator.v0.0.1 + - registry.connect.redhat.com/atsgen/tf-operator-bundle@sha256:4377e3814893d2071e277b284c633d42586631ef8077a1b31b8d81058fce1380 +timemachine-operator: + # Bundle: time-machine-operator4.v0.0.4 + - registry.connect.redhat.com/rhel-timemachine-container/timemachine-operator-bundle@sha256:cf6aab0d357f8dadbbcd596c09cd847752401dd17cbec15270b8213f2fc99dd9 +traefikee-redhat-certified: + # Bundle: traefikee-redhat-certified.v2.0.2 + - registry.connect.redhat.com/containous/traefikee-operator-bundle@sha256:d8be7fb9621c8a2224d218f62926944a86d704d92db1c2344a0f3724575991b8 +transform-adv-operator: + # Bundle: ta-operator.v2.2.0 + - registry.connect.redhat.com/ibm/trans-advisor-operator-bundle@sha256:36d0e065b737cfc39015d55c9c71d1aff7d26a1f3a1009fcfbf6534d9a37a4f1 + # Bundle: ta-operator.v2.3.1 + - registry.connect.redhat.com/ibm/trans-advisor-operator-bundle@sha256:6de704e756f6859c1090b1904a4d269f90f4a05e7140f183222af5b8815beea2 + # Bundle: ta-operator.v2.3.2 + - registry.connect.redhat.com/ibm/trans-advisor-operator-bundle@sha256:ddc9c24a75e0a65b741782c9a51280aecd6a0ae017efafe0d8bb26dd86a848ec + # Bundle: ta-operator.v2.3.3 + - registry.connect.redhat.com/ibm/trans-advisor-operator-bundle@sha256:7a79b29878e35e2e72c774111c7b762db22ba14e8347f6b3dc2dbccbda2c9550 + # Bundle: ta-operator.v2.3.4 + - registry.connect.redhat.com/ibm/trans-advisor-operator-bundle@sha256:c50d0c0ab1079d5f079e205c350c8ea2296baa0e0d4444f70bca8fcfa1826f68 +uma-operator: + # Bundle: uma-operator.v1.0.0 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:bc935a0166c56bd3f477cc3027fca6e957856d37a81bb3622afe00898ee5fcfd + # Bundle: uma-operator.v2.0.0 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:3a47ed5f905bef037a51e9fb1aabf4e71bdcceedbe6caa7c92352657e3e5ee09 + # Bundle: uma-operator.v21.4.0-32 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:99abcf874cce95c5c3980221c322569a7272ab0dfe79f267886153c071f37a2f + # Bundle: uma-operator.v21.6.0-28 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:f5b938c27c07fb9fde2440529040fd6ba52b69ca3482205d87a066f54cf30f22 + # Bundle: uma-operator.v21.6.0-29 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:9ac8ad4f8e1b43fe92b34c28ff77ebad503264f790109f0d6dbc65e70a85e72d + # Bundle: uma-operator.v3.0.0 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:35b076ab107dd19e7c9e1bd3cd237f66448ebef8fb63d50331d791ba80850bc8 +vprotect-operator: + # Bundle: vprotect-operator.v0.0.1 + - registry.connect.redhat.com/storware/vprotect-operator-bundle@sha256:119f046b27bcf6bc70b1f04d56fe86e8d1c223c8c5ba238f323821a4c14b4bae + # Bundle: vprotect-operator.v0.0.2 + - registry.connect.redhat.com/storware/vprotect-operator-bundle@sha256:3c8b2d67a329f6cd81666303009bb8a43e1970c5703b93d458f500525585c15b +wavefront-operator: + # Bundle: wavefront-operator.v0.1.0 + - registry.connect.redhat.com/wavefronthq/wavefront-operator-bundle@sha256:a1cba5d7638a711eaf477dccff47d7a1bb83490c2bb05371a950b8e593bc59f4 +xcrypt-operator: + # Bundle: zts-xcrypt-operator.v0.0.14 + - registry.connect.redhat.com/zts/xcrypt-operator-1-bundle@sha256:6a9b95934c0b8b3dfa3f71c0052a5e55091c560d8db490bb227f9c4c2219f493 +xspc-operator: + # Bundle: xspc-operator.1.5.0 + - registry.connect.redhat.com/hpestorage/xspc-csi-operator-bundle@sha256:d63dc1c1d2617ab889f43fea4735a5cbe59218d94f5a4138de2b31dd1225ed3a +yugabyte-operator: + # Bundle: yugabyte-operator.v0.9.0 + - registry.connect.redhat.com/yugabytedb/yugabyte-operator-bundle@sha256:75af634b49ff92fa9cad7a20a9d6d86689624b15bed4c84889b677c288b8c036 +zabbix-operator-certified: + # Bundle: zabbix-operator-certified.v0.0.1 + - registry.connect.redhat.com/zabbix/zabbixoperator-certified-bundle@sha256:7d7874dc07cdf9fa61a6377e87e836e63629e404415fd8bc98ce3fe88d3932ca + # Bundle: zabbix-operator-certified.v0.0.2 + - registry.connect.redhat.com/zabbix/zabbixoperator-certified-bundle@sha256:236d7cc772634f20540dc153f9a7fc66357d7d4852962c5c7b5daff61c99e5c8 +zoperator: + # Bundle: zoperator.v0.3.6 + - registry.connect.redhat.com/zadara/zadara-operator-bundle@sha256:a7dc6b758b849f4eab38f38b5bb0c99e951d1ed5c59143337e6c5efb5973f321 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml new file mode 100644 index 00000000..f3e7003e --- /dev/null +++ b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml @@ -0,0 +1,580 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: registry.redhat.io/redhat/redhat-marketplace-index:v4.9 +# - Image ID: sha256:2469558a82f56cd0853578d0d8ff3f15bdcae83eabf3df6630080c3745a098ec +# - Image Created at: 2021-08-18T22:00:24.074412133Z +# - From JSON report generated at: 2021-08-22 +############################################## +aci-containers-operator: + # Bundle: aci-containers-operator.v1.0.0 + - registry.connect.redhat.com/noiro/aci-operator-bundle@sha256:549919846771eb304af285fa10885ff8149abd61b7a65f09a9732442cfbdb475 +akka-cluster-operator-certified-rhmp: + # Bundle: akka-cluster-operator-certified.v1.0.0 + - registry.connect.redhat.com/lightbend/akka-cluster-operator-certified-bundle@sha256:4ef5e0fb08587fc546306e613a60348e89c10ec0519f67051b296942bacf2190 +anaconda-team-edition-rhmp: + # Bundle: anaconda-team-edition.v6.1.3 + - registry.connect.redhat.com/anaconda/anaconda-team-edition-bundle@sha256:ed95914b8fddf4d8d1727d2347dbc4bb85e9bdb5b89a36f612e1887e21b84881 +appdynamics-operator-rhmp: + # Bundle: appdynamics-operator.v0.6.3 + - registry.connect.redhat.com/appdynamics/cluster-agent-operator-bundle@sha256:75e966f979efded88620dce2f1ed53a93521279ef9a895c4892d98e09de2d13d +appranix-cps-rhmp: + # Bundle: appranix-operator.v2.5.0 + - registry.connect.redhat.com/appranix/apx-operator-bundle@sha256:6c40911a1fd9d01c7840e76bc56ae07fc224dae846810ff3d7a7ae771d35f0fe + # Bundle: appranix.v2.3.0 + - registry.connect.redhat.com/appranix/apx-operator-bundle@sha256:e01fe013a6f19994a954cf82d0adfbf9afbcd5f8e2cf92b752f75960d83d7fe7 +aqua-operator-certified-rhmp: + # Bundle: aqua-operator.v1.0.4 + - registry.connect.redhat.com/aquasec/aquasec-operator-bundle@sha256:b8794e097cd19ded79be0980ac544185dd04e996c76c74b98f420520936648fb + # Bundle: aqua-operator.v5.0.0 + - registry.connect.redhat.com/aquasec/aquasec-operator-bundle@sha256:73cabcf743a1b1c0e9fa9718d18db904e25a5f2a9cabd046969204a499d38dfd +armory-operator-rhmp: + # Bundle: armory-operator.v1.2.0-ubi + - registry.connect.redhat.com/armory/armory-operator-bundle@sha256:8fd98e0fd1d10c86d4a8b89a9e09f656413ec347841c814ec63f71dc8f9cfb16 +as400rpc-operator-rhmp: + # Bundle: as400rpc-operator.v0.0.1 + - registry.connect.redhat.com/openlegacy-corp/as400-nocode@sha256:14055d3cc935e5c6d62f7aec2d3b0c80b7d8283236b7e76fbe6d6d58c4022343 +atomicorp-helm-operator-certified-rhmp: + # Bundle: atomicorp-helm-operator.v0.0.1 + - registry.connect.redhat.com/atomicorp/atomicorp-aeo-hub-bundle@sha256:beadae4884bddbd4eb908db6022f2bebb50ca54e01b86f7a783f95871d239174 +aws-event-sources-operator-certified-rhmp: + # Bundle: aws-sources-operator.v0.2.0 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:5ebc6f815a848d16788074c9c3110a4b40d95d8f28964d1107ac05461eb458bd + # Bundle: aws-sources-operator.v0.2.1 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:88dd6c3cb7998a62897eb96b9da344635ded88512102d78d65548621412325c7 + # Bundle: aws-sources-operator.v0.2.2 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:1c79978fb89b166f0fffdb47345850ae0878fed0c63ab715f4b8aa57880685ef + # Bundle: aws-sources-operator.v0.3.0 + - registry.connect.redhat.com/triggermesh/aws-event-sources-operator-bundle@sha256:7347f2f53219133ff9fb5d6b957832839dffc66c2c7c160d03ac3f72c6fa200b +can-operator-rhmp: + # Bundle: can-operator.v0.0.6 + - registry.connect.redhat.com/can-avanseus/can@sha256:db68cabe9e2bc567caa132d92df6270b2bbfbcdfa3c2663a6857d93e5d0062a2 +cass-operator-rhmp: + # Bundle: cass-operator.v1.2.0 + - quay.io/jmanning/cass-operator-bundle@sha256:e2172812a42b91900ed8731b44267955ace9c96bedcfeb7b42eaaa581c69e91c + # Bundle: cass-operator.v1.3.0 + - registry.connect.redhat.com/datastax/cass-operator-bundle@sha256:129113cf929473a227a0cb45883f98e280c7e54511c4e1054a3c5e05dbbe7284 + # Bundle: cass-operator.v1.4.0 + - registry.connect.redhat.com/datastax/cass-operator-bundle@sha256:b7875755e1bedfd7df7ff6ee3f4196750bccc883c300825a863b378104fe427d + # Bundle: cass-operator.v1.4.1 + - registry.connect.redhat.com/datastax/cass-operator-bundle@sha256:6e3f86a8ad514421931b30617f79674642eda15e3a834581cbbb035f9973ff8e + # Bundle: cass-operator.v1.5.0 + - registry.connect.redhat.com/datastax/cass-operator-bundle@sha256:5ea9fe3f24ea742f200cc44230f7035991716c0830c3aa702b14360f8cc8a324 +cert-manager-operator-rhmp: + # Bundle: cert-manager-operator.v0.15.2 + - registry.connect.redhat.com/jetstack/cert-manager-operator-bundle@sha256:c8f3420846a3ed504c93d4e09a74e09a527b6214659ab9b36f53a2882981de13 + # Bundle: cert-manager-operator.v0.15.3 + - registry.connect.redhat.com/jetstack/cert-manager-operator-bundle@sha256:2194ba250109b01c64f1068f74f0af16f6b2533cbb4eaf0ba654511b47064974 + # Bundle: cert-manager-operator.v1.1.0 + - registry.connect.redhat.com/jetstack/cert-manager-operator-bundle@sha256:7b9ae4acc466f7e84f676ab740885eaadb9200e00d3feb07c1ac4a0c0dd4b49f +cic-operator-with-crds-rhmp: + # Bundle: citrix-api-gateway-operator.v0.0.1 + - registry.connect.redhat.com/citrix/citrix-api-gateway-bundle@sha256:ec6b88f4afb10169d46a2d0744caffe306ace6cf4a15e011014e54c7a938fecf +citrix-cpx-with-ingress-controller-operator-rhmp: + # Bundle: citrix-cpx-with-ingress-controller-operator.v1.10.2 + - registry.connect.redhat.com/citrix/citrix-k8s-cpx-ingress-bundle@sha256:487629058ac5c506565f687d037eea3a03ed0a0ee2adbefd7920ef1d25e8e38c +citrix-ingress-controller-operator-rhmp: + # Bundle: citrix-ingress-controller-operator.v1.10.2 + - registry.connect.redhat.com/citrix/citrix-k8s-ingress-bundle@sha256:959d6fe398e7099b7a159e4a5bee3e431d2794461af5e1aa07d279bd234d4077 +cloudhedge-rhmp: + # Bundle: cloudhedge.v1.0.3 + - registry.connect.redhat.com/cloudhedge/cloudhegde-operator-bundle@sha256:54e9b546536fe7b401f7b18c6736eab48afb6abd6d207087fe29846288353f35 + # Bundle: cloudhedge.v1.0.4 + - registry.connect.redhat.com/cloudhedge/cloudhegde-operator-bundle@sha256:e3f5bd9dbc4cdc5fce0534a5847f1009fbc0af7c4b2099e918906d51fdcf3f16 + # Bundle: cloudhedge.v1.0.6 + - registry.connect.redhat.com/cloudhedge/cloudhegde-operator-bundle@sha256:70beef87adb72bbfb2f4f2ec8c1878f95cb00fc170af34b7177127ea16a9abf7 +cnvrg-operator-marketplace-rhmp: + # Bundle: cnvrg-operator.v0.352.0 + - registry.connect.redhat.com/cnvrg-core/cnvrgio-operator-bundle@sha256:71e7ef73a990106c5db522ae672c1f31086a714b231d9b0fdd9a0c54c63fd123 +cortex-certifai-operator-rhmp: + # Bundle: cortex-certifai-operator.v1.3.10 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:91f24b6eb9742e9462d796dbd85c5196a91e8163966e71134db5c990a0f6f0f0 + # Bundle: cortex-certifai-operator.v1.3.11-rc.4 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:1c396760307a56fec488ffc38dd1b41d179d31019a0ddf2c34f98be59850767a + # Bundle: cortex-certifai-operator.v1.3.2 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:df0a002e39ef475947b08906bff08cc7f5bbe98f22cd2a51165465181d3f3573 + # Bundle: cortex-certifai-operator.v1.3.3 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:8356b8754eae6b2446f629abe75a130196627af2b75a048c0f83f9bafcd37cec + # Bundle: cortex-certifai-operator.v1.3.4 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:af2310f73c236e88e9b8f00436ac2e620275479e867b2cb6ea9a66916a4f6bbe + # Bundle: cortex-certifai-operator.v1.3.9 + - registry.connect.redhat.com/c12e/cortex-certifai-operator-bundle@sha256:d7366565963c0d784259268ad28e4a5915988a2af0f6e1cab4100f10d171a1f7 +cortex-fabric-operator-rhmp: + # Bundle: cortex-fabric-operator.v0.0.1 + - registry.connect.redhat.com/c12e/cortex-fabric-operator-bundle@sha256:a92d09e5d712ac770dcab1786ab1021ac2d1ef89c5128de3e731d3fb9579d897 + # Bundle: cortex-fabric-operator.v1.0.0 + - registry.connect.redhat.com/c12e/cortex-fabric-operator-bundle@sha256:104b567449be5dc297240c13cc47a1d9de5a8474327164bddeee936fe669e156 +cortex-healthcare-hub-operator-rhmp: + # Bundle: cortex-healthcare-hub-operator.v0.0.24 + - registry.connect.redhat.com/c12e/cortex-healthcare-hub-operator-bundle@sha256:b3c686c4564eea007e743c76a41a6a42cd147bcbcaa617c44486c50dc14fa404 + # Bundle: cortex-healthcare-hub-operator.v0.0.25 + - registry.connect.redhat.com/c12e/cortex-healthcare-hub-operator-bundle@sha256:9be36e8bb1fa1ab250e4a03bd7ae5280c3e84983ab0de6ada5d452cecc76d5a4 +cortex-hub-operator-rhmp: + # Bundle: cortex-hub-operator.v0.0.24 + - registry.connect.redhat.com/c12e/cortex-hub-operator-bundle@sha256:9256bb28279d81c81233ee7168a031ae5aeacfa136a9695d6c2ffde5b2ac2a25 + # Bundle: cortex-hub-operator.v0.0.25 + - registry.connect.redhat.com/c12e/cortex-hub-operator-bundle@sha256:787216160a1bee0dab645cbfe504a26bdbfe5c9a17085b4ebef8d4b07d053ae7 +couchbase-enterprise-certified-rhmp: + # Bundle: couchbase-operator.v1.2.1 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:e97934cd2d4218d63105de60bcc8872e3d5aefefe81536d815e29463b2b2dc50 + # Bundle: couchbase-operator.v1.2.2 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:6a5bda304437d7f303b09baf5f489654ca64b5ecbdc7c412798689c6392adcb6 + # Bundle: couchbase-operator.v2.0.0 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:0778f04a4ff5fdbbcd57abf6ad06f1f9081281873dd927e48ff4be288588135b + # Bundle: couchbase-operator.v2.0.1 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:246ebf83967674dcdf0abb1553544690564927ea698dbf1928f3097f388ad677 + # Bundle: couchbase-operator.v2.0.2 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:27f2297c5bf84bf8c28dd67bf806436992400763ada87263ebf90abe6c3cb692 + # Bundle: couchbase-operator.v2.1.0 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:7d00537b2505fdb5418ad7a279451d5953f0b12b0223ac328ba885be73cbdbed + # Bundle: couchbase-operator.v2.2.0-1 + - registry.connect.redhat.com/couchbase/operator-bundle@sha256:1d1175fec7de51a54337bcc2905556d7f3dbad4d260eb5efbd22af9ea2214696 +cpx-cic-operator-rhmp: + # Bundle: cpx-cic-operator.v130.36.29 + - registry.connect.redhat.com/citrix/citrix-k8s-cpx-ingress-bundle@sha256:e3f42b2e58caa682ba0accaa6cfec13e2c17bd467ba85e6842bf956367bc4c27 + # Bundle: cpx-cic-operator.v130.47.103 + - registry.connect.redhat.com/citrix/citrix-k8s-cpx-ingress-bundle@sha256:6060cdf30c47abf76c793c0e901abe552fd085605fa2de8fa514d848a05a41ce +crunchy-postgres-operator-rhmp: + # Bundle: postgresoperator.v4.5.0 + - registry.connect.redhat.com/crunchydata/postgres-operator-bundle@sha256:7a9ec17acf42bce9be9eb5bb119a47f7a2a9a91b908a20da92071a2a465bc95c + # Bundle: postgresoperator.v4.6.2 + - registry.connect.redhat.com/crunchydata/postgres-operator-bundle@sha256:149424a3786edb6924bf274d4d7dcb9837252ddbd6b5dbd345d3e6602bd1f838 +cyberarmor-operator-certified-rhmp: + # Bundle: cyberarmor-operator.0.0.1 + - registry.connect.redhat.com/cyber-armor/ca-operator-bundle@sha256:4494956d8d2826848e208021a684417463195e1632c83fb41775f3dec37f7762 +data-explorer-operator-certified-rhmp: + # Bundle: data-explorer-operator.v0.0.1 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:d87a0b3c59e514ed4195faa6bcdacc709a39cc9b36692462e1698f83f8e31286 + # Bundle: data-explorer-operator.v0.0.10 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:6db0d054c9625352bbf2e2a8f3861e3f1769d3d2d8142b29c70138684fe2cbfb + # Bundle: data-explorer-operator.v0.0.2 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:df358b27fafd8d9abedbe8b6ce7e956ff09dcc8ceff5da9b1c2bba1c942ca322 + # Bundle: data-explorer-operator.v0.0.3 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:db9849bd252c699d0344cb9fd8910318bce786c5c7a99d33db25de4be580eab0 + # Bundle: data-explorer-operator.v0.0.4 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:48829811e77a3398f1cb4d4e1786ec0e67729a0cea6c5a22aad65077ba1895fb + # Bundle: data-explorer-operator.v0.0.5 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:568f86636ac7bc0dd007e2b094e5dbd29246bf659e240068252c7d14812ee74c + # Bundle: data-explorer-operator.v0.0.6 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:b0b91afba4f066db637acd9ce8771fb674a63d7346ed7ae4f8324fc6966caf7e + # Bundle: data-explorer-operator.v0.0.7 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:26efaf0b9d831cb5882fa499d5cb9b9a203891f603c0e29fed393fa5a5669a34 + # Bundle: data-explorer-operator.v0.0.8 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:56a5e95fac6155acbe32f28647419752382ca4260ea84a446a5c7050dc443217 + # Bundle: data-explorer-operator.v0.0.9 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:b0e89ef509d226a4a5c9cfe70f15f5ef9c7fe393f076d044e05cf25a0adb7092 + # Bundle: data-explorer-operator.v0.1.1 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:0d0b616ae6c757dfbb9fdf2f5bf59249d53c51dae8636fffe2b416273ccd10f1 + # Bundle: data-explorer-operator.v0.1.3 + - registry.connect.redhat.com/ibm-edge/data-explorer-operator-bundle@sha256:b4444ead72ee8a83e9e87dd62e9b7292c839c61bfe3bbe64f37889f8943fc626 +datadog-operator-certified-rhmp: + # Bundle: datadog-operator.v0.3.0 + - registry.connect.redhat.com/datadog/operator-bundle@sha256:42f010a4cf80393150d61763e5c73cabcacbf9fd325512cc0243dfa04c6c05e0 + # Bundle: datadog-operator.v0.4.0 + - registry.connect.redhat.com/datadog/operator-bundle@sha256:ec73bb331e0c60c6077b70bbc9c3cca42f6212ef4191166c1f7ae449aaa6e60a +db2-zos-db-operator-rhmp: + # Bundle: db2-zos-db-operator.v0.0.2 + - registry.connect.redhat.com/openlegacy-corp/db2-zos-db-nocode@sha256:6c6741609b58ab98d7f70ff0f940500cd4329a1ea5e4095390f036d66769c0ba +densify-operator-rhmp: + # Bundle: densify-operator.v0.0.2 + - registry.connect.redhat.com/densify/densify-operator-bundle@sha256:e0e6059285c3c204b154447fc99c0a1495de23c55faf9d223b8f62cbde6495d0 + # Bundle: densify-operator.v1.0.0 + - registry.connect.redhat.com/densify/densify-operator-bundle@sha256:8e14ca70e93bb948c9453b40f10256952f8fe4f4e313c63ae4753c89d21339d0 + # Bundle: densify-operator.v1.0.1 + - registry.connect.redhat.com/densify/densify-operator-bundle@sha256:d20a514a11e3052eae956379a244aee2368ce44b8633b8d6b3adb4ea7bbab045 +eddi-operator-certified-rhmp: + # Bundle: eddi-operator.v1.0.2 + - registry.connect.redhat.com/labsai/eddi-operator-bundle@sha256:0feef0c3cc07a392882c6497123203b4494908d270c5dafba2ae5687001b7e4b +enterprise-operator-rhmp: + # Bundle: enterprise-operator.v0.1.5 + - registry.connect.redhat.com/anchore/anchore-enterprise-bundle@sha256:0994ca771a5b79e95b3134410cce386f9ec2cd1c26f6bd1ad8e9a2a3dd3e46b2 +federatorai-certified-rhmp: + # Bundle: federatorai.v4.6.1-2 + - registry.connect.redhat.com/prophetstor/federatorai-operator-bundle@sha256:ea149df59fd7d9d70399dfac160e0707745714f44c0957ae8dd90b63b7e65b7b +fep-ansible-operator: + # Bundle: fujitsu-enterprise-operator.v2.0.0 + - registry.connect.redhat.com/fujitsu-postgres/fujitsu-enterprise-postgres-bundle@sha256:adb3e5776fe4376c9a6c0555f3306482f4cecd3b6fa6cf708252309d877477d3 +growth-stack-operator-certified-rhmp: + # Bundle: growth-stack-operator.v1.0.0 + - registry.connect.redhat.com/ibm-edge/growth-stack-operator-bundle@sha256:a5b70279c00b0cf7fd9d455a9c8a9088a3b69d471ae1c2bf5618799b237e04af + # Bundle: growth-stack-operator.v2.0.1 + - registry.connect.redhat.com/ibm-edge/growth-stack-operator-bundle@sha256:9cab7de6777770499ed362f2b94327274c803268babfafe20bb79ffb9095ec78 +hazelcast-enterprise-certified-rhmp: + # Bundle: hazelcast-enterprise-operator.v0.3.1 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:3472aa80d8bbae37b727732409fca5c9bba99efd00d89c974258a58c14eeac71 + # Bundle: hazelcast-enterprise-operator.v0.3.2 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:9451475ea7b077c0a1832bf14bc8e97b879757a589f7035ba283ba408c81114b + # Bundle: hazelcast-enterprise-operator.v0.3.3 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:a1369d7c84c06ed12aeab05cc6fb7563210fe30fdaebabee41a8c308773eb7c2 + # Bundle: hazelcast-enterprise-operator.v0.3.4-1 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:7033be639ddc56da4c0e629f8210f41786f47e8416eb6ae2b3eceb6451a6f98b + # Bundle: hazelcast-enterprise-operator.v0.3.5 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:df5582e6540d7b651988911ac0d78ac7c062a7f61c347f79eef02e83068e1ee8 + # Bundle: hazelcast-enterprise-operator.v0.3.6 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:4494817c1f995a9624b943483b93cc19f53097c4f0b2b47241d4e2dd2aac3dfa + # Bundle: hazelcast-enterprise-operator.v0.3.7 + - registry.connect.redhat.com/hazelcast/hazelcast-enterprise-operator-bundle@sha256:2f89b0c0214c98789913032834212df1d6c1699d1f3e1ef181911c5de129f15c +hazelcast-jet-enterprise-operator-rhmp: + # Bundle: hazelcast-jet-enterprise-operator.v0.1.1 + - registry.connect.redhat.com/hazelcast/hazelcast-jet-enterprise-operator-bundle@sha256:c4761390e98d7017128cd059d81df745a2ace8ab417d5208c94b962f31b3ef7d + # Bundle: hazelcast-jet-enterprise-operator.v0.2.0 + - registry.connect.redhat.com/hazelcast/hazelcast-jet-enterprise-operator-bundle@sha256:cbba8045e7dd3ad1cbe5aef45e9ce9b3162f137ce52f893787832ff535350fd3 +insightedge-enterprise-operator2-rhmp: + # Bundle: insightedge-enterprise-operator.v15.0.1 + - registry.connect.redhat.com/gigaspaces/insightedge-operator-bundle@sha256:e46f02e835c652026831477987a966264e263c61b1613eee3a593cf6dc5c61c4 +instana-agent-rhmp: + # Bundle: instana-agent-operator.v0.2.6 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:447a393df1ed9d8b849e2133e8a1096b95fb0013eed09122e8b309557a3967a7 + # Bundle: instana-agent-operator.v0.2.7 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:ea77186ef92b94bd900a0c86a7bcaf3e051f02ab24163475972f17573cc14ca4 + # Bundle: instana-agent-operator.v0.3.10 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:98710b8f75e0f66f475ea673f0b2209f0be08b9aabafdbb997286bd98f7e6563 + # Bundle: instana-agent-operator.v0.3.4 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:c099e6917b87d252a8cc02925c638a036c3292aa0623b1bfb5a2cbe29d801fa2 + # Bundle: instana-agent-operator.v0.3.6 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:a346f42e5344be4a2ee7b6de50d4bbd323585efea67d96eb10eb4e19df55942d + # Bundle: instana-agent-operator.v0.3.7 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:249a6e941d4d813ace83b602c7999f6a613949371d60cc18729d5c59849aa753 + # Bundle: instana-agent-operator.v0.3.8 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:ef315eeda7261a786c30e4bbe0bfebae9f19f7605df8a3771c86cf0777ecedf4 + # Bundle: instana-agent-operator.v0.3.9 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:54f40e19c8a2a015f9f7d112ed924f7be203aea972d0acffd815f7dbc3e7c374 + # Bundle: instana-agent-operator.v1.0.0 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:14200ca0a7b5f25e1030caa7d47121bef9910c479bf4a5e7e1e4b11a7796630d + # Bundle: instana-agent-operator.v1.0.2 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:498d4aecc16886dd18b92a6e06650049d7fc8f95f30ff0596c02225b8801aa4e + # Bundle: instana-agent-operator.v1.0.4 + - registry.connect.redhat.com/instana/instana-agent-operator-bundle@sha256:ae2cf7c8ed0e220c550053131d491fff9307f28315cd4b0fef9a7e51fd501a1d +ivory-server-app-rhmp: + # Bundle: ivory-server-operator.v1.0.0 + - registry.connect.redhat.com/gtsoftware/ivory-service-architect-operator-bundle@sha256:b1505f2a433e09bf296f9bdf37b61ab676e6386a929834ac8ee53e75a3184e6d +joget-dx-operator-rhmp: + # Bundle: joget-dx-openshift-operator.v0.0.10 + - registry.connect.redhat.com/joget/joget-dx-operator-bundle@sha256:10072f1963511fc3480b04c12bac7fa04e60f187d0168ef27d4fe89a7309f01f + # Bundle: joget-dx-openshift-operator.v0.0.11 + - registry.connect.redhat.com/joget/joget-dx-operator-bundle@sha256:3e725ef2e10bf75bfbd800ebcf85d3c43a379e0ce935e632c314afb2751d0767 + # Bundle: joget-dx-openshift-operator.v0.0.12 + - registry.connect.redhat.com/joget/joget-dx-operator-bundle@sha256:efda7191cd3426cf667c2707e216f8eda3fb02997b50bb2c5c8a1fafeca04757 +joget-openshift-operator-rhmp: + # Bundle: joget-openshift-operator.v0.0.4 + - registry.connect.redhat.com/joget/joget-v6-operator-bundle@sha256:9f4e743b4c9d08cd76d6f7a924e48876e5a1c2ba7f7756f31314a24ff852c1b2 +jtrac-app-operator-rhmp: + # Bundle: jtrac-app-operator.v0.0.1 + - registry.connect.redhat.com/corentrepo/corent-operator-bundle@sha256:a88ff48420eea7c67469311315799ce6a79b551b6efbd06434198ce61ee563f1 +k10-kasten-operator-rhmp: + # Bundle: k10-helm-operator.2.5.18 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:620779476f37f1f63831fbd9039a1df26b07da1d6cb09f3dde6a841420156488 + # Bundle: k10-kasten-operator.3.0.11 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:d542901238306ac430d4dce9922e285af330d857407c4af31b5b3ca2b47784a6 + # Bundle: k10-kasten-operator.3.0.11007 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:dd0f0f80dfd872a221f44600da7cf2cac639498fea4a0a0116ac985e592c62e9 + # Bundle: k10-kasten-operator.4.0.5003 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:0f096d7f63ea40a3ce982d811a5f8d9ac199612b442848a9a8f0f7b789a8e57f + # Bundle: k10-kasten-operator.4.0.6000 + - registry.connect.redhat.com/kasten/kasten-bundle@sha256:753bed324354d223f854c729f7fa26c107e42bf266c4ac4732909e944ec44658 +k8s-triliovault-rhmp: + # Bundle: k8s-triliovault-cluster.v2.0.0 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:54619e625dc53176963b66e33e860e099be4adb023ce996161e50ce4faface88 + # Bundle: k8s-triliovault-cluster.v2.0.1 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:494fb957448b27396cc70e7ac9e98148943b174bf1cc152f8bbaf28acfa15eac + # Bundle: k8s-triliovault-cluster.v2.0.2 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:08b3016f16f89d8f09fab4f8bf240b4bdac58e79eceddf0d772cd451ba461d1d + # Bundle: k8s-triliovault-cluster.v2.0.3 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:89e86cbbb89684164e7463c660c32099011b063fd53f6056fb0b54543f3fab2a + # Bundle: k8s-triliovault-cluster.v2.0.4 + - registry.connect.redhat.com/trilio/r-3445381-bundle@sha256:f078128aedded01779ef5483114d4ba82f79915bff2c978efe782dd7155a48ba +kong-offline-operator-rhmp: + # Bundle: kong.v0.3.0 + - registry.connect.redhat.com/kong/kong-offline-operator1-bundle@sha256:a504117ceb7370b36fc1695775a6bfb9ed627dfc180d2442c51c403d8a0a700e +kpow-io-certified-rhmp: + # Bundle: kpow-io.v1.0.3 + - registry.connect.redhat.com/operatr-io/kpow-operator-bundle@sha256:e8afa5bf5b62d1e76a1efcf96b592ef2dbc0df43673e2fd7f69df6a64fe72035 +kubemq-operator-marketplace-rhmp: + # Bundle: kubemq-operator.v0.5.2 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:d2feaa44c75dd8c862e2ca52f0c2a85345ec6321978b1133c32daebe5511663b + # Bundle: kubemq-operator.v0.5.3 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:8875db60752ddd2be37b9fb181781272bd0dc439dd63c74140df76a9949a33b8 + # Bundle: kubemq-operator.v1.0.1 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:5ae5c3f11dea5e52ab19d53fe5a12784100ccdb9e07839f863d706e7057eb842 + # Bundle: kubemq-operator.v1.1.0 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:8def8c06b605213a4c49687e891ede2f49bf17781186c67490e25992f1ff1c84 + # Bundle: kubemq-operator.v1.2.6 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:45f447f08d62e29cc42488bb0f88055be1b5904081a0ad3ef17b0a7485a8706c + # Bundle: kubemq-operator.v1.3.5 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:9534bda57852db53694c07daf8ecacc44e7555618972be286d6c12d9e1e57eb0 + # Bundle: kubemq-operator.v1.4.0 + - registry.connect.redhat.com/kubemq/kubemq-operator-bundle@sha256:12ec41e99a0a42d0130d066959e7e2c983db3438e08300030a2fc1b5a04facb3 +kubeplus-rhmp: + # Bundle: kubeplus.v1.0.5 + - registry.connect.redhat.com/cloudark/kubeplus-operator-bundle@sha256:f4d71d49388aefb0a21b444dbf580f6433ea27249cd38e81728f3b8a40e58781 +kubeturbo-certified-rhmp: + # Bundle: kubeturbo-operator.v7.22.6 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:467ff82a04c4c4f5c4e10e14086d83747c003493c1ddf6edc12a7a141955bdd8 + # Bundle: kubeturbo-operator.v7.22.9 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:86005c6a8ba080fedcf69adef73418155183ee27acdec726b2456d5376171d1a + # Bundle: kubeturbo-operator.v8.0.0 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:71430badcc77410bc252401a34274c2e963174d002d4f8d9c7e12f69e1665521 + # Bundle: kubeturbo-operator.v8.0.4 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:a689c3e160f9036a8f538162a88a5e39d3bbebf7a8ea1c610cea01ca35ccbfb2 + # Bundle: kubeturbo-operator.v8.0.6 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:430d069f42446ade130f3b1747922a269da7c0a9801653f1ed2415c4df773924 + # Bundle: kubeturbo-operator.v8.1.2-1 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:fe1bde64a7d5c8060d6d402c79a803a17f6cde6369dc256008cec70434c4d25f + # Bundle: kubeturbo-operator.v8.1.6 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:b445577cbe09866b0cdf0cb15651f4ba8232551b0c463ee413c4442146d02eac + # Bundle: kubeturbo-operator.v8.2.2 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:63907204f6e097c0f1d616b558b55187f9193ebfd6657f7538cc5a8180044ceb + # Bundle: kubeturbo-operator.v8.2.5 + - registry.connect.redhat.com/turbonomic/kubeturbo-operator-bundle@sha256:c44bbe314d84a443600add8f93de2c7882d6f852736ec9427c5455cdb21f69e0 +memql-certified-rhmp: + # Bundle: memsql-operator.v0.0.2 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:06ff2bc68e6b482f29b121cb711bd05245618b4857852441ed585badedf11de6 + # Bundle: memsql-operator.v0.0.3 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:c3f82a2252ee332c332fd644ddad573a27e1aa9afe11ab0a2c9bfd5c30b9af7e + # Bundle: memsql-operator.v1.0.0 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:036c4f3c7b8f97a07abee38b4430dddae508a2eb815ab5a9bb3324011e2f0cf2 + # Bundle: memsql-operator.v1.1.0 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:3099cbe4ee6de1d8f924fdd6dc0226864429f8698e4f62d412df421f548e3659 + # Bundle: memsql-operator.v1.1.1 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:6825c4d64cfc5a080606afd2d624fd6194cdaff2c6cbaf7804820842cad6638f + # Bundle: memsql-operator.v1.2.1 + - registry.connect.redhat.com/memsql/operator-bundle@sha256:91cb238016e03a6021e3df10025f21036df6d046d3ed4ed1bc6d9b1f75dfe89b +mf-cics-tg-operator-rhmp: + # Bundle: mf-cics-tg-operator.v0.0.1 + - registry.connect.redhat.com/openlegacy-corp/mf-cics-tg-nocode@sha256:e0e4027b7be471946e7739ef21bdda0ef0523b45ea8ad1df921050e27c5e46c8 +mf-cics-ts-operator-rhmp: + # Bundle: mf-cics-ts-operator.v0.0.1 + - registry.connect.redhat.com/openlegacy-corp/mf-cics-ts-nocode@sha256:3f17fbac56bc0cb38bb6c24387b95d5aa19a97b6d58d001b84b9f738609cd707 +mongodb-enterprise-advanced-ibm-rhmp: + # Bundle: mongodb-enterprise-advanced-ibm.v1.6.3 + - registry.connect.redhat.com/rh-marketplace/mongodb-enterprise-advanced-ibm-bundle@sha256:fd2f744f8ccb0ce63df6ddaf1baf942166a899ecf05497789d8ab218212b88a3 +mongodb-enterprise-rhmp: + # Bundle: mongodb-enterprise.v0.3.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:7221619581d36407003f0cb88e35c3660e182ea17a76701f07777baee3f9357a + # Bundle: mongodb-enterprise.v0.9.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:520b16fcc7a822887dcdbf9455e8d296201ae543c62777b60b3a126ba2a5e4ef + # Bundle: mongodb-enterprise.v1.1.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:586f13ea52890aba71fcdde448a629f04113ebb81432e9e323aa3319d05e8539 + # Bundle: mongodb-enterprise.v1.10.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:1b60de0eee5e0333a2078c5a622f73635855c086f9311a0a46ee340845fc8ca3 + # Bundle: mongodb-enterprise.v1.2.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:268695fe2e66e1ec6d175c5802e6862588ed0d626da05e7ffaaad6bb9087c83b + # Bundle: mongodb-enterprise.v1.2.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:b9cdc4e2deb9a9834fb2a7245db4ed076a49b0140e0187473693f84375a42062 + # Bundle: mongodb-enterprise.v1.2.3 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:85688d08741c2fb3f9803e94d8d606eeec1d462c3a86ba5d9b816d2bcc99ed81 + # Bundle: mongodb-enterprise.v1.2.4 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:57def5b8c91001c6db75d0872835e49dd66e2da7de4f99e152c7274559fde808 + # Bundle: mongodb-enterprise.v1.3.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:4445ac1fe28cf97dd91d6d67f4a9c90ebe6a21419e23f0d53cb7aef6754dc411 + # Bundle: mongodb-enterprise.v1.3.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:fdfe7205bde6fb43022f655eeac83647f648d70c5634b401ee07db78c83dfcc0 + # Bundle: mongodb-enterprise.v1.4.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:1c0570ce77391979496b8249579800e71f5d8f554577ad0f07a3606f24f4f1bd + # Bundle: mongodb-enterprise.v1.4.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:6a6008a93a429d5db749ee922c38ca1628d25f779ae24fe705d0e92c8a2e4002 + # Bundle: mongodb-enterprise.v1.4.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:fa46ac16f8df73882c27d2b90c3d66e924ff25a994bf508c0ab810b7d45b081e + # Bundle: mongodb-enterprise.v1.4.3 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:d60d03a440ea1bdbfeb95e19092a7e2f8d0a66a3c7318a1e52935ffb68e44fc0 + # Bundle: mongodb-enterprise.v1.4.4 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:8db984969f0f831744fed4d319d2b17cf9094e54bde63d50804630817f85ffba + # Bundle: mongodb-enterprise.v1.4.5 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:4bef3e43ccfd8ed6880bada00e75a77ccc4f49a1c0f993b85fc009c7164f3a36 + # Bundle: mongodb-enterprise.v1.5.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:5b64e7a050f8ff4f2cdc7cf21d221e946c95f3156b61a7552f28d4f45aef5f09 + # Bundle: mongodb-enterprise.v1.5.2 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:283a575b3c5af5c3a764473581972274179e847350cd255457a69719fcffb261 + # Bundle: mongodb-enterprise.v1.5.3 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:6cb1e80ff47a341733d865067712e1452adbe49d7fe9638ebc3aef31c90916d5 + # Bundle: mongodb-enterprise.v1.5.4 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:232d1f2b930473bc430e7947a26cd4ba238d298ef98302940309aa051e7efcf3 + # Bundle: mongodb-enterprise.v1.5.5 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:06cffd80b8748502b603948bacf87f743a9857e550d54b9c1cc6453924e3cb22 + # Bundle: mongodb-enterprise.v1.6.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:b32d48ce66a321d81c34fd5eb83e42c18adb03304d34934e6cd2e2472996624b + # Bundle: mongodb-enterprise.v1.6.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:9dfb145516e7670535152cff4442bb4cc29798126a456331d963650f8aef4728 + # Bundle: mongodb-enterprise.v1.7.0 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:2c371b2bb58ffc3ef778a1d1a6f44da1829ea3d8d8dd23fe13bc5003230dcbb0 + # Bundle: mongodb-enterprise.v1.7.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:a0b5419a5fcece7f39ef67db344e62cff9692b19adea966f140a8ee41f5f55a1 + # Bundle: mongodb-enterprise.v1.9.1 + - registry.connect.redhat.com/mongodb/enterprise-operator-bundle@sha256:6125848cf2d9db3bc9a69657f928c6f577f6400d82e7708386639ab0b2ae0e9b +neuvector-certified-operator-rhmp: + # Bundle: neuvector-operator.v0.0.1 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:41f97fb2d527137d1099e9bea4f010a6da71bbe7dd13cb4af60627a1b7b8bbd7 + # Bundle: neuvector-operator.v0.9.0 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:db8397120b38a645cdeee793d9011e81e1ae4c24acd29970831a83be8993f903 + # Bundle: neuvector-operator.v1.0.0 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:b7f38b794bbe67bee955bd14ffc7a1e8ec0b6423386ac44a6bf3d75fb54bce18 + # Bundle: neuvector-operator.v1.0.1 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:e6e00e73a6ef06cc4bed7151159a3047ab4100f9efea5f14d3e45cb68f6b2ba2 + # Bundle: neuvector-operator.v1.2.0 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:6a31cce65c68ef289d4c7e4159088c58ca5d32adc16a73c17b0af6b63e1be29c + # Bundle: neuvector-operator.v1.2.1 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:5c5de4c26673f97083a014eebe7b8cc0ec243827834c8db04cf3cd9fcdcd0226 + # Bundle: neuvector-operator.v1.2.2 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:857dfaba9c41be0df203582f3894a181d8719308ed341fd82d7e257bbdefb1a7 + # Bundle: neuvector-operator.v1.2.3 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:91acd88e80d10932abd9cd2ff3250e9656fad4707265fab7bbce5a39816a1136 + # Bundle: neuvector-operator.v1.2.6 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:776d6fa3d71137d66e022b32970e128b72f55255ccb7e92cd8b70bb3f95df6e6 + # Bundle: neuvector-operator.v1.2.7 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:25d9ddc66204636ab061b366822b207179747438968cb459e113fda7d2fdc275 + # Bundle: neuvector-operator.v1.2.8 + - registry.connect.redhat.com/neuvector/neuvector-operator-bundle@sha256:a60074012c755a5eada9da61e1ca2eaca88ecee376df968beb53bebe625cd931 +node-red-operator-rhm-certified-rhmp: + # Bundle: node-red-operator.v1.0.0 + - registry.connect.redhat.com/ibm-edge/node-red-operator-bundle-rhm@sha256:2b1743d3225b3d3d1a743aac60543b2a851b13f4162490f10b48bb131ca672c1 +oneagent-certified-rhmp: + # Bundle: dynatrace-monitoring.v0.10.1 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:78772fd1f4da12c95ed6fc56e4d3576ed99c4ce350198fb9c08afffec8e34411 + # Bundle: dynatrace-monitoring.v0.8.2 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:8b4ca08b1c39e15b8bb69ceb1db532d60c333dd7b5e8595d9ba21c7f62f88de1 + # Bundle: dynatrace-monitoring.v0.9.0 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:8878d16acf641bc5c9e5d504667f53cc5cb7a471c6be0ee9985b125fa172e0fd + # Bundle: dynatrace-monitoring.v0.9.1 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:d4bdf0e671f2073f78a8f80b0926a97138aa91bfd33f759ba2d03b1a9b4ac970 + # Bundle: dynatrace-monitoring.v0.9.2 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:beb52a5f4f95c983fd71b36fd53f7a72440f2c10bd31a337b02db05dcee46670 + # Bundle: dynatrace-monitoring.v0.9.4 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:d92a7909eab216e841cfa17f2cdad47fd48e38e4502ddf4655ed38548bf2d0be + # Bundle: dynatrace-monitoring.v0.9.5 + - registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator-bundle@sha256:5b24dc8df8f9a1f37352e56204123f83c31fa78b3577e77f63f92fb0554ac710 +open-enterprise-spinnaker-rhmp: + # Bundle: open-enterprise-spinnaker.v1.21.2 + - registry.connect.redhat.com/opsmx/spinnaker-operator-bundle@sha256:e8bf5a690bc6f7b0e23caeb4e05ec08643a0564f070a08417a98e731d638b701 +openunison-ocp-certified-rhmp: + # Bundle: openunison.1.0.0 + - registry.connect.redhat.com/tremolosecurity/openunison-operator-bundle@sha256:549c1e5ba6bdc588b004237663791a24316fa744bd2b24bfe5cb337f6d4fe420 +orca-rhmp: + # Bundle: orca-operator.v1.0.193 + - registry.connect.redhat.com/tufin/orca-operator-bundle@sha256:8f7bdd6680e1271b56acd492a9978d8dabbd6c1919e8e12a90d31b566aae9cc0 + # Bundle: orca-operator.v1.0.195 + - registry.connect.redhat.com/tufin/orca-operator-bundle@sha256:88d96662094b6b2fff361f20c5c67202950a83373516fed02c135b5809e8aad6 + # Bundle: orca-operator.v1.0.197 + - registry.connect.redhat.com/tufin/orca-operator-bundle@sha256:5b8a92b7f599c882f789905aec68dc113f5aa783e81a9529a78a0b46e2f20798 +perceptilabs-operator-package-rhmp: + # Bundle: perceptilabs-operator.v1.0.16 + - registry.connect.redhat.com/perceptilabs/perceptilabs-operator-bundle@sha256:1bdf00c6d32dff6ccc3d31b12974096b9973394c45331d54dc5a22c16b9988ec + # Bundle: perceptilabs-operator.v1.0.20 + - registry.connect.redhat.com/perceptilabs/perceptilabs-operator-bundle@sha256:abec46ebdef0a41bf2b631c797e7c5703c053de5cf640010f38571254b076e72 + # Bundle: perceptilabs-operator.v1.0.21 + - registry.connect.redhat.com/perceptilabs/perceptilabs-operator-bundle@sha256:91438f4135e39e395fb859444e032df8ca0be391201789095b1585a260cd2a47 +percona-server-mongodb-operator-certified-rhmp: + # Bundle: percona-server-mongodb-operator.v1.8.0 + - registry.connect.redhat.com/percona/percona-server-mongodb-operator-bundle@sha256:9926c4103d000287f3aef47ae8901e3fb9f0879d4fb1ee0a3f6c6d00a4fbb194 +percona-xtradb-cluster-operator-certified-rhmp: + # Bundle: percona-xtradb-cluster-operator.v1.8.0 + - registry.connect.redhat.com/percona/percona-xtradb-cluster-operator-bundle@sha256:b39a28538adef073bfc4f273ee7cfea5ee80d6ad24a9256a813db71088181a83 +portshift-controller-operator-rhmp: + # Bundle: portshift-operator.v0.1.5 + - registry.connect.redhat.com/portshift/operator-bundle@sha256:fb0f634cf5b05aaa403b41d9339c7816e40cb765c0809a8b76a314b63bdfd863 + # Bundle: portshift-operator.v0.1.6 + - registry.connect.redhat.com/portshift/operator-bundle@sha256:ad8b8291c55db8b427ada7c30ce291be755c98bc7121936f2f21522941c8f5b7 +presto-operator-rhmp: + # Bundle: starburst-presto-helm-operator.v350.1.1-ubi + - registry.connect.redhat.com/starburst/presto-operator-bundle@sha256:399833ca7b69c04a6d092af1daf83dfd78c82b4204caea030ef639b5c8d70387 +rapidbiz-operator-certified-rhmp: + # Bundle: rapidbiz-operator.v0.0.1 + - registry.connect.redhat.com/vacava/rapidbiz-operator-bundle@sha256:ebf79c3c270a036d6d6813b043fdfb14c21b3197294bf44cb7d73515eff246a8 +redis-enterprise-operator-cert-rhmp: + # Bundle: redis-enterprise-operator-preview.v6.0.20-4 + - registry.connect.redhat.com/redislabs/redis-enterprise-operator-bundle@sha256:d009d01fc302b51d078e80b5b3ea14b7ef3e29e3276c7c4c514e950d6b3bb118 +robin-storage-enterprise-rhmp: + # Bundle: robin-storage-enterprise.v5.3.4-156-3 + - registry.connect.redhat.com/robinio/robin-storage-enterprise@sha256:c3428b32b6c579e719433a5553aca4ead49f690b249e44b0922526ed95c3619c +robin-storage-express-rhmp: + # Bundle: robin-storage-express.v5.3.4-156-3 + - registry.connect.redhat.com/robinio/robin-storage-express@sha256:1836775d6b556df31c5f9a7edd98dfbe7e0eb95fb76989fcd5ac3a3ac9e81527 +robin-storage-trial-rhmp: + # Bundle: robin-storage-trial.v5.3.4-156-3 + - registry.connect.redhat.com/robinio/robin-storage-trial@sha256:696ce0c1b532e7bdfe9c5f65e08a4209b83d1a684576e528f618a88027ab5e5c +rocketchat-operator-certified: + # Bundle: rocketchat-operator.v0.1.0 + - registry.connect.redhat.com/rocketchat/rocketchat-operator-bundle@sha256:939fd27346e704244fda2c6666cda4e6f164d541e89c0000f4a46d91296831c1 +runtime-component-operator-certified-rhmp: + # Bundle: runtime-component-operator.v0.7.0 + - registry.connect.redhat.com/ibm/runtime-component-operator-bundle@sha256:b5f7aef23506d9d4c1308a968f430e5a75d9d6ef74f88e5158447779dad11c62 +seldon-deploy-operator-rhmp: + # Bundle: seldon-deploy-operator.v0.7.0 + - registry.connect.redhat.com/seldonio/seldon-deploy-operator-bundle@sha256:ec4e1dd7d2049b5378e41987cec3fa36470aa20c89a98a96cb0ed433437afe34 + # Bundle: seldon-deploy-operator.v1.0.0 + - registry.connect.redhat.com/seldonio/seldon-deploy-operator-bundle@sha256:9069b5d594d361e4ba30cba6581233a6d6208cb8f20f3f5a935777ca75ec4f14 + # Bundle: seldon-deploy-operator.v1.2.0 + - registry.connect.redhat.com/seldonio/seldon-deploy-operator-bundle@sha256:0e9c0766cc1f0cf8ffe59b235994ad05d97123a3d6f7110c03ebe611d5f9fc02 + # Bundle: seldon-deploy-operator.v1.2.1 + - registry.connect.redhat.com/seldonio/seldon-deploy-operator-bundle@sha256:f3098b04f92d7272de172e91315b79a1b32eeff60227a3c70a2f62361be6eee8 +seldon-operator-certified-rhmp: + # Bundle: seldon-operator.v1.1.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:f7d78ccf19df1ebc0e330cdc2afcd509abbabb8f7d24afd8c70202715b98e83a + # Bundle: seldon-operator.v1.2.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:de56c59777ab3702747c6f7e28b9baae55582b6b7504babe2ef8a325ca5a5712 + # Bundle: seldon-operator.v1.2.1 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:6d291fddcc21769e3cf80f36697cef940838aef376f4651e6ffbf1e263259235 + # Bundle: seldon-operator.v1.2.2 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:c4cfbd076e7ccba3f05d81f11e9b8c6cba1d43f7f4c2f7dc3f59cb90b679de5b + # Bundle: seldon-operator.v1.5.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:ef3481c789d05ac40271596cf44f0a0879f572f1264317cab34b79ea28db0b1d + # Bundle: seldon-operator.v1.6.0 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:ad8688d541e264e0bdadd1976b43302058c9f9493d29bbb8a8a1f472d79a1788 + # Bundle: seldonoperator.v0.1.5 + - registry.connect.redhat.com/seldonio/seldon-core-operator-bundle@sha256:9cf3f81cea6869f8b366014cf9d8e3e897a0ba306fd2b900b2cc012931459302 +snyk-operator-marketplace-rhmp: + # Bundle: snyk-operator-marketplace.v1.41.0 + - registry.connect.redhat.com/snyk/kubernetes-operator-bundle@sha256:682a11442f5b8175a786b5bdad6c4c92a4bcb1a60c211bb4fe52f86ca1b314ce +starburst-enterprise-helm-operator-rhmp: + # Bundle: starburst-enterprise-helm-operator.v354.0.0-ubi + - registry.connect.redhat.com/starburst/starburst-enterprise-helm-operator-bundle@sha256:9249200b051102eacfd1210b6a4f140315b9957d41516669e9b15ee8d07a3340 +stonebranch-universalagent-operator-certified-rhmp: + # Bundle: universalagent-operator.v1.0.0 + - registry.connect.redhat.com/stonebranch/stonebranch-operator-bundle@sha256:011ed16ebb3ae906437f00ead58e3569c99da8b450060c0b4e881d37a7fbbd3f + # Bundle: universalagent-operator.v1.1.0 + - registry.connect.redhat.com/stonebranch/stonebranch-operator-bundle@sha256:7417855f48c054c18209d2c5bb0523f275cac032658aadd774b8b255d8f3c814 +sysdig-certified-rhmp: + # Bundle: sysdig-operator.v1.8.3 + - registry.connect.redhat.com/sysdig/sysdig-operator-bundle@sha256:7eeed8224aa8131a420f412f37f31c8f91eca6d1b521dc4ad01f07ea9fa0f8c6 +t8c-certified-rhmp: + # Bundle: t8c-operator.v7.22.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:548e976377c341378bc9e12e18ffe9a261541d632a4033c3bc833067cada416a + # Bundle: t8c-operator.v7.22.9 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:88ce7fcd909da62ac6f54d443680198cebb2fe894c2bc732697d51af7da0930c + # Bundle: t8c-operator.v8.0.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:22fa5ace04bb62edc546bd0d801cb2fbb698a14541397e75b63f1ba9a96da5ba + # Bundle: t8c-operator.v8.1.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:6dc115e9a893aec1e2bfae1f9c82f0048c25ac38c82d7776d52ed99d11ab6d8a + # Bundle: t8c-operator.v8.2.0 + - registry.connect.redhat.com/turbonomic/t8c-operator-bundle@sha256:63e43348dbd6e13829afde529f0a9968eedcb257bad325e026b6b1cd3b2a3855 +timemachine-operator-rhmp: + # Bundle: time-machine-operator4.v0.0.4 + - registry.connect.redhat.com/rhel-timemachine-container/timemachine-operator-bundle@sha256:0368c388941beaa0984e50db6ed38196797ca3fb1396579a53383fe21bb409f6 +traefikee-redhat-certified-rhmp: + # Bundle: traefikee-redhat-certified.v2.0.2 + - registry.connect.redhat.com/containous/traefikee-operator-bundle@sha256:b6b5166f8015a24c9bad0c365c68cce33de5fedc039b041372338d92d340533c +uma-operator-rhmp: + # Bundle: uma-operator.v1.0.0 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:62ce5e21caf8eb3a2fa9ec5aee40c4f618023617ece7cf5d9248c8c830b06380 + # Bundle: uma-operator.v2.0.0 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:11603e69e462d48d2f1fc9ee73084be2888df32939631a923b624d36b33ae265 + # Bundle: uma-operator.v21.4.0-32 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:e4f51a4581b4640e9c16b67fe0c2a24217a1047e2eb17a25cff75d4aafcdcb4a + # Bundle: uma-operator.v21.6.0-28 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:570becaae19560fa345ed5fd8a621781019ed59fab7d9d2f734ceb110724acc0 + # Bundle: uma-operator.v21.6.0-29 + - registry.connect.redhat.com/ca/uma-operator-bundle@sha256:54ca7b695bd779ed7773acd55d6bf04b08a4d0152de6d0362080d58713a67494 +vprotect-operator-rhmp: + # Bundle: vprotect-operator.v0.0.1 + - registry.connect.redhat.com/storware/vprotect-operator-bundle@sha256:95a0911f2e96de069f8a5a289700f063a949f02f19f5b3269625295450bcd641 +xcrypt-operator-rhmp: + # Bundle: zts-xcrypt-operator.v0.0.14 + - registry.connect.redhat.com/zts/xcrypt-operator-1-bundle@sha256:f8f4d42a9f744f93b296ddd62de48674c1ddc7d029a572512d3da226d66597c0 +yugabyte-platform-operator-bundle-rhmp: + # Bundle: yugabyte-platform-operator.v0.0.3 + - registry.connect.redhat.com/yugabytedb/yugabyte-platform-operator-bundle@sha256:e616789c71737929559c4726b6ac219ae669480938c0466d0a485c6c0b70a1b4 + # Bundle: yugabyte-platform-operator.v0.0.5 + - registry.connect.redhat.com/yugabytedb/yugabyte-platform-operator-bundle@sha256:f6452b45697467856b361340d9456b8fe6047cf13f61508c1a99d2a2aaaf3428 +zabbix-operator-certified-rhmp: + # Bundle: zabbix-operator-certified.v0.0.1 + - registry.connect.redhat.com/zabbix/zabbixoperator-certified-bundle@sha256:8ae2546ebee6102162bcd13cfa0ef9acc82fa51fbe08c3a32e1c9df12f9e4cfa + # Bundle: zabbix-operator-certified.v0.0.2 + - registry.connect.redhat.com/zabbix/zabbixoperator-certified-bundle@sha256:a78ef42b6275c416bcb607b809fdb8d97ac9d69ee2223579738f078d358ef679 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml new file mode 100644 index 00000000..f97ef380 --- /dev/null +++ b/hack/scripts/deprecated-bundles-repo/deprecate-all/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml @@ -0,0 +1,817 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: registry.redhat.io/redhat/redhat-operator-index:v4.8 +# - Image ID: sha256:b88b8b3531b315848d5a4d53c6e376660547bdee84e07a06d07aa7406974dcc2 +# - Image Created at: 2021-08-19T18:05:29.215979732Z +# - From JSON report generated at: 2021-08-21 +############################################## +3scale-operator: + # Bundle: 3scale-operator.v0.3.0 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:55166d313d270ae4740a260149bfb41df1af8214744e9c38abef07add49c95de + # Bundle: 3scale-operator.v0.4.0 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:bb7dc249eb517b6e3ffd7d4ceb19884ad4af97f16835bf58e1930534ca7e4764 + # Bundle: 3scale-operator.v0.4.1 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:523ca71b96847059b68f6def61e4735a52315757395556f37977e083aef305de + # Bundle: 3scale-operator.v0.4.2 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:9e2588646a095b3067cd785910c7cde820b7b7aaf864d5600a577a13a5bd69c4 + # Bundle: 3scale-operator.v0.5.0 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:2d1d177e854d5065d872b63502b2ac08bbcb9855ab1f0609106c31ef13f8d67b + # Bundle: 3scale-operator.v0.5.1 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:3d51773c86faf0a06661d824d25e63bb704fdd45740131ab5c2c3cff2f3afe20 + # Bundle: 3scale-operator.v0.5.2 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:361ee922e6460100781906421e3b4339850785fe1d1559b17be6555ab7684a52 + # Bundle: 3scale-operator.v0.5.3 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:a4bd65860deeca86308b783186e34f7f947e5bfe072eee459091d698fac51409 + # Bundle: 3scale-operator.v0.5.4 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:27a445a5c1950513cf5088dc96e6768c717f3079dfa445775768ea573a1436f7 + # Bundle: 3scale-operator.v0.5.5 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:65f6dc458d864761dc05f265d2e679104510bb38c5a0e5a31e2268ec674b9ebe + # Bundle: 3scale-operator.v0.6.0 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:996c4b5c28ba35b640f2ccf12f49a477bdd65e69c3741f0253c850aaf14f0176 + # Bundle: 3scale-operator.v0.6.1 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:d3f06246be00c7a0e8474eee22791a9b0fcd64863bcd45a19d84e5dc88bc075a + # Bundle: 3scale-operator.v0.7.0 + - 3scale-amp2/3scale-rhel7-operator-metadata@sha256:f698cf1102a1847cba810f5be68c264223a37f6424c3e4902465111b5b74d496 +advanced-cluster-management: + # Bundle: advanced-cluster-management.v2.0.0 + - rhacm2/acm-operator-bundle@sha256:280bf802843fab435a2946a49324900223f14ae01abbb113624bc056b5ab0188 + # Bundle: advanced-cluster-management.v2.0.1 + - rhacm2/acm-operator-bundle@sha256:1e1cd6a2950349e3e619e2ffe15cd10d36a5b15e1a9e3b0024bdb11a2355b7ca + # Bundle: advanced-cluster-management.v2.0.10 + - rhacm2/acm-operator-bundle@sha256:ea42543f1127fd6ec53cf7f6c7f61f3e0b62f1b210844584d89d60c4bf53fef9 + # Bundle: advanced-cluster-management.v2.0.2 + - rhacm2/acm-operator-bundle@sha256:75c32ced4add3c6c583daf0bcf81b13cbeb99fd2e24f2c3261fb95ac7bcec4f1 + # Bundle: advanced-cluster-management.v2.0.3 + - rhacm2/acm-operator-bundle@sha256:c068e6f697764fe0aa82f5572450bbf6cc80d9670a7cb65a8753afa9fa9f8bf6 + # Bundle: advanced-cluster-management.v2.0.4 + - rhacm2/acm-operator-bundle@sha256:1af785b35226525dc1265123bc274bccb025439ea396e560d0a562791f2c8217 + # Bundle: advanced-cluster-management.v2.0.5 + - rhacm2/acm-operator-bundle@sha256:3a8c3261d61779907a9a86bb4a2699bd8c60f3ec6466cf6656034b7eda127bc6 + # Bundle: advanced-cluster-management.v2.0.6 + - rhacm2/acm-operator-bundle@sha256:d97ae02a20eaaa1a0770710a7b5808787d9617ce63c03d3c3f08a11f5bf41aa3 + # Bundle: advanced-cluster-management.v2.0.7 + - rhacm2/acm-operator-bundle@sha256:e77e15271554a64192f4c80a864efe4f082caeeb94d72f10165beb5cba043ebf + # Bundle: advanced-cluster-management.v2.0.8 + - rhacm2/acm-operator-bundle@sha256:c86057b81e3f4a2979f6d5e2ddcbb9fc31549f8d528497a4924e53b26fd75c8c + # Bundle: advanced-cluster-management.v2.0.9 + - rhacm2/acm-operator-bundle@sha256:a0a2be3279d03955acf2c2471384c819d45ee765401242eeac20751fe3c835fd + # Bundle: advanced-cluster-management.v2.1.0 + - rhacm2/acm-operator-bundle@sha256:76435cfe5728bbcacabb1a444ca45df913a7d5a8541b0cc40496cd11d77865db + # Bundle: advanced-cluster-management.v2.1.1 + - rhacm2/acm-operator-bundle@sha256:f02648187cb8cc1c34a6c463ce7f307cab7016da4c06e836971b9bd23d967394 + # Bundle: advanced-cluster-management.v2.1.2 + - rhacm2/acm-operator-bundle@sha256:9725b91409219faf9e37bab93529ca21bfd209aab3395403866275a3bd08f072 + # Bundle: advanced-cluster-management.v2.1.3 + - rhacm2/acm-operator-bundle@sha256:510b81899ac25c4318e31a7a44b5c2645fc14e24cc463847f19c5229e8d87c6f + # Bundle: advanced-cluster-management.v2.1.4 + - rhacm2/acm-operator-bundle@sha256:5d6c8f7a046eaebd4cee3ad10151bfa3bb176df8e20cd475db66becdcd7356fd + # Bundle: advanced-cluster-management.v2.1.5 + - rhacm2/acm-operator-bundle@sha256:4e4fc6cdfec03a175ada82a98044ba6ae80e5d7fc096a24bc5f2977f49d6c70b + # Bundle: advanced-cluster-management.v2.1.6 + - rhacm2/acm-operator-bundle@sha256:55906425c2619315d98a9f2b3b014379bfa14875592d18a550a93344097c5496 + # Bundle: advanced-cluster-management.v2.2.0 + - rhacm2/acm-operator-bundle@sha256:96e323e923dfb556daadc87e990eb89277c21926e56e378bae60bf1d2a46931a + # Bundle: advanced-cluster-management.v2.2.1 + - rhacm2/acm-operator-bundle@sha256:adba2e6b585bde1c05d041097a9f19b0753230480032aa44ad1b27fecbf819f5 + # Bundle: advanced-cluster-management.v2.2.2 + - rhacm2/acm-operator-bundle@sha256:82f8508111f307c25e458a2283e86a21eaeeaa2cd0b335766174f324f6bd392d + # Bundle: advanced-cluster-management.v2.2.3 + - rhacm2/acm-operator-bundle@sha256:3560cfe5aa98787496ad1db0440c32a53c9f91ec6bf56fe674b44fcce0913fbc + # Bundle: advanced-cluster-management.v2.2.4 + - rhacm2/acm-operator-bundle@sha256:5af9a80acccef3f230dca67538276c3777568cbc98b20d6018c5a9843ab18005 + # Bundle: advanced-cluster-management.v2.2.5 + - rhacm2/acm-operator-bundle@sha256:2dc9b26f20e89ab7faa9b6a4a4cdf3137061a5115447d0342de268b8fbdd34ad + # Bundle: advanced-cluster-management.v2.2.6 + - rhacm2/acm-operator-bundle@sha256:5f9235a715e8091889aff5427683c6a529d222a8126a883da570fb531cb2771b + # Bundle: advanced-cluster-management.v2.2.7 + - rhacm2/acm-operator-bundle@sha256:1292fa5177f41a96698a37a35a96d61c1e9c85934a71b4fe91ed9416e78658b3 + # Bundle: advanced-cluster-management.v2.3.0 + - rhacm2/acm-operator-bundle@sha256:595f4345c97f951c5733879f4d817668b9028805b1f2a158f915c19aa00f392c + # Bundle: advanced-cluster-management.v2.3.1 + - rhacm2/acm-operator-bundle@sha256:8a3459a31961d38ca728a3d0915602189ff9510a1a45278ac00742cc319e844a +amq-broker: + # Bundle: amq-broker-operator.v0.13.0 + - amq7/amq-broker-operator-bundle@sha256:5a5f53ec96ddb46f6c25bf7319ecb1a86e6754da0d09927c917ecea037eb6d05 + # Bundle: amq-broker-operator.v0.15.0 + - amq7/amq-broker-operator-bundle@sha256:1d8aebf3ee175b795bb14c385d1183bd9da5c2fdce4005d09b01ddc2a3b1b0aa + # Bundle: amq-broker-operator.v0.17.0 + - amq7/amq-broker-operator-bundle@sha256:86853f5d81be450a999ba261c60bfe1e429a4a8312d7ef5dedb2cd66be118147 + # Bundle: amq-broker-operator.v0.18.0 + - amq7/amq-broker-operator-bundle@sha256:93eb77beb3df602b64e59521459f4b389777ad3409e5dc5715e672af3e1059b2 + # Bundle: amq-broker-operator.v0.19.0 + - amq7/amq-broker-operator-bundle@sha256:63b9c3d4b7f7b06ce10f57afec75cb4c39470a800d7ab26d7cc5d9b5876ef347 + # Bundle: amq-broker-operator.v0.9.1 + - amq7/amq-broker-operator-bundle@sha256:4677056566e09daf0a316e24abdba542c29c2194cd98b6e8af50f654a930a97d + # Bundle: amq-broker-operator.v7.8.1-opr-3 + - amq7/amq-broker-operator-bundle@sha256:e769ee90622890ba32b6f6aa98a9586d32323abb7867215954c7a4ac579e873b +amq-broker-lts: + # Bundle: amq-broker-operator.v0.9.2 + - amq7/amq-broker-lts-operator-bundle@sha256:154d343f8646c2fe8d35c235e1fa112ece443f08a9c18bf0029892741dd73b9c + # Bundle: amq-broker-operator.v0.9.3 + - amq7/amq-broker-lts-operator-bundle@sha256:b480e64de68bbe7c271623cf9a9f88067fa7d1dd4dc54f192ca505ecfb25dd17 +amq-broker-rhel8: + # Bundle: amq-broker-operator.v7.8.1-opr-3-rhel8 + - amq7/amq-broker-rhel8-operator-bundle@sha256:835143a542a09c511751f77a2c2fc643dc6d3060d74ea2c07d94b5681a4288a0 +amq-online: + # Bundle: amq-online.1.4.0 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:ed1658893b5e78ea6d684dac7f237a80eb1a5fe146996c39152c077ea59f0d61 + # Bundle: amq-online.1.4.1 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:6195b018194b457eb6bad2c53381bdfa4d84329e86d561580a63a9c2faab66d9 + # Bundle: amq-online.1.4.2 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:28157b46dcee1e5fffef9260aa9639df03cca2d8e84ccd63bf1fd966c17c10d5 + # Bundle: amq-online.1.4.4 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:f0f899b90e0ab0e9cc9818e4181beccf178543388c14570da0fd8dda0b4abaa9 + # Bundle: amq-online.1.5.0 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:b350796e748ac56aeaf71711f4eaae06d2b9f77fc1c9aeec1680c9ab096e663c + # Bundle: amq-online.1.5.1 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:609f34c93dfc53fb853c45d395fcb5c07b6d96e7ab075b036c785203415cfc11 + # Bundle: amq-online.1.5.2 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:81fabc8e6bdc05a772fbf4401331e8ccc568593dafada38fff4c8aaf0565ba06 + # Bundle: amq-online.1.5.3 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:e81aac14ba253b4a89370f8aabfebf491f34621cf8d54efd6b8b3796ca8732bb + # Bundle: amq-online.1.6.1 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:c5b5ba7265c5ac8e77ff9836746a8ac9ca5e1967270adffffdfe32d8a14968cf + # Bundle: amq-online.1.6.2 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:debf79ef45e0fdd229bdfae29ff9a40926854278b39b4aa0d364f5ae9c02c6dc + # Bundle: amq-online.1.7.0 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:5f582e82bd357530a7d66bdf25598b69ad75e79e2b28ca028cd656fb52a8259f + # Bundle: amq-online.1.7.1 + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:c838ae843b44b9c812bb0f79002cefbc49e68a7eabcb96f242974bb606408a3f + # Bundle: amq-online.1.7.1-0.1628610187.p + - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:74a449ae0c1c85c4c203e13b7d0ff489aa8769e3866e8dca9c784ea63a16c4c0 +amq-streams: + # Bundle: amqstreams.v1.6.3 + - amq7/amqstreams-rhel7-operator-metadata@sha256:cc19289ff777153ca9ab3cebc45e4c98e9c083437d5e2b6407244aead6e89312 + # Bundle: amqstreams.v1.7.0 + - amq7/amqstreams-rhel7-operator-metadata@sha256:6ef3bf83ee075cff73ecc2df897d747b6d589df423dcb3ac1f493d1535e627eb + # Bundle: amqstreams.v1.7.1 + - amq7/amqstreams-rhel7-operator-metadata@sha256:ec906a4abe8e72844e0fd0ebf0abdc312c0b599e22dc3b7c80b9543cdc76b622 + # Bundle: amqstreams.v1.7.2 + - amq7/amq-streams-rhel7-operator-metadata@sha256:4ae366be201075ebd86d5bf352d5c77cfa13b8faf5eee5093bfd480ca3a392a2 + # Bundle: amqstreams.v1.7.3 + - amq7/amq-streams-rhel7-operator-metadata@sha256:e07c00d943b6951f66c2b629f1086fc4357746b09f647856d8802c4fcb4105fc + # Bundle: amqstreams.v1.8.0 + - amq7/amq-streams-operator-bundle@sha256:c25cce924c28e22c8c2edf9b71553f2399e091b9dd35dd596a54f26c24af2454 +amq7-cert-manager-operator: + # Bundle: amq7-cert-manager.v1.0.1 + - amq7/amq-cert-manager-operator-bundle@sha256:31e6695655b03139afa3a5c82d1c8eaca8bcc526d04a058ab3b9cdcab598d324 +amq7-interconnect-operator: + # Bundle: amq7-interconnect-operator.v1.10.1 + - amq7/amq-interconnect-operator-metadata@sha256:4e84d9b68d37e663025905e46245abc605d1354c61ccd2a7e1583961fde28eb5 + # Bundle: amq7-interconnect-operator.v1.2.0 + - amq7/amq-interconnect-operator-metadata@sha256:1470d60ca59fef22b776f1581c12d3bb06949d071d07a9cdd97a37a840ed905c + # Bundle: amq7-interconnect-operator.v1.2.1 + - amq7/amq-interconnect-operator-metadata@sha256:afe43efe442ccd8d3c0d3181b5a23d683809703a0a374dbfecf91d0322cf9781 + # Bundle: amq7-interconnect-operator.v1.2.2 + - amq7/amq-interconnect-operator-metadata@sha256:15723f36c4ef130b25681367a8425f542475b0258122a04cc332872a4273eec7 + # Bundle: amq7-interconnect-operator.v1.2.3 + - amq7/amq-interconnect-operator-metadata@sha256:b2f1961f30a612edb84fac79211d5c54843c0478235839f83018c92cb428d165 + # Bundle: amq7-interconnect-operator.v1.2.4 + - amq7/amq-interconnect-operator-metadata@sha256:ec4cbd00237d61e552fe65804b569f78035eed09bdca47bdcdbff831d9484ca7 +ansible-automation-platform-operator: + # Bundle: ansible-automation-platform-operator.v2.0.0 + - ansible-automation-platform/platform-operator-bundle@sha256:9f40ccd65788e8922606f9719849b094bcb088d3cd4789f2f532784d79e4543c +apicast-operator: + # Bundle: apicast-operator.v0.2.0 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:95e057316c411a0add6ddc90f63500c17a288bbc9772d9e8b6a59a15cdcc824c + # Bundle: apicast-operator.v0.2.1 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:05f0817f38329cc1938e95932a504b9d94ac94544581d1352be9c225697e2204 + # Bundle: apicast-operator.v0.2.2 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:35d94ce12486c78bf27583987afa63f0146173c25cf5715a7d62fd2e91b2414e + # Bundle: apicast-operator.v0.2.3 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:3f695c906f2baabe49af6353fc79140b1a45f2431bb10512ba83c7c7cabf88bd + # Bundle: apicast-operator.v0.2.4 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:69854f078065b711dbc9ca7b088fa0fe4cfbafa577450ff94578915f202e41c7 + # Bundle: apicast-operator.v0.3.0 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:f66685c272d98de6e5c32f4090fc4dc84f0c94fa05a233b4f7737a31d478b983 + # Bundle: apicast-operator.v0.3.1 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:da8930f0d4a627f323166fe8506f0a31e67c96cf258c548acc1cc60b461adc7f + # Bundle: apicast-operator.v0.4.0 + - 3scale-amp2/apicast-rhel7-operator-metadata@sha256:65447df0f16603ea021eaae880865ccfcb4449aab6fc2fd519da554c46987e84 +awx-resource-operator: + # Bundle: awx-resource-operator.v0.1.0 + - ansible-automation-platform/platform-resource-operator-bundle@sha256:4243b1ed45e18bdb42c17374d11e2f252a11457099740ca9e9ad9d430d1a02e0 + # Bundle: awx-resource-operator.v0.1.1 + - ansible-automation-platform/platform-resource-operator-bundle@sha256:1f31be82087b8d16953388696eff7ac7bfc93a507704ff10fe3db23eda1cd856 +businessautomation-operator: + # Bundle: businessautomation-operator.1.2.0 + - rhpam-7/rhpam-operator-bundle@sha256:df348c6ad999c3be37ab19b3651b5a61ab1fa55f7b2ff02b1fea48bfad69ab4a + # Bundle: businessautomation-operator.1.2.1 + - rhpam-7/rhpam-operator-bundle@sha256:a9d8ced4deb7113de7c97efc226cb9d2ee912be2ce6e67418ddcee423f2a9204 + # Bundle: businessautomation-operator.1.3.0 + - rhpam-7/rhpam-operator-bundle@sha256:c119d2dc15f7d0038623fc2d682e513bba0cbbc63e0095ab769bd119faf59b7f + # Bundle: businessautomation-operator.1.4.0 + - rhpam-7/rhpam-operator-bundle@sha256:5929b5d30f2c3c215bf0c3052101b618d1e16c39f8b525a22ceb3541009c1a2c + # Bundle: businessautomation-operator.1.4.1 + - rhpam-7/rhpam-operator-bundle@sha256:3e7da2092cffe5bd2161c98b86e26ce6107248ca52c94a3a333b180f623333de + # Bundle: businessautomation-operator.7.10.0-1 + - rhpam-7/rhpam-operator-bundle@sha256:ee5ef1dfefb946f8eec41f05c0f7b496b431c04ddb16489ea4a0515a5a43f0c2 + # Bundle: businessautomation-operator.7.10.0-2 + - rhpam-7/rhpam-operator-bundle@sha256:42dd0fa00313fd075868fb81b07b1567169bd89b1168e1d4d29e8b62e63adfc4 + # Bundle: businessautomation-operator.7.10.1-1 + - rhpam-7/rhpam-operator-bundle@sha256:d59c5d8525cf543fc3c12ef631f9fa7a2dd59e2147cbd840437723bbeaa76008 + # Bundle: businessautomation-operator.7.10.1-2 + - rhpam-7/rhpam-operator-bundle@sha256:aa942303f701c3f484cd5ff75eb231dbb2c3d5d2a9a748d57bb5b6c1b34d05f7 + # Bundle: businessautomation-operator.7.11.0-1 + - rhpam-7/rhpam-operator-bundle@sha256:9d59749ec85ac601c326532492431cdabe86070bc2876ddf760daab08dd5e842 + # Bundle: businessautomation-operator.7.11.0-2 + - rhpam-7/rhpam-operator-bundle@sha256:5dc16930b4d2f061eb32698cdd1b108e6e2ceb72df319b0a212bc2e4131429d8 + # Bundle: businessautomation-operator.7.11.1-1 + - rhpam-7/rhpam-operator-bundle@sha256:f5819f66a1e6bbc890fa5e9529eca33154539dfe1a4ce35bdf681ebb1fd8f5b1 + # Bundle: businessautomation-operator.7.8.0 + - rhpam-7/rhpam-operator-bundle@sha256:8bd9ac4b1ddcc03f2e6beb131bcfaf0f65ba6b90039e7a1af9dda631ae8d37f8 + # Bundle: businessautomation-operator.7.8.1 + - rhpam-7/rhpam-operator-bundle@sha256:5a5429d84cc36ce29d95fe86d9b6a9eaef0c3ed3d1925fd9b653904c411cbcb4 + # Bundle: businessautomation-operator.7.9.0 + - rhpam-7/rhpam-operator-bundle@sha256:f486e4a3085ce9245a7d0eec827f97b6d7fac61eeeca01563288d0370370af83 + # Bundle: businessautomation-operator.7.9.0-2 + - rhpam-7/rhpam-operator-bundle@sha256:af5a192a66fd81506cc5361103d7e3d510992f207343f6580a91022dc1bce745 + # Bundle: businessautomation-operator.7.9.1-1 + - rhpam-7/rhpam-operator-bundle@sha256:ce102ebf04a9854a71b1fdac0d9d9e17580fa18d8cb9f6ee507abcd77e6efeac +cincinnati-operator: + # Bundle: update-service-operator.v4.6.0 + - openshift-update-service/cincinnati-operator-bundle@sha256:17c0fbd04db564c5e5b5ec1417274f9b719c87ba07391906e6b07d40bd2245c6 +clusterresourceoverride: + # Bundle: clusterresourceoverride-operator.4.8.0-202107291502 + - openshift4/ose-clusterresourceoverride-operator-bundle@sha256:20d762ea843ebc46acfa3b092235e37ef80b5f5639a357642fdd242574c63451 +codeready-workspaces: + # Bundle: crwoperator.v2.0.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:7b7558c8d9170bd27c9dcf2e62df827d477dbbea694f7040f5cd5bcd0eb598a4 + # Bundle: crwoperator.v2.1.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:af5795b85faa63523353eba59b244b94578eed6ee11d0a4f834e64009395a069 + # Bundle: crwoperator.v2.1.1 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:aba490f87a1ed4c4a47cb5cb5a82ea1bd67031db0382df400d81e13a125f4aff + # Bundle: crwoperator.v2.10.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:55baa64259da5a50d9ee5e40f0177a3a73ad1f0e73459748ccf7e97ff91296bc + # Bundle: crwoperator.v2.10.1 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:71267d186d55327e25c0d9a74c21835257b7ed262b3b56319c7ff648e0be0395 + # Bundle: crwoperator.v2.2.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:b9bc3d8fb71df47ef32e4f2c7d74b938887fbe2683b132d76e0215eb6cee4a9a + # Bundle: crwoperator.v2.3.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:1007e3de27d2235e319c23b08dce4ad83d3569f37fff37ad8174b29909e01f04 + # Bundle: crwoperator.v2.4.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:289f77b62c012b6ef09930acf1466749327ef9a1594eb39e077ff7116f5be73b + # Bundle: crwoperator.v2.5.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:c48e4c3f85e30ab3a209369f7fd9212d34fbe2b97de5334439b06742e9cdec2a + # Bundle: crwoperator.v2.5.1 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:181dc432a5aa228ca57a4c23218391f846284e258f72ed306f15ef884e991ee8 + # Bundle: crwoperator.v2.6.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:496aeecec52b0645cfcaa8b7ee7e71c55f823c7520ce3d2c9238d522c17a6e98 + # Bundle: crwoperator.v2.7.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:357f830568a690ea194acdf2b1c5d66b54b10bf1a0dc58d1e771454692dc2270 + # Bundle: crwoperator.v2.7.1 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:69761d7600d9602fd89f600d9670156e71f68c82802578b0db729cfa0087c89b + # Bundle: crwoperator.v2.8.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:080bc58804ca40380c5ed58a5bbdd5fe035fed84a07e58d1c590e06695bbb720 + # Bundle: crwoperator.v2.9.0 + - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:345073710fca51ab00006902064ab1f5a24db220498acfa7c92986696d33cb6f +container-security-operator: + # Bundle: container-security-operator.v3.3.4 + - quay/quay-container-security-rhel8-operator-metadata@sha256:87b32fd8753bc35f72a9087bd20c1de120094885ced267a0802f89b26283f828 + # Bundle: container-security-operator.v3.4.1 + - quay/quay-container-security-operator-bundle@sha256:69a08e9f1fb49347da86488c0d70aca5dbc6835665f2ac7d1069b39b3a852919 + # Bundle: container-security-operator.v3.4.2 + - quay/quay-container-security-operator-bundle@sha256:6a96cb52b92ad47871446ef04ed727e1e376c69456f370f40774b9c5b73f329b + # Bundle: container-security-operator.v3.4.3 + - quay/quay-container-security-operator-bundle@sha256:b00993869900ac164a844d2be3c9957f0024eed3927bc45f239d8c11622678e6 + # Bundle: container-security-operator.v3.4.4 + - quay/quay-container-security-operator-bundle@sha256:2de8912c6f5adcf5af468d052105d46803b73b53b46e0f18ede5073d70fef96c + # Bundle: container-security-operator.v3.4.5 + - quay/quay-container-security-operator-bundle@sha256:9d6e7fbde30bac8de713fce88887819327215046df585404141bf0ddd545290f + # Bundle: container-security-operator.v3.4.6 + - quay/quay-container-security-operator-bundle@sha256:e1ecc2949bf4e612d77d378961c8f65b9f463064a50590ec3313897528a317cd + # Bundle: container-security-operator.v3.5.1 + - quay/quay-container-security-operator-bundle@sha256:586af2816f9100d9357e7e42244e5760626412d971225bc0ad07fd0d2635718d + # Bundle: container-security-operator.v3.5.2 + - quay/quay-container-security-operator-bundle@sha256:10d49d475b831f6a3e527098cd5e9328d97d4cda7ad366c491552cf3659776a0 + # Bundle: container-security-operator.v3.5.3 + - quay/quay-container-security-operator-bundle@sha256:83f9efe7b8b055bf9251360b2308014deb8ee8bf0063580acf5366a0d3264828 + # Bundle: container-security-operator.v3.5.4 + - quay/quay-container-security-operator-bundle@sha256:58a9d926ba50c0733a8578271ced7c642d8143c9e1dbcdff1eee9f385308de70 + # Bundle: container-security-operator.v3.5.5 + - quay/quay-container-security-operator-bundle@sha256:155068c60e308565513124b4f5bd683f72498ead51ff340403eb0015508a0464 + # Bundle: container-security-operator.v3.5.6 + - quay/quay-container-security-operator-bundle@sha256:6c5cfc41ee97e91dafc75ee466b88f755994c6406026de4d1a80256d6700a117 +datagrid: + # Bundle: datagrid-operator.v8.0.0 + - datagrid/datagrid-8-prod-operator-bundle@sha256:7dd45b30f4ffc76846fb6841317c91d6c414b78e0ce10d64f8673447ac2a9066 + # Bundle: datagrid-operator.v8.0.1 + - datagrid/datagrid-8-prod-operator-bundle@sha256:7765bf223baf3e6fd3f5db725586888874280812f017bb01c0bd7714a8bab336 + # Bundle: datagrid-operator.v8.0.2 + - datagrid/datagrid-8-prod-operator-bundle@sha256:8a958713ec2b1f484a688b9dbab0158c6753d59b37dc41075c86dabe6c4eea56 + # Bundle: datagrid-operator.v8.0.3 + - datagrid/datagrid-8-prod-operator-bundle@sha256:7c133eb164050d4e13ff1edbf30394d34b985c313a8b2a333d6ac54e05b66889 + # Bundle: datagrid-operator.v8.1.0 + - datagrid/datagrid-8-prod-operator-bundle@sha256:14fd60e0b98aa6eceec076f5ca340610ff3f9e61a70ff6ebff3da3cc7f855514 + # Bundle: datagrid-operator.v8.1.1 + - datagrid/datagrid-8-prod-operator-bundle@sha256:eee656a31b8ef822fca8c25cc4d5efe11a07090d32410b3a016dd9204fa79247 + # Bundle: datagrid-operator.v8.1.2 + - datagrid/datagrid-8-prod-operator-bundle@sha256:c503cc820237d2aaaf4fa42145e05b3d49645485d343f0c0fa87baa6242a9fd1 + # Bundle: datagrid-operator.v8.1.3 + - datagrid/datagrid-8-prod-operator-bundle@sha256:cc0bb4989fe0e7107d07bcec39e5595291152d602652aa9b6d2a3b7fb24f86c4 + # Bundle: datagrid-operator.v8.1.4 + - datagrid/datagrid-8-prod-operator-bundle@sha256:ec6fd022c1d740c86ee449b1c29817bcf8a7002f62e8c95167b961f6a74a1730 + # Bundle: datagrid-operator.v8.1.5 + - datagrid/datagrid-8-prod-operator-bundle@sha256:37e5af4cf83db8ab63e6e6ddd39aa06100d2fc4110705e88ac9afb3a7abc15c4 + # Bundle: datagrid-operator.v8.1.6 + - datagrid/datagrid-8-prod-operator-bundle@sha256:17009de2d5a855a4570defc332378ce042630784bd29006740d34c435af9008c + # Bundle: datagrid-operator.v8.1.7 + - datagrid/datagrid-8-prod-operator-bundle@sha256:fe608b121e62e77c39fc6abeb13d1618f2d593811f962e8e3ce477d927c821f1 + # Bundle: datagrid-operator.v8.2.0 + - datagrid/datagrid-8-prod-operator-bundle@sha256:b35b91095373da362968febdfe8d977930d4046e6cd3798960544ada025a665a + # Bundle: datagrid-operator.v8.2.1 + - datagrid/datagrid-8-prod-operator-bundle@sha256:305c3e345af6adb5ad16c27035c7d4dd42f878dc566184946ce8e403bc83729b + # Bundle: datagrid-operator.v8.2.2 + - datagrid/datagrid-8-prod-operator-bundle@sha256:52a65c00fed258ec9443c561f71acfdafc1891410451e7ea5a0ea55b72248430 + # Bundle: datagrid-operator.v8.2.3 + - datagrid/datagrid-8-prod-operator-bundle@sha256:517964e827e483f7bd2af4ed60bd23356f4a5d296b1401a14fac03ba7ec8619b +eap: + # Bundle: eap-operator.v2.0.0 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:64ba482c95a252ef495483d898e5dc94adb95446f2f257e0ebe04c737163be40 + # Bundle: eap-operator.v2.0.1 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:23c0de3059f16b616505be698252c314dd6c645f0820975f6d207ef1e9ce20de + # Bundle: eap-operator.v2.0.2 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:a1ae631ea20156c5c7b3c13109ec5a11eae50955eaf46f91dc6979a21b84cd63 + # Bundle: eap-operator.v2.1.0 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:9915981fa22fce058f41b364fd26b22ed2bb43a21e9a17db97850b3a5c156baf + # Bundle: eap-operator.v2.1.1 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:dda936663249468e8a08673bdda90bac71c51983f65e811c87abd4885bc12759 + # Bundle: eap-operator.v2.1.2 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:ce8976c30e638820ae66f6ff06dae996da407a8fb5512f43c8919a59a2bc5210 + # Bundle: eap-operator.v2.1.3 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:e55f6412d4683b4376b21cfd5fe75559dd749746e1b7f7e6ee7518614fbc85ee + # Bundle: eap-operator.v2.1.4 + - jboss-eap-7/eap73-rhel8-operator-bundle@sha256:80c4952d54adfc853560e60e8fe218ae9d74f7b34c96eebb95b87e6baeaaf268 +elasticsearch-operator: + # Bundle: elasticsearch-operator.4.6.0-202103010126.p0 + - openshift4/ose-elasticsearch-operator-bundle@sha256:037eac94f8d1b63c52f09b0abafd48b7bb3a76db6d01b457fc3a16f63f60a639 + # Bundle: elasticsearch-operator.5.0.6-40 + - openshift-logging/elasticsearch-operator-bundle@sha256:de2098bea36e57810342ccc41a1c7af9a2549e0ac7b398f23d686dae776b6557 + # Bundle: elasticsearch-operator.5.0.6-40 + - openshift-logging/elasticsearch-operator-bundle@sha256:de2098bea36e57810342ccc41a1c7af9a2549e0ac7b398f23d686dae776b6557 + # Bundle: elasticsearch-operator.5.0.6-40 + - openshift-logging/elasticsearch-operator-bundle@sha256:de2098bea36e57810342ccc41a1c7af9a2549e0ac7b398f23d686dae776b6557 + # Bundle: elasticsearch-operator.5.0.7-27 + - openshift-logging/elasticsearch-operator-bundle@sha256:f271058551fbac79e94b897b5344c9fd94ff938a5e40e985eed9bdd5bfe5cdac + # Bundle: elasticsearch-operator.5.1.0-96 + - openshift-logging/elasticsearch-operator-bundle@sha256:f5cebaa2582fee8e6420b009efb9f4d894a487ebf5ab8c717408442eb0cd9bc1 + # Bundle: elasticsearch-operator.5.1.1-36 + - openshift-logging/elasticsearch-operator-bundle@sha256:fed2865db0b9766c2b524c27ab055e7a5a7ae7c0f1d5397e6f77c1d9a30a8191 +fuse-apicurito: + # Bundle: apicuritooperator.v7.7.1 + - fuse7/fuse-apicurito-operator-bundle@sha256:2c31a890dbd52578a8d1b64710bb96f4aa01eee88499fef2f798bc465971e314 + # Bundle: fuse-apicurito.v7.8.1 + - fuse7/fuse-apicurito-operator-bundle@sha256:e4dd3c3a1f31bf27fe67b4f0861200b896845451c4306c07a1a2528fc6a638bb + # Bundle: fuse-apicurito.v7.9.0 + - fuse7/fuse-apicurito-rhel8-operator-bundle@sha256:80325732ab068d29eaef4c26fbd0f0325130439576951ad4a6f05572fd1585c1 +fuse-console: + # Bundle: fuse-console.v7.7.1 + - fuse7/fuse-console-operator-bundle@sha256:5e3e9d565510c1a12351f89f912e21f318ee0d7ed52fc8cca6051a6dbf3a6e6d + # Bundle: fuse-console.v7.8.2 + - fuse7/fuse-console-rhel7-operator-metadata@sha256:d207bf3721bdfb6d4d90cda5245b3c49cedef0ba2a308ed64cd00aa6fea7b152 + # Bundle: fuse-console.v7.9.0 + - fuse7/fuse-console-rhel8-operator-bundle@sha256:ddfdf850c9238a6988889e1840efe3175f03dad2489a5651e21cac62ac44e23e +fuse-online: + # Bundle: fuse-online-operator.v7.7.1 + - fuse7/fuse-online-operator-bundle@sha256:93d12b2fc2a2e0263890529e227dcb9e37172139f63a95d39b1dce4f19cee39c + # Bundle: fuse-online-operator.v7.8.1 + - fuse7/fuse-online-operator-bundle@sha256:0161c67a3c6be92306f68c2a3b7d9ce3edcf57fdeb1bf2843f988cc85fefc89b + # Bundle: fuse-online.v7.9.0 + - fuse7/fuse-online-rhel8-operator-bundle@sha256:7b5402b2bba9beaaa5dc2c08572f1c6daf52d83b17a5bcc28c96d15a571a7b4c +gatekeeper-operator-product: + # Bundle: gatekeeper-operator-product.v0.1.1 + - rhacm2/gatekeeper-operator-bundle@sha256:b48c02d6220e61460c908676d0ae75c7cd3f47645755a636f3329acb2d8a4760 + # Bundle: gatekeeper-operator-product.v0.1.2 + - rhacm2/gatekeeper-operator-bundle@sha256:b8c4694c5d948540c6c46d19610c11930a1bf8c76a84722119f9cb22cccfe55f + # Bundle: gatekeeper-operator-product.v0.1.2-0.1624366317.p + - rhacm2/gatekeeper-operator-bundle@sha256:8c68e899623c28c3274bd1a6b1bbf62adda125055e0f25db6024309158674f92 + # Bundle: gatekeeper-operator-product.v0.1.2-0.1627931308 + - rhacm2/gatekeeper-operator-bundle@sha256:803cd903a38f1366e861b0e757114c8c31176436b8f01e9bf120e387e7f5d57c +jaeger-product: + # Bundle: jaeger-operator.v1.17.9 + - distributed-tracing/jaeger-operator-bundle@sha256:708f9dba3e65601890b05716e658562093b83537f6f493aa6262fec9b6cab741 + # Bundle: jaeger-operator.v1.20.5 + - distributed-tracing/jaeger-operator-bundle@sha256:3208e981285012e8422213965f33ea47962d4e0c61cef157bc1607bc39fa7b31 + # Bundle: jaeger-operator.v1.24.0 + - distributed-tracing/jaeger-operator-bundle@sha256:1760d894216cd496083f3ccf5bdb44f313d04ef9cedff601b637e3f078cf92a9 + # Bundle: jaeger-operator.v2.0.0-tp.1 + - distributed-tracing/jaeger-operator-bundle@sha256:2d3b46a96af8b2455bb614ee6db92516a6d9d94e31fe6076acb6e9524c1cb25b +jws-operator: + # Bundle: jws-operator.v1.0.0 + - jboss-webserver-5/webserver-openjdk8-operator-bundle@sha256:fe31cbcbd11180a684437e5ccf819f4ffafa519e9fe1b5f5771a8d45cf7b7f75 + # Bundle: jws-operator.v1.0.1 + - jboss-webserver-5/webserver-openjdk8-operator-bundle@sha256:4eb2ce7385cf6dc0b30dcc05ec7bbe2269bf929b09dafa1a17b8446f6a4c631b + # Bundle: jws-operator.v1.0.2 + - jboss-webserver-5/webserver-openjdk8-operator-bundle@sha256:d11107ea3abf1f7d07e4003738dab7244807dd11f60f8473fac03e586e799c42 + # Bundle: jws-operator.v1.0.3 + - jboss-webserver-5/webserver-openjdk8-operator-bundle@sha256:3142a3531f3d245abc93eda130edbd0ac7f4a69019a5e86a27a43dd27962e3bd +kiali-ossm: + # Bundle: kiali-operator.v1.0.10 + - openshift-istio/kiali-operator-metadata@sha256:3a1126c3df937ed08d32627e7af38632e06f6f905d5457a47fb59288041cd330 + # Bundle: kiali-operator.v1.0.11 + - openshift-istio/kiali-operator-metadata@sha256:2ab8d3a25f17000d57941bcc3bebddf54ecea85d69e3cf2f40b8411836d1b6e1 + # Bundle: kiali-operator.v1.0.12 + - openshift-istio/kiali-operator-metadata@sha256:fec8560f02a08585797895cb644c640132b79af0280158473e146954137e337b + # Bundle: kiali-operator.v1.0.5 + - openshift-istio/kiali-operator-metadata@sha256:a96359d8c1c44f5c6881cfb44e5dbb0518d7ccd44b6e77116e9ed9a6d96dff2e + # Bundle: kiali-operator.v1.0.6 + - openshift-istio/kiali-operator-metadata@sha256:cbc5dcb6332a5d8330a99130f18f87ded9cbc6935bfe2205ccddff4af808155c + # Bundle: kiali-operator.v1.0.7 + - openshift-istio/kiali-operator-metadata@sha256:3747fa0ad6498d79a77be22a2bb42bfd22ca9fbe1aaff08e8b069433620e0258 + # Bundle: kiali-operator.v1.0.8 + - openshift-istio/kiali-operator-metadata@sha256:0dc2d3bc91aa5c05762c590816deb595ca588dee171631634078319fd22a81f4 + # Bundle: kiali-operator.v1.0.9 + - openshift-istio/kiali-operator-metadata@sha256:259877ab1bc66848ea8fd8b2847a4ff883575e2bf76d93cd717cea68ed27dcd7 + # Bundle: kiali-operator.v1.12.11 + - openshift-istio/kiali-operator-metadata@sha256:78d19b5112f9aaaff96e59ded7c3a2197910491df5512c3915fe0e5c7c449e59 + # Bundle: kiali-operator.v1.12.12 + - openshift-istio/kiali-operator-metadata@sha256:546d007d832f14cb03b2ba55b8c14bc66e3ac750a3698cf75b502ddcf7c8db2a + # Bundle: kiali-operator.v1.12.13 + - openshift-istio/kiali-operator-metadata@sha256:4a5599af4f17c38412e05354e5de90fe07b423668ebf1997dafc7e4dafb62ffc + # Bundle: kiali-operator.v1.12.14 + - openshift-istio/kiali-operator-metadata@sha256:b8d7fd645e4fcb864fe11c41d5b3e8040a5fc1dba1b6c4b027ef6f753325a57f + # Bundle: kiali-operator.v1.12.15 + - openshift-istio/kiali-operator-metadata@sha256:1dc2e01b133860f5a0649517dd768b53033be6f20f1d676dc49927138984ec3f + # Bundle: kiali-operator.v1.12.16 + - openshift-istio/kiali-operator-metadata@sha256:562027fcd20cff4b99dbbbe3447bac6132f1af4444229b0752189756b347b81d + # Bundle: kiali-operator.v1.12.7 + - openshift-istio/kiali-operator-metadata@sha256:2ff3a1f5de8fa26c260f08fe5cd965006b66903bc0a56ca464bdf857e742988d + # Bundle: kiali-operator.v1.24.2 + - openshift-istio/kiali-operator-metadata@sha256:ade6990aa57d2fd4dfdb80d401534a8130b380d356087ae3925606d7a47ac7b9 + # Bundle: kiali-operator.v1.24.3 + - openshift-istio/kiali-operator-metadata@sha256:6c3de8e02aa1be4b89fc6567e30ba78d8422099df9cd6368ce6b396d41cf1505 + # Bundle: kiali-operator.v1.24.4 + - openshift-istio/kiali-operator-metadata@sha256:90d85fe3e7561cb132e8074beaa2f84ec38d508cebac01b891dd5b470ac88250 + # Bundle: kiali-operator.v1.24.5 + - openshift-istio/kiali-operator-metadata@sha256:e50a8a6c367160590a73937a96990af9ad2352177b776d8611c3554f7ab1af27 + # Bundle: kiali-operator.v1.24.6 + - openshift-istio/kiali-operator-metadata@sha256:bf8f64d8663a8f9fc1f2bf61638905793ae466eeb3caf392c0d6c6c69c8611f4 + # Bundle: kiali-operator.v1.24.7 + - openshift-istio/kiali-operator-metadata@sha256:9eadcdefb6a8fdb16795b8749f2e9b4888d29beaab269498d9776a6d3145749c + # Bundle: kiali-operator.v1.24.8 + - openshift-istio/kiali-operator-metadata@sha256:eabfc25ed9c169d1da84471d8cca387db44d27b523956d765a38d8a32e084ac8 + # Bundle: kiali-operator.v1.24.9 + - openshift-istio/kiali-operator-metadata@sha256:fcaa88dab30ec894006228fd60eec076c45b5321be46760c67ac743c6fd9ba61 +klusterlet-product: + # Bundle: klusterlet-product.v2.2.0 + - rhacm2/klusterlet-operator-bundle@sha256:58b7976358bd5b30958602c820c5d3b0ba136e65fd7424ce92d23801dbd0976f + # Bundle: klusterlet-product.v2.2.1 + - rhacm2/klusterlet-operator-bundle@sha256:dd102ee9ec3a32312e63309e5cd5526e8eb1eb7e7b5ee299b95302618c00a0cb + # Bundle: klusterlet-product.v2.2.2 + - rhacm2/klusterlet-operator-bundle@sha256:d3b166fed222fbbcfe70e7a3872e8c1ac02a5ccd2cbf8585bedd29c005f6a16d + # Bundle: klusterlet-product.v2.2.3 + - rhacm2/klusterlet-operator-bundle@sha256:33651be7274ff2cd66c9e23e7eb20d5d5ca9649aed6777bb8b0ec03dfc8b0707 + # Bundle: klusterlet-product.v2.2.5 + - rhacm2/klusterlet-operator-bundle@sha256:e5a7688faeb49b5ba135fb37251926c9d6c877c0793a1d88a786f0cd2efb03c1 + # Bundle: klusterlet-product.v2.2.6 + - rhacm2/klusterlet-operator-bundle@sha256:91e79536fefd2f5f6d4dde0a46441fa610c410c721bdfbc3f804da5e2e8c77ee + # Bundle: klusterlet-product.v2.2.7 + - rhacm2/klusterlet-operator-bundle@sha256:5524fe5d379b9fd4351243ccd3c0acffef58055e0782a527a90fdd711e8d5044 + # Bundle: klusterlet-product.v2.3.0 + - rhacm2/klusterlet-operator-bundle@sha256:281fe57deda5c26e8861540513479fa08bc697eb35fb40544abf0fb697a73a16 + # Bundle: klusterlet-product.v2.3.1 + - rhacm2/klusterlet-operator-bundle@sha256:efa34206b0eea68fcec2e25788e73e98350f57915a128c41d1dcc4173a5c0302 +kubevirt-hyperconverged: + # Bundle: kubevirt-hyperconverged-operator.v2.5.0 + - container-native-virtualization/hco-bundle-registry@sha256:546e4497d96fd0ef834acbe7dae2c7383d2e5325b14cdaec2e631560d102720f + # Bundle: kubevirt-hyperconverged-operator.v2.5.1 + - container-native-virtualization/hco-bundle-registry@sha256:9811228cf63e2d85529410c0fcaa36999a25dcede649dc4d7d809b98b0a1c332 + # Bundle: kubevirt-hyperconverged-operator.v2.5.2 + - container-native-virtualization/hco-bundle-registry@sha256:90a1f9a2db2b0d1ac78586e79dd0ea3e1ca0a20300e4da95118d0bb77271b39b + # Bundle: kubevirt-hyperconverged-operator.v2.5.3 + - container-native-virtualization/hco-bundle-registry@sha256:76402738a5a52397b164aa85850df9d5ffa446a2be4b0956d30120c1eade0848 + # Bundle: kubevirt-hyperconverged-operator.v2.5.4 + - container-native-virtualization/hco-bundle-registry@sha256:4ed94efd3ddf14dc111a473c891469f7251cd94ccf2046c96524d17ca82c6602 + # Bundle: kubevirt-hyperconverged-operator.v2.6.0 + - container-native-virtualization/hco-bundle-registry@sha256:1d08941f581ce9c39fde20ca1d6e17b2732b78504cd490ccaddc75e5db144a08 + # Bundle: kubevirt-hyperconverged-operator.v2.6.1 + - container-native-virtualization/hco-bundle-registry@sha256:e99ff69879859d0bf689e052839c47d95e47da44926f86240d8f833858af77a2 + # Bundle: kubevirt-hyperconverged-operator.v2.6.2 + - container-native-virtualization/hco-bundle-registry@sha256:6639ea7b8cf2d0f4a1df71116525c3383c9a55962403fee4bae461e1095d3718 + # Bundle: kubevirt-hyperconverged-operator.v2.6.3 + - container-native-virtualization/hco-bundle-registry@sha256:37bbf59bce47d6d469b908003f8545b4e2c87b52b274da59daa1993a22fe5591 + # Bundle: kubevirt-hyperconverged-operator.v2.6.4 + - container-native-virtualization/hco-bundle-registry@sha256:23dee295d93e7e917cefdbf0a6933bcf6136d0f44d723f03f0e533990ca8f14e + # Bundle: kubevirt-hyperconverged-operator.v2.6.5 + - container-native-virtualization/hco-bundle-registry@sha256:4a64b511e6d455bc5bcbd821456b1f089cec9f902d90289dd89b8a923b09d803 + # Bundle: kubevirt-hyperconverged-operator.v4.8.0 + - container-native-virtualization/hco-bundle-registry@sha256:d0aea69adbe85ba64ec810d203e5207ece6b29c4e0a54cc6b2291671b2f50572 +mtc-operator: + # Bundle: mtc-operator.v1.2.5 + - rhmtc/openshift-migration-operator-bundle@sha256:a3e42128d08e7f9586c506b5c7fa5155f0981de6ab46bd6ca78b161caaf352c9 + # Bundle: mtc-operator.v1.3.0 + - rhmtc/openshift-migration-operator-bundle@sha256:f53faabf65c9a610cc2c840db941a284ccc4a9665f9f16ae226a2ec8262dd17e + # Bundle: mtc-operator.v1.3.1 + - rhmtc/openshift-migration-operator-bundle@sha256:8e75c98807166988536c695b5c46ec2fc1cc0fa793b6d5cb5200cc22c6af6249 + # Bundle: mtc-operator.v1.3.2 + - rhmtc/openshift-migration-operator-bundle@sha256:a2c3b92e69cd2d26d686e59c4b3f13c422576ac36bcf6b665150a12767735e85 + # Bundle: mtc-operator.v1.4.0 + - rhmtc/openshift-migration-operator-bundle@sha256:74e96547d0834cb32b9506b13e61e5e0353f83c5a3e58c2ff17ff41bf7d2c006 + # Bundle: mtc-operator.v1.4.1 + - rhmtc/openshift-migration-operator-bundle@sha256:1d3d63c721292e3596b871c0c10833fdecedacc4e3a09f25864740282a27f482 + # Bundle: mtc-operator.v1.4.2 + - rhmtc/openshift-migration-operator-bundle@sha256:f5f09c6157744828702b291049e4deecd7f98f63e912fee1cb6e55f04d7b8ce8 + # Bundle: mtc-operator.v1.4.3 + - rhmtc/openshift-migration-operator-bundle@sha256:1b0c9b3856ae4de8de26bb8317f00471e534794eef1edc595b107725dbae3774 + # Bundle: mtc-operator.v1.4.4 + - rhmtc/openshift-migration-operator-bundle@sha256:0f64bbc27f3de754b019c80bb567acb7cbc0898a2a76360b1e18a267c3cc29d1 + # Bundle: mtc-operator.v1.4.5 + - rhmtc/openshift-migration-operator-bundle@sha256:29e526311139d60c05548537006426084eddc575ddfe62d89bbf8606abe8cf26 + # Bundle: mtc-operator.v1.4.6 + - rhmtc/openshift-migration-operator-bundle@sha256:19f8a00034e63c8ed505b123ca224220695b043a825ffe55c32e5dd32dd05324 + # Bundle: mtc-operator.v1.4.7 + - rhmtc/openshift-migration-operator-bundle@sha256:16b5e74d6ba6fbf5492be37b11b2ba8b4de405f6f90165c8de39d735d18f663e + # Bundle: mtc-operator.v1.5.0 + - rhmtc/openshift-migration-operator-bundle@sha256:d43fcd54fa4f3cbc56f5793bc28846b64d1cd4ca491af7eef2e2ea0c1cdb41bd +ocs-operator: + # Bundle: ocs-operator.v4.7.2 + - ocs4/ocs-operator-bundle@sha256:29e02f71823819e33008199efcc6ee66b9c06bdeb03ca6bfca1ccb934f33628a + # Bundle: ocs-operator.v4.7.3 + - ocs4/ocs-operator-bundle@sha256:94bfd0bf3060761220c7cf59e229a91393bcea6203f0d0a62b4a6d8722d70c85 + # Bundle: ocs-operator.v4.8.0 + - ocs4/ocs-operator-bundle@sha256:91515bf10db2c19a059a16e4df1a331f4b919f2eb1ab11d2a09d054f38fe1fc7 +openshift-gitops-operator: + # Bundle: openshift-gitops-operator.v1.0.0 + - openshift-gitops-1-tech-preview/gitops-operator-bundle@sha256:592a5248f1dc1e0167b951d8443d2bd3342e252ebf2046702ec675150b3f2786 + # Bundle: openshift-gitops-operator.v1.0.1 + - openshift-gitops-1-tech-preview/gitops-operator-bundle@sha256:0a432c618304f2d5ccfcc73ca03f32525939262cfd262c363b120847e71a29b4 + # Bundle: openshift-gitops-operator.v1.1.0 + - openshift-gitops-1/gitops-operator-bundle@sha256:849a346bb1faac6a76595a21ebbc424134f21fbaed693b8bde6490df6a46c6c0 + # Bundle: openshift-gitops-operator.v1.1.1 + - openshift-gitops-1/gitops-operator-bundle@sha256:1170e203046b1a08f851038c02e1175f93abe9ff57a1e5669b35ccfb87dc8644 + # Bundle: openshift-gitops-operator.v1.1.2 + - openshift-gitops-1/gitops-operator-bundle@sha256:433f19e7247d000b0001970b4584eff2933ef15d29f1f4e898592a6da72aec05 + # Bundle: openshift-gitops-operator.v1.2.0 + - openshift-gitops-1/gitops-operator-bundle@sha256:5553a411b4da3d8758f8fab6b51cbe279e70fad84c0d7c6be3baa7cbea9e1584 +openshift-jenkins-operator: + # Bundle: jenkins-operator.0.7.1 + - ocp-tools-4-tech-preview/jenkins-operator-bundle@sha256:a5c0f38916348cd703383c810c93256dbebbed4a37ba21f352d39a8456ad4c0c +openshift-pipelines-operator-rh: + # Bundle: redhat-openshift-pipelines-operator.v1.2.3 + - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:0f4b4082d0b087da0a56cf43ce17763925ac2bca743bf1ef164a38375ae3c5a4 + # Bundle: redhat-openshift-pipelines.v1.3.0 + - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:4521df2f43b4b0d3d305c4a85621675b02da17c58d9f40a6f616bb40934c86f7 + # Bundle: redhat-openshift-pipelines.v1.3.1 + - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:ee6146e6d1e2417190f690ec9173c756b5115b36d450422aa2e94ad564cb51a5 + # Bundle: redhat-openshift-pipelines.v1.4.0 + - openshift-pipelines/pipelines-operator-bundle@sha256:4a8a4f4dc20909ad47a0e357f22a8d50763afd515c1c2c607a3df90f1dac0d34 + # Bundle: redhat-openshift-pipelines.v1.5.0 + - openshift-pipelines/pipelines-operator-bundle@sha256:d4c28d783105a9efae2bd20f199ad1b21904602cbefc3ba8c31a938ff49e7e9f +performance-addon-operator: + # Bundle: performance-addon-operator.v4.4.1 + - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:52b92063ab262de4eccd82b3e276bc464448a552f47f019b13f5bc03603ab3a1 + # Bundle: performance-addon-operator.v4.5.4 + - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:d822388c726075230f1eb6e9fd26a99291590bc267d76fde7b7137eb737e46fd + # Bundle: performance-addon-operator.v4.6.3 + - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:cb3c005ede341aba4e9c42b7461474e67ec810461287ca9f174565c12dced7f0 + # Bundle: performance-addon-operator.v4.7.3 + - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:51eeb8f196464a6a0046984592701073b5788ab54420a097054909dbb926c8b1 + # Bundle: performance-addon-operator.v4.8.0 + - openshift4/performance-addon-operator-bundle-registry-container-rhel8@sha256:d1fd434f371a7c06d6a20b39297765858ba6579931946c86e7226d046bcd98c3 +quay-bridge-operator: + # Bundle: quay-bridge-operator.v3.3.4 + - quay/quay-openshift-bridge-rhel8-operator-metadata@sha256:6e6b6b8c141ade81231d69ebe9b7eedbb60d32573cc0bf037040e64c304eff74 + # Bundle: quay-bridge-operator.v3.4.1 + - quay/quay-bridge-operator-bundle@sha256:f6a273c7e2c997dfd6c6f6a2f38a1aa406fd7b313bbd0400372f843ca8f715e1 + # Bundle: quay-bridge-operator.v3.4.2 + - quay/quay-bridge-operator-bundle@sha256:02bc935004d2bee5c6b53dc9730ce9eaf01509e3dcb0415d2abd18353d62e691 + # Bundle: quay-bridge-operator.v3.4.3 + - quay/quay-bridge-operator-bundle@sha256:4ca121b0cfceef38fd2c8256fa026bb4b705a696c2871c70157f4defa98278c2 + # Bundle: quay-bridge-operator.v3.4.4 + - quay/quay-bridge-operator-bundle@sha256:4434e099525d5b974c7a9262e5f202de3f4fba80c751cc79558923b2b44b36bd + # Bundle: quay-bridge-operator.v3.4.5 + - quay/quay-bridge-operator-bundle@sha256:10a25b433a252946ddfdf26a99e07ec2d96d94b35f90c8b8d42abad36cd55848 + # Bundle: quay-bridge-operator.v3.4.6 + - quay/quay-bridge-operator-bundle@sha256:e21ee1efdff187ac2f8a6ae61e5e9001543a17072c5008a9c30c8649d48fc6d0 + # Bundle: quay-bridge-operator.v3.5.1 + - quay/quay-bridge-operator-bundle@sha256:58ee282fc7e1847fd547f6c71ad358482f5cb0ace2bfcdd04e1a4d5622f8e1cc + # Bundle: quay-bridge-operator.v3.5.2 + - quay/quay-bridge-operator-bundle@sha256:b0ae23a6ddabfa5bee6445842ca0ff4d44f31ab83f50a5e0e9292381d5c9516d + # Bundle: quay-bridge-operator.v3.5.3 + - quay/quay-bridge-operator-bundle@sha256:8f2e39673bfed746747fe6e5cd7f6c1e66da30d270234c7d8287bfd30ca4ef82 + # Bundle: quay-bridge-operator.v3.5.4 + - quay/quay-bridge-operator-bundle@sha256:c06ce684b96ada36a923456641fbc9d30d57c49eb0bf3779fa6b65ae1565893f + # Bundle: quay-bridge-operator.v3.5.5 + - quay/quay-bridge-operator-bundle@sha256:b8a64c1ea334a97670756cc25501ea17bd1ef2aa51b3361f54ceed326027208c + # Bundle: quay-bridge-operator.v3.5.6 + - quay/quay-bridge-operator-bundle@sha256:d0cbc8dc1577ec4b5812664d1c5ff7c6043057b21a8ccd8a0ffc09bf8002276f +quay-operator: + # Bundle: quay-operator.v3.4.1 + - quay/quay-operator-bundle@sha256:34f4bc4eb4a4d35c629a0ec99d4e6b26cc6e1fe8c4c4cb27372e4f6112ce4954 + # Bundle: quay-operator.v3.4.2 + - quay/quay-operator-bundle@sha256:3fd2bae6aee6015d085eb0f6dd3943aea1fff524ed4b2b30967d948f30d8b595 + # Bundle: quay-operator.v3.4.3 + - quay/quay-operator-bundle@sha256:4a2b3c089220d33a5d326bb7965c1db8756c7734e13895e821f694358f0bb45c + # Bundle: quay-operator.v3.4.4 + - quay/quay-operator-bundle@sha256:82a5c7ad01ba4283752ce8364f17c591c4d73aeb712a37cc6ec731251587cd86 + # Bundle: quay-operator.v3.4.5 + - quay/quay-operator-bundle@sha256:cda00491693fe7a881789d48eef49adda369fdca3407cc711d4f8610b3d845e5 + # Bundle: quay-operator.v3.4.6 + - quay/quay-operator-bundle@sha256:69e10b27a15d15a17b09b381c40e4f984e16cbb88bdaec2ea581b5d2020c8376 + # Bundle: quay-operator.v3.5.1 + - quay/quay-operator-bundle@sha256:831f385afdd3f1fdd56175d41849dee9688527f51fddbde05064725d649389b7 + # Bundle: quay-operator.v3.5.2 + - quay/quay-operator-bundle@sha256:3140cdbead9357972f590fbb5a2cd6bb3062610e72c829b751cb066844551b9e + # Bundle: quay-operator.v3.5.3 + - quay/quay-operator-bundle@sha256:b98d0dc174570a49ff8fe416cd8fecf7f3c3d1f961678cfd6c51c30d68ee052b + # Bundle: quay-operator.v3.5.4 + - quay/quay-operator-bundle@sha256:7211fea49c5a539cc9db2af14a3b45793cab1ada45c9e81fb2e5e793b520673e + # Bundle: quay-operator.v3.5.5 + - quay/quay-operator-bundle@sha256:cc5b7bca04a602c34b4d0e9dd624ba51212debd4826600b58e7dfce181a3d871 + # Bundle: quay-operator.v3.5.6 + - quay/quay-operator-bundle@sha256:1d91ca01625eed740e8ffb88074be8ae5dfa83b5e78aa097cb0b68aa48d226d9 + # Bundle: red-hat-quay.v3.3.4 + - quay/quay-operator-bundle@sha256:2dda41a155c4c05fb8781f262d7e99529fa7f8dd9f28eaeb120cd6f70946cf44 +red-hat-camel-k: + # Bundle: red-hat-camel-k-operator.v1.3.0 + - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:7290c901a716ce5285659c69cc212f678f5e5c203fbdfef062307eb9aa8eb8ce + # Bundle: red-hat-camel-k-operator.v1.3.1 + - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:684bd0865612137b06177054af618ac1cb800ec9e9f4fa08824068e71e5deb37 + # Bundle: red-hat-camel-k-operator.v1.3.2 + - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:bd035c4c61c5dd8a7e8b9420a296733c5c410aea5bf993f973d61dcb2042e998 + # Bundle: red-hat-camel-k-operator.v1.3.3 + - integration/camel-k-rhel8-operator-bundle@sha256:d133ea9aa66646d493443dcabccebcbdb1e7a70dd84939ed772e912f4b3090b5 + # Bundle: red-hat-camel-k-operator.v1.4.0 + - integration/camel-k-rhel8-operator-bundle@sha256:ad80937e3fd953972d69a0a2b6cab9d8dc6fded2dd60484d2cd05dfa8f7f5429 +rhmtv-operator: + # Bundle: rhmtv-operator.2.0.0-beta.1 + - rhmtv-beta/rhmtv-operator-bundle@sha256:68b2aef42de74bef3502cfbb4c6a5af9092814629e6d946c92cf269fdd58b845 +rhsso-operator: + # Bundle: rhsso-operator.7.4.0 + - rh-sso-7-tech-preview/sso74-rhel8-operator-bundle@sha256:1a7e24f1d76e670b32b19fa34deb48c27ae75757249e1dce0ef6515cf29cab46 + # Bundle: rhsso-operator.7.4.1 + - rh-sso-7-tech-preview/sso74-rhel8-operator-bundle@sha256:6c405f51d712ac8952c30d8e97aaef15f9cdf73061c6014b6d9b11c080fe1a04 + # Bundle: rhsso-operator.7.4.8 + - rh-sso-7-tech-preview/sso74-rhel8-operator-bundle@sha256:4a311e35960d173e155dfd0e5fdf179bd6a7ffe1905b0878cae6f4549c7fe3b5 +sandboxed-containers-operator: + # Bundle: sandboxed-containers-operator.v1.0.0 + - openshift-sandboxed-containers-tech-preview/osc-operator-bundle@sha256:fb0e5274f4c1fd9de51068c7c342c12e862ca4b84e36ccd2b0fc1bd27cab304a +serverless-operator: + # Bundle: serverless-operator.v1.0.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:b1f90409e146f456c35927db9fa03681a06bc6588993820b5e7f23f41bcdd13d + # Bundle: serverless-operator.v1.1.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:647cf102d13ef1e4db397f3f4a661ba18874ced4fe8a898872826d4cefe425e6 + # Bundle: serverless-operator.v1.10.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:864547fac0966a74c2e1642bf7f4718fb8e449a094511df0dc0ae9a7119caf29 + # Bundle: serverless-operator.v1.10.1 + - openshift-serverless-1/serverless-operator-bundle@sha256:b494c1eb911e7949218ae8851b3df4d6d1c82c30249b032a16410e95b22b1425 + # Bundle: serverless-operator.v1.10.2 + - openshift-serverless-1/serverless-operator-bundle@sha256:c7ae914f498df12fae7e2b4ceed55ccea5047af7e0328ca480c8ec898d2e0d90 + # Bundle: serverless-operator.v1.11.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:781665631ab00e0c1a68b932624d84da76b65e3f140cb6561084ce7b5d0b68ca + # Bundle: serverless-operator.v1.12.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:4084782075db365dc60e1cd142e60d699f2a5c28d7ed4c414b3fef5e79529cac + # Bundle: serverless-operator.v1.13.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:f51bf79d93c571064a8038cd7ab40ced67ab87d5e0063afe3dda47935cb1eda6 + # Bundle: serverless-operator.v1.14.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:bb0f2c2f421501e12d559ae7d9247d084d020ec5a78c1b42f065edbccf45d69e + # Bundle: serverless-operator.v1.15.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:b8798424bb472c4f0b8dea86637d8d85f52e196a4d62393c71b1ac646c661a30 + # Bundle: serverless-operator.v1.16.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:45419a1e5f451a457a763e8767873595bf1977aee9ee69b5a15eaade90faf0d0 + # Bundle: serverless-operator.v1.2.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:0ac3c8490a5426c9e0ffe5d48823108b122420b6991c08d342ccab1ac7559f21 + # Bundle: serverless-operator.v1.3.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:262beb6c4826ce26a43cafd2962ac058c6053606afeb64132e031188e6d7f929 + # Bundle: serverless-operator.v1.4.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:c55434f36e23c9e1edcc6e5dbc843c380745227cb7a0dcea38c34e94e616640a + # Bundle: serverless-operator.v1.4.1 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:c1cb56d6188bf6622bdb05af087092ed9dbe3cc92645cba3e6289bb7d7eab7a1 + # Bundle: serverless-operator.v1.5.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:dcc60de51a12452dd1e470710daf2312917b720c2f5ced8874d4595d8760afb0 + # Bundle: serverless-operator.v1.6.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:7b43ec0c862eae649975e119bb122cc631be80ac117631dd4d3a31c761aa5810 + # Bundle: serverless-operator.v1.7.0 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:e30456268966cc10cf3648c386f680f728541cfd522123e59ed276e8e4bed55c + # Bundle: serverless-operator.v1.7.1 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:3747ebff5550e9c04abb0f9f1909e9df9c0dd7b85a791994248a29a7f399e199 + # Bundle: serverless-operator.v1.7.2 + - openshift-serverless-1/serverless-rhel8-operator-bundle-backfill@sha256:70bb9a7a04774ff386c44889ba94811ac49829822aadd0970b1a55178afdb60f + # Bundle: serverless-operator.v1.8.0 + - openshift-serverless-1/serverless-rhel8-operator@sha256:7ff51fbfc38689b72ad6c8591a8c7d21b32f48da3a6ca0ed27c3dc08af1a1738 + # Bundle: serverless-operator.v1.9.0 + - openshift-serverless-1/serverless-operator-bundle@sha256:f950157a8497edec98f412904ea80359f5b081873b5a79e72289d8db175e6da0 +service-registry-operator: + # Bundle: service-registry-operator.v1.0.0 + - integration/service-registry-rhel8-operator-metadata@sha256:49b50e2b4cfe341a30f6d4f8e8a6d411da7926335bd22a2397ba37acaf1ce756 + # Bundle: service-registry-operator.v1.0.1 + - integration/service-registry-rhel8-operator-metadata@sha256:39b0ba26ea73c6ba54c8ce0c86c2563a3284e5690f091a0536c9722e4f11d62a + # Bundle: service-registry-operator.v1.0.2 + - integration/service-registry-rhel8-operator-metadata@sha256:31c7dd275bc4c2b0d9ead9c2002963485791b279a90174191826236ac624a44b + # Bundle: service-registry-operator.v1.1.0 + - integration/service-registry-rhel8-operator-metadata@sha256:720fd4d865f4e4a404d9a7846d5608b87d540f87a49cb5161ce383be0233d4b4 + # Bundle: service-registry-operator.v1.1.1 + - integration/service-registry-rhel8-operator-metadata@sha256:a4f5b333f7009001bc27849f752aaf71daf03a534e65b59b88463e2b8ddce8f4 + # Bundle: service-registry-operator.v1.1.2 + - integration/service-registry-rhel8-operator-metadata@sha256:6269cb4e07a545c4b06557e7a3f3e6969c51cbc4fb13efcd593b4c045207bd06 + # Bundle: service-registry-operator.v1.1.3 + - integration/service-registry-rhel8-operator-metadata@sha256:a21153027b7a1146752cabb02f53bd2e7f5b72af3af38bd822e214e83e046f31 + # Bundle: service-registry-operator.v2.0.0 + - integration/service-registry-rhel8-operator-metadata@sha256:93da36db720902a958cfe3df7b0c67a96bd0fc2cf57f52c205f1e0dde8764bcd + # Bundle: service-registry-operator.v2.0.1 + - integration/service-registry-rhel8-operator-metadata@sha256:042a75d8910d68719bdc28a59d735a871986e3ceeb11ed135ebd1d7991a6df7c +service-telemetry-operator: + # Bundle: service-telemetry-operator.v1.2.0 + - stf/service-telemetry-operator-bundle@sha256:0dfb4f70ff662b3e900a019e8cc6c905d9640746915c8c540982b01db43d79de +servicemeshoperator: + # Bundle: servicemeshoperator.v1.0.0 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:c3d70b97d83fd5515f59a3407930b2f348d154f3a91c55b99775ccd40c7a03eb + # Bundle: servicemeshoperator.v1.0.1 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:0c5bc7032405382c183c1d901da28c8010dcedb971bc41af4b9974672d5edb0f + # Bundle: servicemeshoperator.v1.0.10 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:e065720afc628e0218f56c52a72acb80edc498ef4c502ac3eb1d6a10d06e17eb + # Bundle: servicemeshoperator.v1.0.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:b9260547c3cbec27ff8c06c7a039cc5816bfb9eda34a8651a956e47961640d88 + # Bundle: servicemeshoperator.v1.0.3 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:7fd11c843f707a7ab5593428e1f1694e739f795ced3a68b824c50c4efa589f6e + # Bundle: servicemeshoperator.v1.0.4 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:0a662a0d0ea3c7101100faf846750cdfcfb101d52542f400b0727b790226e52f + # Bundle: servicemeshoperator.v1.0.5 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:2b125380cda483bb7fa0dd44d0aa820ab7d35aa8d759b19b8147ff2b6e2b248a + # Bundle: servicemeshoperator.v1.0.6 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:f943aed689b4d320a6f5339f275d99e4b1b341857142373e82cc160f60eb9b99 + # Bundle: servicemeshoperator.v1.0.7 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:2427453fd9de937fcc546c50541821232ce7ebe811b0faded24e04483232c51b + # Bundle: servicemeshoperator.v1.0.8 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:cb6dc8b72bd78b7c991a02eb97bd567507c78b5873e3aafd4c1bad50bc8c1f72 + # Bundle: servicemeshoperator.v1.0.9 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:8daa9cb2fb63248b931c9b52307c6cc36bfb69f56275599d12325437331ffd5e + # Bundle: servicemeshoperator.v1.1.0 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:4fb42ad92227800d127894450e563b12fb9bae43a15e96768bf39841e4f58920 + # Bundle: servicemeshoperator.v1.1.1 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:25646a4f821823dad46bd9085d70347302c44b4aa3c3efd075f489665dc4fff3 + # Bundle: servicemeshoperator.v1.1.10 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:76d956130c3916e3fea16f22d6f2e89a01538964d4827aaa03ff7e85f440f064 + # Bundle: servicemeshoperator.v1.1.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:781dd1d9a575d381f64c96a7ca9f4b3c03435e03cd9bc37aa92388730ec89075 + # Bundle: servicemeshoperator.v1.1.2.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:520db9418a7a0c296d3d51f1cb52cd615ee85e349475fe96ce5ee9ca2343ee0a + # Bundle: servicemeshoperator.v1.1.2.3 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:10f9d6053445313f39debfc9f3c5ba8ce048797606d92cdc1a0d47c6d4e5f344 + # Bundle: servicemeshoperator.v1.1.3 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:0b8e61ba6509f2e0c53d138b57f79099af0fd3d57a3a6620ff770354c905bcce + # Bundle: servicemeshoperator.v1.1.4 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:e43298496afd3f9ae121c3264e1b3dfb7b3be729cc05d78de190b0cda83f5c73 + # Bundle: servicemeshoperator.v1.1.4.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:5bb7df9e5934c701cc558677d47e08cfbd72943d3b9da3c3ade1b327409716a9 + # Bundle: servicemeshoperator.v1.1.5 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:5ee0be8435ba05729c4ce4570b9af5f8f37038bd17357dc120bdeaec48a9a58c + # Bundle: servicemeshoperator.v1.1.5.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:48e9f6686e659fc1c5afe22d93328318b8581daec8ccfd311f546e2dbf639382 + # Bundle: servicemeshoperator.v1.1.6 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:1e467558e4e6e04c3ab886f87565fddf9dec2cf6a8993b54a212d0cbb462b99e + # Bundle: servicemeshoperator.v1.1.7 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:cf90097f2ef894bbf1778c647fb35988a5ff49e6fe0e064c34c6d6cea9ba6c61 + # Bundle: servicemeshoperator.v1.1.8 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:2db6c35143b19817cf7a0cec6e63bd817eeca3b2d1da0d6dcfbb70bbe8d96b16 + # Bundle: servicemeshoperator.v1.1.9 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:59cb2f1e42cf00401f6d468142fa0d5db042ec283b290c9e85821cac7a4fc183 + # Bundle: servicemeshoperator.v2.0.0 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:7e63825458a736885cb651fbefab4a59ff12c4f80af6c75c94cc286ec662db32 + # Bundle: servicemeshoperator.v2.0.0.1 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:3ce700eea13c1a10bd071ea0dba330fb6c643da093ff2f727af98bb91b4d3e78 + # Bundle: servicemeshoperator.v2.0.0.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:ee82bef55db5e94eea952f948d4a45d7666041011062607b85dd78694e142a55 + # Bundle: servicemeshoperator.v2.0.1 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:948914734cd5f38d7812eeeed5e3c41bd602d5157c3241f798f1e62cde64d494 + # Bundle: servicemeshoperator.v2.0.1.1 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:169917409ad8a04d390277f32f05fdbcdfefdab9fd126433034644b7332ac744 + # Bundle: servicemeshoperator.v2.0.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:9b5526585598cfca46e0bc9588ee0994dc4d0c41f6139c37fdc2ec99ddc4bc49 + # Bundle: servicemeshoperator.v2.0.3 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:88eda5f019aa359c8656d4f1f9df8ab7a9738f959617129753b8ab020947a4bf + # Bundle: servicemeshoperator.v2.0.4 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:f51d78f84e9f1c2600b610b9e1ba8c9540c147d117a40acc5a3315e7929ebc1a + # Bundle: servicemeshoperator.v2.0.5 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:711c9f891dc6bab088f67d180bb04a030039704bc30faaa1cc53653a53622aff + # Bundle: servicemeshoperator.v2.0.5.1 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:720471763f774b6478a033d5ddf43b1e89e99734d58386cf89b231654d59f792 + # Bundle: servicemeshoperator.v2.0.5.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:911e8c41e575560e88a20f4248c0b65a510b2f06224edad13e74639239d96222 + # Bundle: servicemeshoperator.v2.0.6 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:91d14a238a3e3e3777e44ab74b3748711d251c153eb03ceaf2bb97a5de8c9dfb + # Bundle: servicemeshoperator.v2.0.6.1 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:ec7694fd6f2a5be5e82a1e4720b864b2b4e6c7d8d42bf57bb3a13c3c6de0b871 + # Bundle: servicemeshoperator.v2.0.6.2 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:5819583c3c6854b4b4ef8c300375c8f0990831d8b8a8b261e9806fc857946575 + # Bundle: servicemeshoperator.v2.0.7 + - openshift-service-mesh/istio-rhel8-operator-metadata@sha256:23252eb43b702c175564d2814765f72690f1b1fadac4bc09fb302528d2ff193c +smart-gateway-operator: + # Bundle: smart-gateway-operator.v2.2.0 + - stf/smart-gateway-operator-bundle@sha256:320d8413adb0acdd9d7e157885191970ec3baa96cdb480e26e504d36fb1fa38c +submariner: + # Bundle: submariner.v0.8.1 + - rhacm2-tech-preview/submariner-operator-bundle@sha256:0de0f0ee7078e566f0ce21dcfb4eb9f0177ddc790a8a575b967635259df51da5 + # Bundle: submariner.v0.9.0 + - rhacm2-tech-preview/submariner-operator-bundle@sha256:7725b42971d6735cda68cac2cc46c39b972c8694d2ed21a203551912183aa90c +web-terminal: + # Bundle: web-terminal.v1.0.1 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:72654f9d638fc59231c4bfa75781aa2cf7ab911a3c42d6ba51232ee9894d54d5 + # Bundle: web-terminal.v1.1.0 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:320875845790b0da60dbfbe08fbd4112a80d47cd79510f16d2a1080c66420fd5 + # Bundle: web-terminal.v1.2.0 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:e08d38c7b0e585df1185d97890a8723827c47c6749e7d7cec0afa8c9359c3ff4 + # Bundle: web-terminal.v1.2.1 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:cbf74af4bf114e9207613a850a62116e99eb3148d3e27e3f7b540f39d6259234 + # Bundle: web-terminal.v1.3.0 + - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:e437111649abfadb422b093ca0ccba873d1d13736e90f2837609c9f4adcee2d1 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-all/template.go.tmpl b/hack/scripts/deprecated-bundles-repo/deprecate-all/template.go.tmpl index 90e2f073..ce97c9a6 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-all/template.go.tmpl +++ b/hack/scripts/deprecated-bundles-repo/deprecate-all/template.go.tmpl @@ -1,3 +1,10 @@ +############################################## +# - The following results were obtained programmatically from: +# - Image name: {{ .APIDashReport.ImageName }} +# - Image ID: {{ .APIDashReport.ImageID }} +# - Image Created at: {{ .APIDashReport.ImageBuild }} +# - From JSON report generated at: {{ .APIDashReport.GeneratedAt }} +############################################## {{ with .Deprecated }}{{ range . }}{{ .PackageName }}:{{ with .Bundles }}{{ range . }} # Bundle: {{ .Details }} - {{ .Paths }}{{ end }}{{ end }} From b6875c04047a1053a5c84d9b67a80fc530a98def Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Sun, 22 Aug 2021 14:38:44 +0100 Subject: [PATCH 3/3] improve result of deprecate-green reports to alllow others better follow up --- ...rtified_operator_index_v4.9_2021-08-22.yml | 39 ++-- ...dhat_marketplace_index_v4.9_2021-08-22.yml | 15 +- ..._redhat_operator_index_v4.8_2021-08-22.yml | 203 +++++++++--------- .../deprecate-green/template.go.tmpl | 3 +- 4 files changed, 132 insertions(+), 128 deletions(-) diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml index 68c50ced..a5a6d94b 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_certified_operator_index_v4.9_2021-08-22.yml @@ -5,45 +5,46 @@ # - Image Created at: 2021-08-19T16:49:52.05975663Z # - From JSON report generated at: 2021-08-22 ############################################## +# The following packages has distributions compatible with 4.9 couchbase-enterprise-certified: - # Bundle: couchbase-operator.v1.2.1 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v1.2.1 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:cf4a0448fa22963d711bb2d3af8b56e3c356073b76233f33421121403893a859 - # Bundle: couchbase-operator.v1.2.2 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v1.2.2 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:a2c9323d78e4a2e83810eb9df6e2f364356cd5432cee9bbd98c94784fbc27468 - # Bundle: couchbase-operator.v2.0.0 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.0.0 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:9462f3735254b047f4b80b539797b83c31faa0ad923fe4a351dba693e51cadef - # Bundle: couchbase-operator.v2.0.1 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.0.1 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:1ec6fc8724eed1b9260eb3765a6280c0f1781bf6d51e998903cb65f1e20b5d73 - # Bundle: couchbase-operator.v2.0.2 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.0.2 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:10ec7cafa6c4be66ea634b88e10a2b136fcd3322cad00309a7ccef455679c6ba - # Bundle: couchbase-operator.v2.1.0 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.1.0 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:78656ed0df41696e67429609e3262ec31f5ca9f5ca946300e6a4a6503c1bbd18 gpu-operator-certified: - # Bundle: gpu-operator-certified.v1.3.0 : Package has distributions compatible with 4.9 + # Bundle: gpu-operator-certified.v1.3.0 - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:3a70920f1aca227ebe5b1db44125c4370bad00379a941f0bac301d61ee112ba2 - # Bundle: gpu-operator-certified.v1.3.1 : Package has distributions compatible with 4.9 + # Bundle: gpu-operator-certified.v1.3.1 - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:243b8f0bbc2bda6bb13395f165fe5ec01999331e9b61878686d2073df3bf906c - # Bundle: gpu-operator-certified.v1.4.0 : Package has distributions compatible with 4.9 + # Bundle: gpu-operator-certified.v1.4.0 - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:0e69c29d33d5ab9d6676c6a6d5b89e57caddf44090bbabc74a12fea3005704bd - # Bundle: gpu-operator-certified.v1.5.1 : Package has distributions compatible with 4.9 + # Bundle: gpu-operator-certified.v1.5.1 - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:5ec5a5cbaf6e667e761d3a6273c44f5facf29dabe2ffe502f08fe345536c8dc8 - # Bundle: gpu-operator-certified.v1.5.2 : Package has distributions compatible with 4.9 + # Bundle: gpu-operator-certified.v1.5.2 - registry.connect.redhat.com/nvidia/gpu-operator-bundle@sha256:3a944050b7ba261b5451e639165eb230f1afbc3be7624a7d6039f138b09cb19f ibm-block-csi-operator: - # Bundle: ibm-block-csi-operator.v1.3.0 : Package has distributions compatible with 4.9 + # Bundle: ibm-block-csi-operator.v1.3.0 - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:aa2f7b4b4b2d489cd9671b0b45d696ca2fcb8f76ad2b2551a06475917b9fdc99 - # Bundle: ibm-block-csi-operator.v1.4.0 : Package has distributions compatible with 4.9 + # Bundle: ibm-block-csi-operator.v1.4.0 - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:d78c62ef65db4858374cb7bc8434ef6442f6aef306475eb482d130abce8db971 - # Bundle: ibm-block-csi-operator.v1.5.0 : Package has distributions compatible with 4.9 + # Bundle: ibm-block-csi-operator.v1.5.0 - registry.connect.redhat.com/ibm/ibm-block-csi-operator-bundle@sha256:4e6b7b6006f6ad537b75fb681805003d4873230ef2706cab3333c4567502361c nginx-ingress-operator: - # Bundle: nginx-ingress-operator.v0.0.4 : Package has distributions compatible with 4.9 + # Bundle: nginx-ingress-operator.v0.0.4 - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:5825614ced508b2d168fca5dc0d53e169c0c598bf9008dd3ee0d6bf75781d3f6 - # Bundle: nginx-ingress-operator.v0.0.6 : Package has distributions compatible with 4.9 + # Bundle: nginx-ingress-operator.v0.0.6 - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:d53eea0345b2e18fb84d1208f5ca6c2e74c425403ba1611b5b1ee525315da0ae - # Bundle: nginx-ingress-operator.v0.0.7 : Package has distributions compatible with 4.9 + # Bundle: nginx-ingress-operator.v0.0.7 - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:3dc0dc8f785195dc30977d96d038b8101ddb79e4e7ea9375c94bdbb533d4969b - # Bundle: nginx-ingress-operator.v0.1.0 : Package has distributions compatible with 4.9 + # Bundle: nginx-ingress-operator.v0.1.0 - registry.connect.redhat.com/nginx/nginx-ingress-operator-bundle@sha256:bb5088b3310edf490b5b72e89077326cb92ce6ad543330953c8fab92dfb6637d - # Bundle: nginx-ingress-operator.v0.2.0 : Package has distributions compatible with 4.9 + # Bundle: nginx-ingress-operator.v0.2.0 - 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.9_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml index 8a6f8127..2b30a1da 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_marketplace_index_v4.9_2021-08-22.yml @@ -5,19 +5,20 @@ # - Image Created at: 2021-08-18T22:00:24.074412133Z # - From JSON report generated at: 2021-08-22 ############################################## +# The following packages has distributions compatible with 4.9 couchbase-enterprise-certified-rhmp: - # Bundle: couchbase-operator.v1.2.1 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v1.2.1 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:e97934cd2d4218d63105de60bcc8872e3d5aefefe81536d815e29463b2b2dc50 - # Bundle: couchbase-operator.v1.2.2 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v1.2.2 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:6a5bda304437d7f303b09baf5f489654ca64b5ecbdc7c412798689c6392adcb6 - # Bundle: couchbase-operator.v2.0.0 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.0.0 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:0778f04a4ff5fdbbcd57abf6ad06f1f9081281873dd927e48ff4be288588135b - # Bundle: couchbase-operator.v2.0.1 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.0.1 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:246ebf83967674dcdf0abb1553544690564927ea698dbf1928f3097f388ad677 - # Bundle: couchbase-operator.v2.0.2 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.0.2 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:27f2297c5bf84bf8c28dd67bf806436992400763ada87263ebf90abe6c3cb692 - # Bundle: couchbase-operator.v2.1.0 : Package has distributions compatible with 4.9 + # Bundle: couchbase-operator.v2.1.0 - registry.connect.redhat.com/couchbase/operator-bundle@sha256:7d00537b2505fdb5418ad7a279451d5953f0b12b0223ac328ba885be73cbdbed seldon-deploy-operator-rhmp: - # Bundle: seldon-deploy-operator.v0.7.0 : Package has distributions compatible with 4.9 + # Bundle: seldon-deploy-operator.v0.7.0 - registry.connect.redhat.com/seldonio/seldon-deploy-operator-bundle@sha256:ec4e1dd7d2049b5378e41987cec3fa36470aa20c89a98a96cb0ed433437afe34 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml index 151f2ba3..dff94cbe 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/deprecated_registry.redhat.io_redhat_redhat_operator_index_v4.8_2021-08-22.yml @@ -5,220 +5,221 @@ # - Image Created at: 2021-08-19T18:05:29.215979732Z # - From JSON report generated at: 2021-08-21 ############################################## +# The following packages has distributions compatible with 4.9 advanced-cluster-management: - # Bundle: advanced-cluster-management.v2.0.0 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.0 - rhacm2/acm-operator-bundle@sha256:280bf802843fab435a2946a49324900223f14ae01abbb113624bc056b5ab0188 - # Bundle: advanced-cluster-management.v2.0.1 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.1 - rhacm2/acm-operator-bundle@sha256:1e1cd6a2950349e3e619e2ffe15cd10d36a5b15e1a9e3b0024bdb11a2355b7ca - # Bundle: advanced-cluster-management.v2.0.10 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.10 - rhacm2/acm-operator-bundle@sha256:ea42543f1127fd6ec53cf7f6c7f61f3e0b62f1b210844584d89d60c4bf53fef9 - # Bundle: advanced-cluster-management.v2.0.2 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.2 - rhacm2/acm-operator-bundle@sha256:75c32ced4add3c6c583daf0bcf81b13cbeb99fd2e24f2c3261fb95ac7bcec4f1 - # Bundle: advanced-cluster-management.v2.0.3 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.3 - rhacm2/acm-operator-bundle@sha256:c068e6f697764fe0aa82f5572450bbf6cc80d9670a7cb65a8753afa9fa9f8bf6 - # Bundle: advanced-cluster-management.v2.0.4 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.4 - rhacm2/acm-operator-bundle@sha256:1af785b35226525dc1265123bc274bccb025439ea396e560d0a562791f2c8217 - # Bundle: advanced-cluster-management.v2.0.5 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.5 - rhacm2/acm-operator-bundle@sha256:3a8c3261d61779907a9a86bb4a2699bd8c60f3ec6466cf6656034b7eda127bc6 - # Bundle: advanced-cluster-management.v2.0.6 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.6 - rhacm2/acm-operator-bundle@sha256:d97ae02a20eaaa1a0770710a7b5808787d9617ce63c03d3c3f08a11f5bf41aa3 - # Bundle: advanced-cluster-management.v2.0.7 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.7 - rhacm2/acm-operator-bundle@sha256:e77e15271554a64192f4c80a864efe4f082caeeb94d72f10165beb5cba043ebf - # Bundle: advanced-cluster-management.v2.0.8 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.8 - rhacm2/acm-operator-bundle@sha256:c86057b81e3f4a2979f6d5e2ddcbb9fc31549f8d528497a4924e53b26fd75c8c - # Bundle: advanced-cluster-management.v2.0.9 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.0.9 - rhacm2/acm-operator-bundle@sha256:a0a2be3279d03955acf2c2471384c819d45ee765401242eeac20751fe3c835fd - # Bundle: advanced-cluster-management.v2.1.0 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.1.0 - rhacm2/acm-operator-bundle@sha256:76435cfe5728bbcacabb1a444ca45df913a7d5a8541b0cc40496cd11d77865db - # Bundle: advanced-cluster-management.v2.1.1 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.1.1 - rhacm2/acm-operator-bundle@sha256:f02648187cb8cc1c34a6c463ce7f307cab7016da4c06e836971b9bd23d967394 - # Bundle: advanced-cluster-management.v2.1.2 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.1.2 - rhacm2/acm-operator-bundle@sha256:9725b91409219faf9e37bab93529ca21bfd209aab3395403866275a3bd08f072 - # Bundle: advanced-cluster-management.v2.1.3 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.1.3 - rhacm2/acm-operator-bundle@sha256:510b81899ac25c4318e31a7a44b5c2645fc14e24cc463847f19c5229e8d87c6f - # Bundle: advanced-cluster-management.v2.1.4 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.1.4 - rhacm2/acm-operator-bundle@sha256:5d6c8f7a046eaebd4cee3ad10151bfa3bb176df8e20cd475db66becdcd7356fd - # Bundle: advanced-cluster-management.v2.1.5 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.1.5 - rhacm2/acm-operator-bundle@sha256:4e4fc6cdfec03a175ada82a98044ba6ae80e5d7fc096a24bc5f2977f49d6c70b - # Bundle: advanced-cluster-management.v2.1.6 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.1.6 - rhacm2/acm-operator-bundle@sha256:55906425c2619315d98a9f2b3b014379bfa14875592d18a550a93344097c5496 - # Bundle: advanced-cluster-management.v2.2.0 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.0 - rhacm2/acm-operator-bundle@sha256:96e323e923dfb556daadc87e990eb89277c21926e56e378bae60bf1d2a46931a - # Bundle: advanced-cluster-management.v2.2.1 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.1 - rhacm2/acm-operator-bundle@sha256:adba2e6b585bde1c05d041097a9f19b0753230480032aa44ad1b27fecbf819f5 - # Bundle: advanced-cluster-management.v2.2.2 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.2 - rhacm2/acm-operator-bundle@sha256:82f8508111f307c25e458a2283e86a21eaeeaa2cd0b335766174f324f6bd392d - # Bundle: advanced-cluster-management.v2.2.3 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.3 - rhacm2/acm-operator-bundle@sha256:3560cfe5aa98787496ad1db0440c32a53c9f91ec6bf56fe674b44fcce0913fbc - # Bundle: advanced-cluster-management.v2.2.4 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.4 - rhacm2/acm-operator-bundle@sha256:5af9a80acccef3f230dca67538276c3777568cbc98b20d6018c5a9843ab18005 - # Bundle: advanced-cluster-management.v2.2.5 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.5 - rhacm2/acm-operator-bundle@sha256:2dc9b26f20e89ab7faa9b6a4a4cdf3137061a5115447d0342de268b8fbdd34ad - # Bundle: advanced-cluster-management.v2.2.6 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.6 - rhacm2/acm-operator-bundle@sha256:5f9235a715e8091889aff5427683c6a529d222a8126a883da570fb531cb2771b - # Bundle: advanced-cluster-management.v2.2.7 : Package has distributions compatible with 4.9 + # Bundle: advanced-cluster-management.v2.2.7 - rhacm2/acm-operator-bundle@sha256:1292fa5177f41a96698a37a35a96d61c1e9c85934a71b4fe91ed9416e78658b3 amq-online: - # Bundle: amq-online.1.4.0 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.4.0 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:ed1658893b5e78ea6d684dac7f237a80eb1a5fe146996c39152c077ea59f0d61 - # Bundle: amq-online.1.4.1 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.4.1 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:6195b018194b457eb6bad2c53381bdfa4d84329e86d561580a63a9c2faab66d9 - # Bundle: amq-online.1.4.2 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.4.2 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:28157b46dcee1e5fffef9260aa9639df03cca2d8e84ccd63bf1fd966c17c10d5 - # Bundle: amq-online.1.4.4 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.4.4 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:f0f899b90e0ab0e9cc9818e4181beccf178543388c14570da0fd8dda0b4abaa9 - # Bundle: amq-online.1.5.0 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.5.0 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:b350796e748ac56aeaf71711f4eaae06d2b9f77fc1c9aeec1680c9ab096e663c - # Bundle: amq-online.1.5.1 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.5.1 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:609f34c93dfc53fb853c45d395fcb5c07b6d96e7ab075b036c785203415cfc11 - # Bundle: amq-online.1.5.2 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.5.2 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:81fabc8e6bdc05a772fbf4401331e8ccc568593dafada38fff4c8aaf0565ba06 - # Bundle: amq-online.1.5.3 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.5.3 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:e81aac14ba253b4a89370f8aabfebf491f34621cf8d54efd6b8b3796ca8732bb - # Bundle: amq-online.1.6.1 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.6.1 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:c5b5ba7265c5ac8e77ff9836746a8ac9ca5e1967270adffffdfe32d8a14968cf - # Bundle: amq-online.1.6.2 : Package has distributions compatible with 4.9 + # Bundle: amq-online.1.6.2 - amq7/amq-online-1-controller-manager-rhel7-operator-metadata@sha256:debf79ef45e0fdd229bdfae29ff9a40926854278b39b4aa0d364f5ae9c02c6dc amq-streams: - # Bundle: amqstreams.v1.6.3 : Package has distributions compatible with 4.9 + # Bundle: amqstreams.v1.6.3 - amq7/amqstreams-rhel7-operator-metadata@sha256:cc19289ff777153ca9ab3cebc45e4c98e9c083437d5e2b6407244aead6e89312 - # Bundle: amqstreams.v1.7.0 : Package has distributions compatible with 4.9 + # Bundle: amqstreams.v1.7.0 - amq7/amqstreams-rhel7-operator-metadata@sha256:6ef3bf83ee075cff73ecc2df897d747b6d589df423dcb3ac1f493d1535e627eb - # Bundle: amqstreams.v1.7.1 : Package has distributions compatible with 4.9 + # Bundle: amqstreams.v1.7.1 - amq7/amqstreams-rhel7-operator-metadata@sha256:ec906a4abe8e72844e0fd0ebf0abdc312c0b599e22dc3b7c80b9543cdc76b622 - # Bundle: amqstreams.v1.7.2 : Package has distributions compatible with 4.9 + # Bundle: amqstreams.v1.7.2 - amq7/amq-streams-rhel7-operator-metadata@sha256:4ae366be201075ebd86d5bf352d5c77cfa13b8faf5eee5093bfd480ca3a392a2 - # Bundle: amqstreams.v1.7.3 : Package has distributions compatible with 4.9 + # Bundle: amqstreams.v1.7.3 - amq7/amq-streams-rhel7-operator-metadata@sha256:e07c00d943b6951f66c2b629f1086fc4357746b09f647856d8802c4fcb4105fc businessautomation-operator: - # Bundle: businessautomation-operator.1.2.0 : Package has distributions compatible with 4.9 + # Bundle: businessautomation-operator.1.2.0 - rhpam-7/rhpam-operator-bundle@sha256:df348c6ad999c3be37ab19b3651b5a61ab1fa55f7b2ff02b1fea48bfad69ab4a - # Bundle: businessautomation-operator.1.2.1 : Package has distributions compatible with 4.9 + # Bundle: businessautomation-operator.1.2.1 - rhpam-7/rhpam-operator-bundle@sha256:a9d8ced4deb7113de7c97efc226cb9d2ee912be2ce6e67418ddcee423f2a9204 - # Bundle: businessautomation-operator.1.3.0 : Package has distributions compatible with 4.9 + # Bundle: businessautomation-operator.1.3.0 - rhpam-7/rhpam-operator-bundle@sha256:c119d2dc15f7d0038623fc2d682e513bba0cbbc63e0095ab769bd119faf59b7f - # Bundle: businessautomation-operator.1.4.0 : Package has distributions compatible with 4.9 + # Bundle: businessautomation-operator.1.4.0 - rhpam-7/rhpam-operator-bundle@sha256:5929b5d30f2c3c215bf0c3052101b618d1e16c39f8b525a22ceb3541009c1a2c - # Bundle: businessautomation-operator.1.4.1 : Package has distributions compatible with 4.9 + # Bundle: businessautomation-operator.1.4.1 - rhpam-7/rhpam-operator-bundle@sha256:3e7da2092cffe5bd2161c98b86e26ce6107248ca52c94a3a333b180f623333de - # Bundle: businessautomation-operator.7.8.0 : Package has distributions compatible with 4.9 + # Bundle: businessautomation-operator.7.8.0 - rhpam-7/rhpam-operator-bundle@sha256:8bd9ac4b1ddcc03f2e6beb131bcfaf0f65ba6b90039e7a1af9dda631ae8d37f8 - # Bundle: businessautomation-operator.7.8.1 : Package has distributions compatible with 4.9 + # Bundle: businessautomation-operator.7.8.1 - rhpam-7/rhpam-operator-bundle@sha256:5a5429d84cc36ce29d95fe86d9b6a9eaef0c3ed3d1925fd9b653904c411cbcb4 codeready-workspaces: - # Bundle: crwoperator.v2.0.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.0.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:7b7558c8d9170bd27c9dcf2e62df827d477dbbea694f7040f5cd5bcd0eb598a4 - # Bundle: crwoperator.v2.1.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.1.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:af5795b85faa63523353eba59b244b94578eed6ee11d0a4f834e64009395a069 - # Bundle: crwoperator.v2.1.1 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.1.1 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:aba490f87a1ed4c4a47cb5cb5a82ea1bd67031db0382df400d81e13a125f4aff - # Bundle: crwoperator.v2.2.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.2.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:b9bc3d8fb71df47ef32e4f2c7d74b938887fbe2683b132d76e0215eb6cee4a9a - # Bundle: crwoperator.v2.3.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.3.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:1007e3de27d2235e319c23b08dce4ad83d3569f37fff37ad8174b29909e01f04 - # Bundle: crwoperator.v2.4.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.4.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:289f77b62c012b6ef09930acf1466749327ef9a1594eb39e077ff7116f5be73b - # Bundle: crwoperator.v2.5.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.5.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:c48e4c3f85e30ab3a209369f7fd9212d34fbe2b97de5334439b06742e9cdec2a - # Bundle: crwoperator.v2.5.1 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.5.1 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:181dc432a5aa228ca57a4c23218391f846284e258f72ed306f15ef884e991ee8 - # Bundle: crwoperator.v2.6.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.6.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:496aeecec52b0645cfcaa8b7ee7e71c55f823c7520ce3d2c9238d522c17a6e98 - # Bundle: crwoperator.v2.7.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.7.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:357f830568a690ea194acdf2b1c5d66b54b10bf1a0dc58d1e771454692dc2270 - # Bundle: crwoperator.v2.7.1 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.7.1 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:69761d7600d9602fd89f600d9670156e71f68c82802578b0db729cfa0087c89b - # Bundle: crwoperator.v2.8.0 : Package has distributions compatible with 4.9 + # Bundle: crwoperator.v2.8.0 - codeready-workspaces/crw-2-rhel8-operator-metadata@sha256:080bc58804ca40380c5ed58a5bbdd5fe035fed84a07e58d1c590e06695bbb720 elasticsearch-operator: - # Bundle: elasticsearch-operator.5.1.0-96 : Package has distributions compatible with 4.9 + # Bundle: elasticsearch-operator.5.1.0-96 - openshift-logging/elasticsearch-operator-bundle@sha256:f5cebaa2582fee8e6420b009efb9f4d894a487ebf5ab8c717408442eb0cd9bc1 - # Bundle: elasticsearch-operator.5.1.1-36 : Package has distributions compatible with 4.9 + # Bundle: elasticsearch-operator.5.1.1-36 - openshift-logging/elasticsearch-operator-bundle@sha256:fed2865db0b9766c2b524c27ab055e7a5a7ae7c0f1d5397e6f77c1d9a30a8191 fuse-console: - # Bundle: fuse-console.v7.7.1 : Package has distributions compatible with 4.9 + # Bundle: fuse-console.v7.7.1 - fuse7/fuse-console-operator-bundle@sha256:5e3e9d565510c1a12351f89f912e21f318ee0d7ed52fc8cca6051a6dbf3a6e6d - # Bundle: fuse-console.v7.8.2 : Package has distributions compatible with 4.9 + # Bundle: fuse-console.v7.8.2 - fuse7/fuse-console-rhel7-operator-metadata@sha256:d207bf3721bdfb6d4d90cda5245b3c49cedef0ba2a308ed64cd00aa6fea7b152 fuse-online: - # Bundle: fuse-online-operator.v7.7.1 : Package has distributions compatible with 4.9 + # Bundle: fuse-online-operator.v7.7.1 - fuse7/fuse-online-operator-bundle@sha256:93d12b2fc2a2e0263890529e227dcb9e37172139f63a95d39b1dce4f19cee39c - # Bundle: fuse-online-operator.v7.8.1 : Package has distributions compatible with 4.9 + # Bundle: fuse-online-operator.v7.8.1 - fuse7/fuse-online-operator-bundle@sha256:0161c67a3c6be92306f68c2a3b7d9ce3edcf57fdeb1bf2843f988cc85fefc89b klusterlet-product: - # Bundle: klusterlet-product.v2.2.0 : Package has distributions compatible with 4.9 + # Bundle: klusterlet-product.v2.2.0 - rhacm2/klusterlet-operator-bundle@sha256:58b7976358bd5b30958602c820c5d3b0ba136e65fd7424ce92d23801dbd0976f - # Bundle: klusterlet-product.v2.2.1 : Package has distributions compatible with 4.9 + # Bundle: klusterlet-product.v2.2.1 - rhacm2/klusterlet-operator-bundle@sha256:dd102ee9ec3a32312e63309e5cd5526e8eb1eb7e7b5ee299b95302618c00a0cb - # Bundle: klusterlet-product.v2.2.2 : Package has distributions compatible with 4.9 + # Bundle: klusterlet-product.v2.2.2 - rhacm2/klusterlet-operator-bundle@sha256:d3b166fed222fbbcfe70e7a3872e8c1ac02a5ccd2cbf8585bedd29c005f6a16d - # Bundle: klusterlet-product.v2.2.3 : Package has distributions compatible with 4.9 + # Bundle: klusterlet-product.v2.2.3 - rhacm2/klusterlet-operator-bundle@sha256:33651be7274ff2cd66c9e23e7eb20d5d5ca9649aed6777bb8b0ec03dfc8b0707 - # Bundle: klusterlet-product.v2.2.5 : Package has distributions compatible with 4.9 + # Bundle: klusterlet-product.v2.2.5 - rhacm2/klusterlet-operator-bundle@sha256:e5a7688faeb49b5ba135fb37251926c9d6c877c0793a1d88a786f0cd2efb03c1 - # Bundle: klusterlet-product.v2.2.6 : Package has distributions compatible with 4.9 + # Bundle: klusterlet-product.v2.2.6 - rhacm2/klusterlet-operator-bundle@sha256:91e79536fefd2f5f6d4dde0a46441fa610c410c721bdfbc3f804da5e2e8c77ee - # Bundle: klusterlet-product.v2.2.7 : Package has distributions compatible with 4.9 + # Bundle: klusterlet-product.v2.2.7 - rhacm2/klusterlet-operator-bundle@sha256:5524fe5d379b9fd4351243ccd3c0acffef58055e0782a527a90fdd711e8d5044 kubevirt-hyperconverged: - # Bundle: kubevirt-hyperconverged-operator.v2.5.0 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.5.0 - container-native-virtualization/hco-bundle-registry@sha256:546e4497d96fd0ef834acbe7dae2c7383d2e5325b14cdaec2e631560d102720f - # Bundle: kubevirt-hyperconverged-operator.v2.5.1 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.5.1 - container-native-virtualization/hco-bundle-registry@sha256:9811228cf63e2d85529410c0fcaa36999a25dcede649dc4d7d809b98b0a1c332 - # Bundle: kubevirt-hyperconverged-operator.v2.5.2 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.5.2 - container-native-virtualization/hco-bundle-registry@sha256:90a1f9a2db2b0d1ac78586e79dd0ea3e1ca0a20300e4da95118d0bb77271b39b - # Bundle: kubevirt-hyperconverged-operator.v2.5.3 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.5.3 - container-native-virtualization/hco-bundle-registry@sha256:76402738a5a52397b164aa85850df9d5ffa446a2be4b0956d30120c1eade0848 - # Bundle: kubevirt-hyperconverged-operator.v2.5.4 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.5.4 - container-native-virtualization/hco-bundle-registry@sha256:4ed94efd3ddf14dc111a473c891469f7251cd94ccf2046c96524d17ca82c6602 - # Bundle: kubevirt-hyperconverged-operator.v2.6.0 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.6.0 - container-native-virtualization/hco-bundle-registry@sha256:1d08941f581ce9c39fde20ca1d6e17b2732b78504cd490ccaddc75e5db144a08 - # Bundle: kubevirt-hyperconverged-operator.v2.6.1 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.6.1 - container-native-virtualization/hco-bundle-registry@sha256:e99ff69879859d0bf689e052839c47d95e47da44926f86240d8f833858af77a2 - # Bundle: kubevirt-hyperconverged-operator.v2.6.2 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.6.2 - container-native-virtualization/hco-bundle-registry@sha256:6639ea7b8cf2d0f4a1df71116525c3383c9a55962403fee4bae461e1095d3718 - # Bundle: kubevirt-hyperconverged-operator.v2.6.3 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.6.3 - container-native-virtualization/hco-bundle-registry@sha256:37bbf59bce47d6d469b908003f8545b4e2c87b52b274da59daa1993a22fe5591 - # Bundle: kubevirt-hyperconverged-operator.v2.6.4 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.6.4 - container-native-virtualization/hco-bundle-registry@sha256:23dee295d93e7e917cefdbf0a6933bcf6136d0f44d723f03f0e533990ca8f14e - # Bundle: kubevirt-hyperconverged-operator.v2.6.5 : Package has distributions compatible with 4.9 + # Bundle: kubevirt-hyperconverged-operator.v2.6.5 - container-native-virtualization/hco-bundle-registry@sha256:4a64b511e6d455bc5bcbd821456b1f089cec9f902d90289dd89b8a923b09d803 openshift-pipelines-operator-rh: - # Bundle: redhat-openshift-pipelines-operator.v1.2.3 : Package has distributions compatible with 4.9 + # Bundle: redhat-openshift-pipelines-operator.v1.2.3 - openshift-pipelines-tech-preview/pipelines-rhel8-operator-metadata@sha256:0f4b4082d0b087da0a56cf43ce17763925ac2bca743bf1ef164a38375ae3c5a4 red-hat-camel-k: - # Bundle: red-hat-camel-k-operator.v1.3.0 : Package has distributions compatible with 4.9 + # Bundle: red-hat-camel-k-operator.v1.3.0 - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:7290c901a716ce5285659c69cc212f678f5e5c203fbdfef062307eb9aa8eb8ce - # Bundle: red-hat-camel-k-operator.v1.3.1 : Package has distributions compatible with 4.9 + # Bundle: red-hat-camel-k-operator.v1.3.1 - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:684bd0865612137b06177054af618ac1cb800ec9e9f4fa08824068e71e5deb37 - # Bundle: red-hat-camel-k-operator.v1.3.2 : Package has distributions compatible with 4.9 + # Bundle: red-hat-camel-k-operator.v1.3.2 - integration-tech-preview/camel-k-rhel8-operator-metadata@sha256:bd035c4c61c5dd8a7e8b9420a296733c5c410aea5bf993f973d61dcb2042e998 - # Bundle: red-hat-camel-k-operator.v1.3.3 : Package has distributions compatible with 4.9 + # Bundle: red-hat-camel-k-operator.v1.3.3 - integration/camel-k-rhel8-operator-bundle@sha256:d133ea9aa66646d493443dcabccebcbdb1e7a70dd84939ed772e912f4b3090b5 service-registry-operator: - # Bundle: service-registry-operator.v1.0.0 : Package has distributions compatible with 4.9 + # Bundle: service-registry-operator.v1.0.0 - integration/service-registry-rhel8-operator-metadata@sha256:49b50e2b4cfe341a30f6d4f8e8a6d411da7926335bd22a2397ba37acaf1ce756 - # Bundle: service-registry-operator.v1.0.1 : Package has distributions compatible with 4.9 + # Bundle: service-registry-operator.v1.0.1 - integration/service-registry-rhel8-operator-metadata@sha256:39b0ba26ea73c6ba54c8ce0c86c2563a3284e5690f091a0536c9722e4f11d62a - # Bundle: service-registry-operator.v1.0.2 : Package has distributions compatible with 4.9 + # Bundle: service-registry-operator.v1.0.2 - integration/service-registry-rhel8-operator-metadata@sha256:31c7dd275bc4c2b0d9ead9c2002963485791b279a90174191826236ac624a44b - # Bundle: service-registry-operator.v1.1.0 : Package has distributions compatible with 4.9 + # Bundle: service-registry-operator.v1.1.0 - integration/service-registry-rhel8-operator-metadata@sha256:720fd4d865f4e4a404d9a7846d5608b87d540f87a49cb5161ce383be0233d4b4 - # Bundle: service-registry-operator.v1.1.1 : Package has distributions compatible with 4.9 + # Bundle: service-registry-operator.v1.1.1 - integration/service-registry-rhel8-operator-metadata@sha256:a4f5b333f7009001bc27849f752aaf71daf03a534e65b59b88463e2b8ddce8f4 - # Bundle: service-registry-operator.v1.1.2 : Package has distributions compatible with 4.9 + # Bundle: service-registry-operator.v1.1.2 - integration/service-registry-rhel8-operator-metadata@sha256:6269cb4e07a545c4b06557e7a3f3e6969c51cbc4fb13efcd593b4c045207bd06 - # Bundle: service-registry-operator.v1.1.3 : Package has distributions compatible with 4.9 + # Bundle: service-registry-operator.v1.1.3 - integration/service-registry-rhel8-operator-metadata@sha256:a21153027b7a1146752cabb02f53bd2e7f5b72af3af38bd822e214e83e046f31 submariner: - # Bundle: submariner.v0.8.1 : Package has distributions compatible with 4.9 + # Bundle: submariner.v0.8.1 - rhacm2-tech-preview/submariner-operator-bundle@sha256:0de0f0ee7078e566f0ce21dcfb4eb9f0177ddc790a8a575b967635259df51da5 web-terminal: - # Bundle: web-terminal.v1.0.1 : Package has distributions compatible with 4.9 + # Bundle: web-terminal.v1.0.1 - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:72654f9d638fc59231c4bfa75781aa2cf7ab911a3c42d6ba51232ee9894d54d5 - # Bundle: web-terminal.v1.1.0 : Package has distributions compatible with 4.9 + # Bundle: web-terminal.v1.1.0 - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:320875845790b0da60dbfbe08fbd4112a80d47cd79510f16d2a1080c66420fd5 - # Bundle: web-terminal.v1.2.0 : Package has distributions compatible with 4.9 + # Bundle: web-terminal.v1.2.0 - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:e08d38c7b0e585df1185d97890a8723827c47c6749e7d7cec0afa8c9359c3ff4 - # Bundle: web-terminal.v1.2.1 : Package has distributions compatible with 4.9 + # Bundle: web-terminal.v1.2.1 - web-terminal-tech-preview/web-terminal-rhel8-operator-metadata@sha256:cbf74af4bf114e9207613a850a62116e99eb3148d3e27e3f7b540f39d6259234 diff --git a/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl b/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl index 7755ee3c..054e0696 100644 --- a/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl +++ b/hack/scripts/deprecated-bundles-repo/deprecate-green/template.go.tmpl @@ -5,7 +5,8 @@ # - Image Created at: {{ .APIDashReport.ImageBuild }} # - From JSON report generated at: {{ .APIDashReport.GeneratedAt }} ############################################## +# The following packages has distributions compatible with 4.9 {{ with .Deprecated }}{{ range . }}{{ .PackageName }}:{{ with .Bundles }}{{ range . }} - # Bundle: {{ .Details }} : Package has distributions compatible with 4.9 + # Bundle: {{ .Details }} - {{ .Paths }}{{ end }}{{ end }} {{ end }}{{ end }} \ No newline at end of file