diff --git a/.gitignore b/.gitignore index bbba67cb..4f930774 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ # Leftover staging directory for importing legacy catalog. Can be safely deleted /catalog-migrate/ + +# Ignore VS code local settings +.vscode diff --git a/.tekton/check-generated-files-up-to-date-task.yaml b/.tekton/check-generated-files-up-to-date-task.yaml index 319065c9..e39247d7 100644 --- a/.tekton/check-generated-files-up-to-date-task.yaml +++ b/.tekton/check-generated-files-up-to-date-task.yaml @@ -27,17 +27,15 @@ spec: - use - $(params.SOURCE_ARTIFACT)=/var/workdir/source - name: check-generated-files-up-to-date - image: registry.access.redhat.com/ubi9:latest@sha256:8f1496d50a66e41433031bf5bdedd4635520e692ccd76ffcb649cf9d30d669af + image: registry.redhat.io/ubi9/go-toolset@sha256:3ce6311380d5180599a3016031a9112542d43715244816d1d0eabc937952667b workingDir: /var/workdir/source + securityContext: + runAsUser: 0 script: | #!/usr/bin/env bash set -euo pipefail set -x - time dnf -y upgrade --nobest - # TODO: find an image with these preinstalled to reduce flakiness - time dnf -y install git make jq - time make clean cmd="make valid-catalogs" time $cmd diff --git a/.tekton/checks.yaml b/.tekton/checks.yaml index 1a33f1d1..eb938262 100644 --- a/.tekton/checks.yaml +++ b/.tekton/checks.yaml @@ -85,6 +85,28 @@ spec: - name: basic-auth workspace: git-auth + - name: run-go-unit-tests + taskSpec: + metadata: + name: run-go-unit-tests + volumes: + - name: workdir + emptyDir: { } + stepTemplate: + volumeMounts: + - mountPath: /var/workdir + name: workdir + steps: + - name: use-trusted-artifact + image: quay.io/redhat-appstudio/build-trusted-artifacts:latest@sha256:9b180776a41d9a22a1c51539f1647c60defbbd55b44bbebdd4130e33512d8b0d + args: + - use + - $(tasks.clone-repository.results.SOURCE_ARTIFACT)=/var/workdir/source + - name: run-go-tests + image: registry.redhat.io/ubi9/go-toolset@sha256:3ce6311380d5180599a3016031a9112542d43715244816d1d0eabc937952667b + workingDir: /var/workdir/source + script: time make go-test + - name: check-generated-files-up-to-date params: - name: SOURCE_ARTIFACT diff --git a/Makefile b/Makefile index 899cdedb..4ba1ce0c 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,10 @@ MAKEFLAGS += "-j 2" OPM = .bin/opm-$(OPM_VERSION) +GO := go + +GENERATE_SCRIPT_FOLDER = ./cmd/generate-catalog/ + .PHONY: valid-catalogs valid-catalogs: $(CATALOGS) $(OPM) $(OPM) validate catalog-bundle-object @@ -13,6 +17,7 @@ valid-catalogs: $(CATALOGS) $(OPM) .PHONY: clean clean: + rm -f catalog-template.yaml rm -f $(CATALOGS) rm -rf $$(dirname $(OPM)) @@ -24,6 +29,13 @@ catalog-csv-metadata/rhacs-operator/catalog.json: catalog-template.yaml $(OPM) mkdir -p "$$(dirname "$@")" $(OPM) alpha render-template basic --migrate-level bundle-object-to-csv-metadata $< > $@ +# update template/catalog-template.yaml based on bundles.yaml file. +catalog-template.yaml: bundles.yaml $(wildcard $(GENERATE_SCRIPT_FOLDER)/*.go) + @$(GO) run $(GENERATE_SCRIPT_FOLDER) + +go-test: + @$(GO) test -cover -v ./cmd/... + $(OPM): mkdir -p "$$(dirname $@)" os_name="$$(uname | tr '[:upper:]' '[:lower:]')"; \ diff --git a/README.md b/README.md index dca9f238..5bf0b08b 100644 --- a/README.md +++ b/README.md @@ -13,97 +13,32 @@ See more in [our docs](https://spaces.redhat.com/display/StackRox/How+to+everyth ### Adding new ACS operator version -Do the following changes in the `catalog-template.yaml` file. - -1. Add bundle image. - 1. Find entries with `schema: olm.bundle` towards the end of the file. - 2. Add a new entry for your bundle image. - It should look something like this: - ```yaml - - schema: olm.bundle - # 4.7.9 - image: brew.registry.redhat.io/rh-osbs/rhacs-operator-bundle@sha256:c82e8330c257e56eb43cb5fa7b0c842a7f7f0414e32e26a792ef36817cb5ca02 - ``` - * Note that the image must be referenced by digest, not by tag. - * Keep entries sorted according to version. - * Add a comment stating the version, see how it's done for other items there. - * You may add bundle images from `quay.io`, `brew.registry.redhat.io` and so on (provided they exist and are - pullable) during development and/or when preparing to release. - Ultimately, all released bundle images must come from - `registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle` repo because this is where customers expect - to find them. There's a CI check which prevents pushing to `master` if there's any bundle from - a different repo. - * If you're adding a bundle as part of downstream release, you will find bundle image's digest in the email with - a subject `[CVP] (SUCCESS) cvp-redhatadvancedclustersecurity: rhacs-operator-bundle-container-4.Y.Z-x`. Open the - link in `Brew Build Info` and find the digest of the - `registry-proxy.engineering.redhat.com/rh-osbs/rhacs-operator-bundle` image. Take that image and replace - `registry-proxy.engineering.redhat.com` with `brew.registry.redhat.io`. -2. Add entry to the `stable` channel. - 1. Find the `stable` channel block. It starts with: - ```yaml - - schema: olm.channel - name: stable - ``` - 2. Add a new item into its `entries` list. - * Entries must be sorted by version (e.g., you must insert `4.8.2` after `4.8.1` but before `4.9.0`). - * Ensure there are consistent blank lines between entries of different Y-streams. - * Entry format is - ```yaml - - &bundle-4-Y-Z - name: rhacs-operator.v4.Y.Z - replaces: rhacs-operator.v4.PREVIOUS_Y.PREVIOUS_Z - skipRange: '>= 4.(Y-1).0 < 4.Y.Z' - ``` - Replace - * `Y` with minor version (e.g., `8` in `4.8.2`), - * `Z` with patch version (e.g., `2` in `4.8.2`), - * `PREVIOUS_Y` and `PREVIOUS_Z` with minor and patch versions of the previous item (e.g., when you add `4.8.2` - after `4.8.1`, that'd be `8` and `1`; when you add `4.9.0` after `4.8.3`, that'd be `8` and `3`), - * `(Y-1)` with the value of `Y` minus 1 (e.g., when you add `4.8.2`, that'd be `7`). - 3. If the item you added is not the last one in the `entries` list, i.e., not the highest version, adjust the next - item in the `entries` list. - Set its `replaces:` to be `rhacs-operator.v4.Y.Z`. - For example: - ```yaml - - &bundle-4-7-4 # <-------- this was already there - name: rhacs-operator.v4.7.4 - replaces: rhacs-operator.v4.7.3 - skipRange: '>= 4.6.0 < 4.7.4' - - &bundle-4-7-5 # <-------- this one I'm adding - name: rhacs-operator.v4.7.5 - replaces: rhacs-operator.v4.7.4 - skipRange: '>= 4.6.0 < 4.7.5' - - - &bundle-4-8-0 # <-------- this was already there - name: rhacs-operator.v4.8.0 - replaces: rhacs-operator.v4.7.4 # <-------- must change here to rhacs-operator.v4.7.5 - skipRange: '>= 4.7.0 < 4.8.0' - ``` -3. Add entry to `rhacs-4.?` channels. - * For every `schema: olm.channel` with `name` like `rhacs-4.?` where `?` is >= `Y`, - * add `- *bundle-4-Y-Z` to the `entries:` list (replacing `Y` and `Z` with minor and patch versions). - * Maintain the entries sorted and with consistent linebreaks. -4. Add `rhacs-4.Y` channel. Skip this step if the channel already exists (i.e., when `Z` > `0`). - * Keep the channels sorted. - * In the `entries:`, reference all items from `4.0.0` up to (and including) `4.Y.Z`. - - It should look something like this (replacing `Y`, `Z` as appropriate): +1. Open `bundles.yaml` file. +2. Add a new operator bundle image with version: ```yaml - - schema: olm.channel - name: rhacs-4.Y - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - # ... and so on ... - - - *bundle-4-Y-Z + - image: brew.registry.redhat.io/rh-osbs/rhacs-operator-bundle@sha256:c82e8330c257e56eb43cb5fa7b0c842a7f7f0414e32e26a792ef36817cb5ca02 + version: X.Y.Z ``` + * Note that the image must be referenced by digest, not by tag. + * Keep entries sorted by version. + * You may add bundle images from `quay.io`, `brew.registry.redhat.io` and so on (provided they exist and are pullable) during development and/or when preparing to release. + Ultimately, all released bundle images must come from + `registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle` repo because this is where customers expect + to find them. There's a CI check which should make it impossible to push to `master` if there's any bundle from + a different repo. + * If you're adding a bundle as part of downstream release, you will find bundle image's digest in + `[CVP] (SUCCESS) cvp-redhatadvancedclustersecurity: rhacs-operator-bundle-container-4.Y.Z-x` email. Open the + link in `Brew Build Info` and find the digest of the + `registry-proxy.engineering.redhat.com/rh-osbs/rhacs-operator-bundle` image. Take that image and replace + `registry-proxy.engineering.redhat.com` with `brew.registry.redhat.io`. +3. Update `oldest_supported_version` value: + * Check `Life Cycle Dates` table in [Red Hat Advanced Cluster Security for Kubernetes Support Policy](https://access.redhat.com/support/policy/updates/rhacs). + * Set `oldest_supported_version` to be the oldest Y-Stream version still in support according to that table, including Maintenance Support. Patch number should always be `.0`. For example, if 4.6 is the oldest in support (maintenance phase), set `oldest_supported_version: 4.6.0`. +4. Run `make catalog-template.yaml`. This step should update `catalog-template.yaml` with the new version. +5. Update catalogs (follow [updating catalogs steps](#updating-catalogs)) +6. Open a PR with `Add 4.Y.Z version` title. -Once done with `catalog-template.yaml`: -1. Update catalogs (follow [updating catalogs](#updating-catalogs) steps below). -2. Open a PR with `Add 4.Y.Z version` title. ### Updating catalogs diff --git a/bundles.yaml b/bundles.yaml new file mode 100644 index 00000000..b4f61dc1 --- /dev/null +++ b/bundles.yaml @@ -0,0 +1,236 @@ +# Oldest supported version should be equal to the lowest supported version in the support policy document. +# See: https://access.redhat.com/support/policy/updates/rhacs +oldest_supported_version: 4.6.0 +broken_versions: +- 4.1.0 +images: + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf + version: 3.62.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e + version: 3.62.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:2d9da26bac816af608979a034a8cdc24b51e04f0807e177fc114f55c0e633650 + version: 3.63.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7e7d2ee7951813e40decefd68e2a0a4dbcc32f81158de073340a2540f3e96441 + version: 3.64.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:845d5e954f6e876488bd0ba687ed5b0b4cac098907c2cdd3777ba8f32827d320 + version: 3.64.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:5187b04f8010a274d6bc017fc82f1b00d886124e520c1b7de8b4da8cd2f37bc0 + version: 3.64.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0baed09effdbfc973515d7bdce444dbf97a72c913a0ae1d7403106439b6cba62 + version: 3.65.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d3bf33899ca8b199ca8782978618ca343164e43fd0ae2ac6a0cfbf697efa6428 + version: 3.65.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3a70c9cd571ffaa93f51fae3973eb4c8749e17d909a2929e89aa62b1db4df646 + version: 3.66.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6536ee795e8aaeab9321ee4820e55933195983a768ba24fab40508d03e50a6e4 + version: 3.66.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9629a16f4009d48e580bc389d632a43c698ffd53c74364293fcf035a4c944382 + version: 3.67.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:2156aa8c7e0a7405b6cb640daa23f2142077516959921f249cd6e4b59557fb18 + version: 3.67.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ad88773ab141f45fe24c61e83ec736aab27f652fb82ca2a85fee6f885568c5b9 + version: 3.67.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1178a22943998e0a740d7f89d15244d4b1500376493fb84b652fe1ba998bf1d3 + version: 3.68.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:16fc17b7079ea1d1aefbba589ed638bc632612ce59dddd58e719aade0a64e1e9 + version: 3.68.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6a10a4859527946f61f497ff84b80f973cb7be5982d428423836b5aca81a1f5d + version: 3.68.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:09dd8f0e7cead1064f5d33b4b9637ea4b49122e4e6fed3bf7c601390366e5e02 + version: 3.69.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6aefab47365d8640d95083211a7ace577b1df17d9bec021f18887a0efac0656d + version: 3.69.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:297e7f863106c6b41f882bbd5b691a12c797c24d832473a04e604d4639e4a68e + version: 3.69.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:105c401ebff454bda17a6c5385ded057f09443766d9f87eae7f11ee9a62a08c1 + version: 3.70.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9b35ae6df2c19935783735d213483f3fcecead2f49f873a4f7844ef9fb5c7f1a + version: 3.70.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e84cda106657d350068a5632fba8c2d858a19de109da9795a1d0b77e26c3b338 + version: 3.71.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:39cbfcde349670101c5f33f86da4bdbd33ec363b5171022579fec4a71edbae55 + version: 3.71.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ee93d7f7d470c651b88b3797c53c827a17bf2bbaf0f43464e894ccbf6245928a + version: 3.71.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e001b9f844a6c298dd74f1ab683f3dbbf0ad66044cec419c373ef4f97d47be73 + version: 3.71.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9ec13da5353f1031edc8b84ee17f00fd42c59253b2f402eec0dc5744fac1cbf5 + version: 3.72.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:5f91fe442301ba58e96260b133d347f48d7869ec4def8a395274af6291470609 + version: 3.72.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b3a541fa8146c211896590b75c2f8a7b861a8d48a741d84b8f2a2072f451d2da + version: 3.72.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:94d3d8bb0eff0f91acc07c6114448ab24d8b93cd43dac2697f487a698752f2fa + version: 3.72.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:878ed77d07d3f40f049a594af44376797305786a2a264dae3d0c50401643bfa5 + version: 3.72.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d496a827f223e5464a1b6c87168102df632643e1f8348a8abb1a5e9e226f00d2 + version: 3.73.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ddb656822614d0cdb62e3bf8eb13640e589225555c8a9a713005c9b824f5f4a1 + version: 3.73.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:cabaaad93f55dd91ae06719151623f02226472b4d14200abede1e62eff3270f7 + version: 3.73.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:234f5d3c6ca2e388fdeaf3b763cb9a156daaf4fae3b62378fe73d1b307dbcae6 + version: 3.73.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:f72523acacbf60c2b41cb3e28366094465cc38f93c125b77de0f616297468c9c + version: 3.73.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:459a8d91beff91638872d377a8b82c279ad2905ce3f4ad4bfc00f6822418ac57 + version: 3.73.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9dbdc706f35926bb913ff9951d2b14d4a7f1211bcbbd22740ad72b1d442523f8 + version: 3.74.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:33156ed6400fb97102b01d0e60a12e87adb495d27a131f0d1fd8544e43c73c30 + version: 3.74.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b6d9f60296184dcf109eef795870fd093c5a4a5954e254de435d93c744496c7f + version: 3.74.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a5e10c6d4b24e0812de0934a44b74ed6dddba8c3c857ca32c6a818c238b9c82f + version: 3.74.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:aca9396a41f339d8968dd4db09dde380d3a9c218dedeae9d99c33e28254224ce + version: 3.74.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:052e6be8458b1e4a5b66323868fe58771cdee48ac416dc54b75418460ce23739 + version: 3.74.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b14d179437f394a09b59cee5eb72ec8b9da74c4b5eb9e44c5c5614b341e357a9 + version: 3.74.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e + version: 3.74.7 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9ba3858a639c3e8e50a2445e54eea49ad4555a02de8597708bb17128b1778780 + version: 3.74.8 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e714fea6deb82225c54de32cf7ff3e91e1966470c58d04a221c7d90a501fdb8a + version: 3.74.9 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0e7e55c46aa3a9926b184d031ff0adf0e4d208819a98a78aede2a7152d52bc30 + version: 4.0.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:04ae0c9b37d47a85651f7bbfccb79cd9fd42876aa5c511933e9565efc5764b2e + version: 4.0.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7e08088dc72f668b36f67b18c2ec2cbdb621d547f00699b3fb8d6de0ccbaec57 + version: 4.0.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:066aa4712f9a104e3bba2137e7cef432052d7f14a6bcd50b5f5d6a954b33ba84 + version: 4.0.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:512b52a8ec8f582e9e2d04d02aa9180d89b965d0efcacb5f9eb2f43aa5474f59 + version: 4.0.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a0d9cd31d953aaf7e84f5a39f405c5aa2ea62e68d6c728a936ca1ffc4dc1b93e + version: 4.0.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:eebfa0e319e1d78c403da776182bb00bf0f7367f4454749d414ff5ad75c4469c + version: 4.1.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:397d7ab548e3d889c144fbc9b5360167938dace01d112cd8f9e7c655675c2f5d + version: 4.1.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:fddeb8070857a592a19c49a52abed8329b3a23051411ab6eb5b18d5d985266e4 + version: 4.1.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:84c36595c82097fb75de135c97e8eb41930fb99b4e63a835ec6b6ae75fdea22d + version: 4.1.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322 + version: 4.1.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:aafaa944201871ec15cead3aa77bbdd1da76f972f3a241b894e2254a6ec09595 + version: 4.1.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b26133843687cc50e2c52d6067d8b3369b5cb28dfbfd15dd4b6062096673195a + version: 4.1.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:de3b2e28150c6428864fe8dd7ef325b806bc9e9881d883ba3335e00b6593618c + version: 4.2.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ff1860a69cb72220a536e3d51510fe88169f75e73918a4935c99fd0704dbdd91 + version: 4.2.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215 + version: 4.2.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:978d9f800d70144021cc5fd318def9f4d82ddbbbe520e432a9a9e0cf445bf854 + version: 4.2.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d12dd40975045afad1cd5575ced8ce5c443fd0f872bceca5a759233828a051e6 + version: 4.2.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:08aebe6e8275d3314b6756d522ec568ccdfb9c52df98c9822f187f6c5a3af19c + version: 4.2.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ff41517cf745183c940b587be2d25f606ef0d3a5048f9455188d518655dbd85c + version: 4.3.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:90bdfd8fba74a36a81c52c2fe7abbd79158d1482699bda52af7e2caf0803b3fc + version: 4.3.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6604d204de27b02e379579d9182e68f4bd3150825462d471a0cf20963fe6fe2e + version: 4.3.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:22a1e067ff9e0e0b5f2f819ffc863e7a877030b4c18fbab0abfa75af46307d15 + version: 4.3.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c87ee25e0a7d9b4359d38af6fcd6551b038728cf9c701dac3687cd441faa7810 + version: 4.3.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c1e7a5e80831c5f078e1aa26e57870aec1949c148f02c255e76a7a98c01099d7 + version: 4.3.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:355567de35493ef1122e8a60385828c98ba62272aaf60d4ab6336466418ec6c9 + version: 4.3.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1e8115bdc0ed2d01d7576524e9796606244963a1447eae55872674c0113fb9c4 + version: 4.3.7 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:30f9384244819da013358325cec364bb210b3b33b4cf9680698531fe50562aac + version: 4.3.8 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:94fcee9ac22671bd18be77381214665d9289151703a9ed78c29cee02b92612f4 + version: 4.4.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7612cd4a854c01f27df8c36d74413bd52f85f5e7c73b6a7bd565e0d531a35862 + version: 4.4.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b800c559f4e93d6a8d7422128e26688b8872c589c92944cb46815ec2b7c68371 + version: 4.4.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:39e7f184f83bdf38407c7d6a783ac9490e81cb1a8ca1af15a6f419be993361f9 + version: 4.4.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9f84b5e8757bb2b1a7fb7b57cbf5c1e989cd3bbca33566eea94f07af23ae725f + version: 4.4.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:176837c3041894c294b64da0181b8ad3bc53b3538d5ba70868979c57c7ec1644 + version: 4.4.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b481c31ea787bb4817304023ab223996b5deaf01f0c80557d652ca2e76a3dfc5 + version: 4.4.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0584255cd3289c421454544b7eaa7d13be85c0572ddba1731cb86137195232d6 + version: 4.4.7 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:123c0108bd7a190dd2accfd21786600f787147f040e57fb5f840861e2caa441d + version: 4.4.8 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:afe3518921c5f14f11f7543f384c6cfc32eaae86d2a38bb6e36b783aeec53f79 + version: 4.5.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:25680f4d265895dac28686e234f026c10c015b3f94434e00f5c8b680e1c7e834 + version: 4.5.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8021e8768281376c5b64be666fef3e2a398928d35e2e4a9b64f22ab3ac6b168 + version: 4.5.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8bca9a8388de978872eb2834ea7563baacf3a851e1bbaf11acd507d5acce9999 + version: 4.5.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8cc0088423509c0fe8413cdf1b85f66269a6e62f3a59708a25fa91acac94a44c + version: 4.5.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b262749b36483ac23f7e9311a410b4e1bfb3455074e189d2cd4e88570c953803 + version: 4.5.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:56772b736bb1aec1b10d38d4c2b18bcde17b450b55f8c260ac38b23bd6c85b5c + version: 4.5.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:04b8413db1c7b315643c2c420e7d2b71d805956c93db779f363beef09339041f + version: 4.5.7 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1e4c21f9a8098205cfd520627dcfdfca84c40c66e93698398a350647dc5fa1a1 + version: 4.5.8 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:41351e88688d23a443ad4f141caf0433b2c2789e6a1a85b4f5b36abeb5656bb1 + version: 4.5.9 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c803494bdb0418d27931a15c79f8cf142ae10ccd0a50d76a10c48219d34c59f4 + version: 4.6.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3df6a9cfda7b1e236bd152e4eb84bb4c39057fd82bb928e3d00307ed64052d6c + version: 4.6.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:324eafac9e2a9000c6032f152867defb4f4402ae8772677d7a1b45eb6df1b9be + version: 4.6.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:588e9a7db449055473470e0c2102ed551a6d67d26bb6c45415d297f87701c1e2 + version: 4.6.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:40422d266354c240237d66bb621660ed235af7c8620de8432912854cc11c084b + version: 4.6.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:f61189397263f05214c2d36b4dc0a71a924c2481a1e365b7fb3c71d8dfce6b27 + version: 4.6.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b0590a2248d948f82e8a116e37a2be42f49a3edeb4a92d41416420ea604d5b34 + version: 4.6.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a2e9af0568ae9b6401655f3662a7a914c34c29a5616d590da7ef19248e2d1068 + version: 4.6.7 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:adb6c303305804dc46759f6561971c5bf484c76c773997237dae9b902d08d982 + version: 4.6.8 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:eee21ee829be000db4a804aa7d0dded1a42767c37f56ac6ef4b4df6d9ab026f2 + version: 4.6.9 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6937beffd348474d4d9b06f14fabfeb74efb69cf7bc60e6e12eb5b45b03014d5 + version: 4.7.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e23398e5f761b4a2fb94ec91b7f009e4e6abf09ec511dbf30468142e742d311d + version: 4.7.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:567535d4a629980952e42537221a232e24399462c8ffda467c38195ea7afa3e2 + version: 4.7.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b24edee77ea1320adb9c5ae3fd5ae538059e2b9475abf8f338ecce136c331e07 + version: 4.7.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8c3fd7e6809ecdbf54c4d29af25f8d9dca013fff31abefafba9908a86ef6c4d8 + version: 4.7.4 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:208b2b32acdcd58ff3702421c2a303fb2f237f320ec53d5428d280a677211484 + version: 4.7.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3b99056ad9f5f53c75eff0e70c07cf3892c3867fe36c59138468b645f24547f2 + version: 4.7.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:59c16145f8691120ba7af1448ca7a3bd8c4e5a0cb912bcf7a6a10779dc2919be + version: 4.8.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:272e3d6e2f7f207b3d3866d8be00715e6a6086d50b110c45662d99d217d48dbc + version: 4.8.1 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:68633e6b12768689f352e1318dc0acc388522d8b6295bf6ca662834cf1367b85 + version: 4.8.2 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:44823edf63a673d6df937271c2b504782752e832d31517076593e1706a6cf434 + version: 4.8.3 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0c0a839b097ccbf758b084b85f8f9285a7e621fd44e8a62752be7b6bcae86669 + version: 4.8.4 diff --git a/catalog-bundle-object/rhacs-operator/catalog.json b/catalog-bundle-object/rhacs-operator/catalog.json index c38a0aca..571bb599 100644 --- a/catalog-bundle-object/rhacs-operator/catalog.json +++ b/catalog-bundle-object/rhacs-operator/catalog.json @@ -17,8 +17,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -27,53 +32,168 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { - "name": "rhacs-operator.v3.72.0", + "name": "rhacs-operator.v3.71.1", "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" + }, + { + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" + }, + { + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" + }, + { + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", "skipRange": ">= 3.71.0 < 3.72.0" }, { - "name": "rhacs-operator.v3.73.0", + "name": "rhacs-operator.v3.72.1", "replaces": "rhacs-operator.v3.72.0", + "skipRange": ">= 3.71.0 < 3.72.1" + }, + { + "name": "rhacs-operator.v3.72.2", + "replaces": "rhacs-operator.v3.72.1", + "skipRange": ">= 3.71.0 < 3.72.2" + }, + { + "name": "rhacs-operator.v3.72.3", + "replaces": "rhacs-operator.v3.72.2", + "skipRange": ">= 3.71.0 < 3.72.3" + }, + { + "name": "rhacs-operator.v3.72.4", + "replaces": "rhacs-operator.v3.72.3", + "skipRange": ">= 3.71.0 < 3.72.4" + }, + { + "name": "rhacs-operator.v3.73.0", + "replaces": "rhacs-operator.v3.72.4", "skipRange": ">= 3.72.0 < 3.73.0" }, { - "name": "rhacs-operator.v3.74.0", + "name": "rhacs-operator.v3.73.1", "replaces": "rhacs-operator.v3.73.0", + "skipRange": ">= 3.72.0 < 3.73.1" + }, + { + "name": "rhacs-operator.v3.73.2", + "replaces": "rhacs-operator.v3.73.1", + "skipRange": ">= 3.72.0 < 3.73.2" + }, + { + "name": "rhacs-operator.v3.73.3", + "replaces": "rhacs-operator.v3.73.2", + "skipRange": ">= 3.72.0 < 3.73.3" + }, + { + "name": "rhacs-operator.v3.73.4", + "replaces": "rhacs-operator.v3.73.3", + "skipRange": ">= 3.72.0 < 3.73.4" + }, + { + "name": "rhacs-operator.v3.73.5", + "replaces": "rhacs-operator.v3.73.4", + "skipRange": ">= 3.72.0 < 3.73.5" + }, + { + "name": "rhacs-operator.v3.74.0", + "replaces": "rhacs-operator.v3.73.5", "skipRange": ">= 3.73.0 < 3.74.0" }, { @@ -141,16 +261,42 @@ } { "schema": "olm.channel", - "name": "rhacs-3.64", + "name": "rhacs-3.63", "package": "rhacs-operator", "entries": [ { "name": "rhacs-operator.v3.62.0", "skipRange": ">= 3.61.0 < 3.62.0" }, + { + "name": "rhacs-operator.v3.62.1", + "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, { "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", + "skipRange": ">= 3.62.0 < 3.63.0" + } + ] +} +{ + "schema": "olm.channel", + "name": "rhacs-3.64", + "package": "rhacs-operator", + "entries": [ + { + "name": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.0" + }, + { + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -180,8 +326,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -190,8 +341,18 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { @@ -211,8 +372,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -221,13 +387,28 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { @@ -247,8 +428,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -257,18 +443,38 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { @@ -293,8 +499,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -303,23 +514,53 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { @@ -344,8 +585,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -354,28 +600,68 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { @@ -400,8 +686,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -410,33 +701,83 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { @@ -456,8 +797,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -466,38 +812,93 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { @@ -527,8 +928,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -537,44 +943,114 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", - "skipRange": ">= 3.69.0 < 3.70.0" + "skipRange": ">= 3.68.0 < 3.69.1" }, { - "name": "rhacs-operator.v3.71.0", - "replaces": "rhacs-operator.v3.70.0", - "skipRange": ">= 3.70.0 < 3.71.0" + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" }, { - "name": "rhacs-operator.v3.72.0", - "replaces": "rhacs-operator.v3.71.0", - "skipRange": ">= 3.71.0 < 3.72.0" + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", + "skipRange": ">= 3.69.0 < 3.70.0" + }, + { + "name": "rhacs-operator.v3.70.1", + "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", + "skipRange": ">= 3.70.0 < 3.71.0" + }, + { + "name": "rhacs-operator.v3.71.1", + "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" + }, + { + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" + }, + { + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" + }, + { + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", + "skipRange": ">= 3.71.0 < 3.72.0" }, { "name": "rhacs-operator.v3.72.1", @@ -608,8 +1084,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -618,48 +1099,138 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { - "name": "rhacs-operator.v3.72.0", + "name": "rhacs-operator.v3.71.1", "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" + }, + { + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" + }, + { + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" + }, + { + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", "skipRange": ">= 3.71.0 < 3.72.0" }, { - "name": "rhacs-operator.v3.73.0", + "name": "rhacs-operator.v3.72.1", "replaces": "rhacs-operator.v3.72.0", + "skipRange": ">= 3.71.0 < 3.72.1" + }, + { + "name": "rhacs-operator.v3.72.2", + "replaces": "rhacs-operator.v3.72.1", + "skipRange": ">= 3.71.0 < 3.72.2" + }, + { + "name": "rhacs-operator.v3.72.3", + "replaces": "rhacs-operator.v3.72.2", + "skipRange": ">= 3.71.0 < 3.72.3" + }, + { + "name": "rhacs-operator.v3.72.4", + "replaces": "rhacs-operator.v3.72.3", + "skipRange": ">= 3.71.0 < 3.72.4" + }, + { + "name": "rhacs-operator.v3.73.0", + "replaces": "rhacs-operator.v3.72.4", "skipRange": ">= 3.72.0 < 3.73.0" }, { @@ -699,8 +1270,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -709,89 +1285,204 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", - "skipRange": ">= 3.70.0 < 3.71.0" + "skipRange": ">= 3.69.0 < 3.70.1" }, { - "name": "rhacs-operator.v3.72.0", - "replaces": "rhacs-operator.v3.71.0", - "skipRange": ">= 3.71.0 < 3.72.0" + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", + "skipRange": ">= 3.70.0 < 3.71.0" }, { - "name": "rhacs-operator.v3.73.0", - "replaces": "rhacs-operator.v3.72.0", - "skipRange": ">= 3.72.0 < 3.73.0" + "name": "rhacs-operator.v3.71.1", + "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" }, { - "name": "rhacs-operator.v3.74.0", - "replaces": "rhacs-operator.v3.73.0", - "skipRange": ">= 3.73.0 < 3.74.0" + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" }, { - "name": "rhacs-operator.v3.74.1", - "replaces": "rhacs-operator.v3.74.0", - "skipRange": ">= 3.73.0 < 3.74.1" + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" }, { - "name": "rhacs-operator.v3.74.2", - "replaces": "rhacs-operator.v3.74.1", - "skipRange": ">= 3.73.0 < 3.74.2" + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", + "skipRange": ">= 3.71.0 < 3.72.0" }, { - "name": "rhacs-operator.v3.74.3", - "replaces": "rhacs-operator.v3.74.2", - "skipRange": ">= 3.73.0 < 3.74.3" + "name": "rhacs-operator.v3.72.1", + "replaces": "rhacs-operator.v3.72.0", + "skipRange": ">= 3.71.0 < 3.72.1" }, { - "name": "rhacs-operator.v3.74.4", - "replaces": "rhacs-operator.v3.74.3", - "skipRange": ">= 3.73.0 < 3.74.4" + "name": "rhacs-operator.v3.72.2", + "replaces": "rhacs-operator.v3.72.1", + "skipRange": ">= 3.71.0 < 3.72.2" }, { - "name": "rhacs-operator.v3.74.5", - "replaces": "rhacs-operator.v3.74.4", - "skipRange": ">= 3.73.0 < 3.74.5" + "name": "rhacs-operator.v3.72.3", + "replaces": "rhacs-operator.v3.72.2", + "skipRange": ">= 3.71.0 < 3.72.3" }, { - "name": "rhacs-operator.v3.74.6", - "replaces": "rhacs-operator.v3.74.5", - "skipRange": ">= 3.73.0 < 3.74.6" + "name": "rhacs-operator.v3.72.4", + "replaces": "rhacs-operator.v3.72.3", + "skipRange": ">= 3.71.0 < 3.72.4" }, { - "name": "rhacs-operator.v3.74.7", - "replaces": "rhacs-operator.v3.74.6", - "skipRange": ">= 3.73.0 < 3.74.7" + "name": "rhacs-operator.v3.73.0", + "replaces": "rhacs-operator.v3.72.4", + "skipRange": ">= 3.72.0 < 3.73.0" + }, + { + "name": "rhacs-operator.v3.73.1", + "replaces": "rhacs-operator.v3.73.0", + "skipRange": ">= 3.72.0 < 3.73.1" + }, + { + "name": "rhacs-operator.v3.73.2", + "replaces": "rhacs-operator.v3.73.1", + "skipRange": ">= 3.72.0 < 3.73.2" + }, + { + "name": "rhacs-operator.v3.73.3", + "replaces": "rhacs-operator.v3.73.2", + "skipRange": ">= 3.72.0 < 3.73.3" + }, + { + "name": "rhacs-operator.v3.73.4", + "replaces": "rhacs-operator.v3.73.3", + "skipRange": ">= 3.72.0 < 3.73.4" + }, + { + "name": "rhacs-operator.v3.73.5", + "replaces": "rhacs-operator.v3.73.4", + "skipRange": ">= 3.72.0 < 3.73.5" + }, + { + "name": "rhacs-operator.v3.74.0", + "replaces": "rhacs-operator.v3.73.5", + "skipRange": ">= 3.73.0 < 3.74.0" + }, + { + "name": "rhacs-operator.v3.74.1", + "replaces": "rhacs-operator.v3.74.0", + "skipRange": ">= 3.73.0 < 3.74.1" + }, + { + "name": "rhacs-operator.v3.74.2", + "replaces": "rhacs-operator.v3.74.1", + "skipRange": ">= 3.73.0 < 3.74.2" + }, + { + "name": "rhacs-operator.v3.74.3", + "replaces": "rhacs-operator.v3.74.2", + "skipRange": ">= 3.73.0 < 3.74.3" + }, + { + "name": "rhacs-operator.v3.74.4", + "replaces": "rhacs-operator.v3.74.3", + "skipRange": ">= 3.73.0 < 3.74.4" + }, + { + "name": "rhacs-operator.v3.74.5", + "replaces": "rhacs-operator.v3.74.4", + "skipRange": ">= 3.73.0 < 3.74.5" + }, + { + "name": "rhacs-operator.v3.74.6", + "replaces": "rhacs-operator.v3.74.5", + "skipRange": ">= 3.73.0 < 3.74.6" + }, + { + "name": "rhacs-operator.v3.74.7", + "replaces": "rhacs-operator.v3.74.6", + "skipRange": ">= 3.73.0 < 3.74.7" }, { "name": "rhacs-operator.v3.74.8", @@ -17774,133 +18465,791 @@ "schema": "olm.channel", "name": "latest" }, - "message": "The `latest` channel is no longer supported. Please switch to the `stable` channel.\n" + "message": "The `latest` channel is no longer supported. Use the `stable` channel." }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.62" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.channel", + "name": "rhacs-3.63" + }, + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.64" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.65" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.66" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.67" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.68" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.69" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.70" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.71" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.72" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.73" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.74" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.0" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.1" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.2" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.3" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.4" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.5" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.62.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.62.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.63.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.64.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.64.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.64.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.65.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.65.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.66.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.66.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.67.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.67.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.67.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.68.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.68.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.68.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.69.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.69.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.69.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.70.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.70.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.9" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.9" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" } ] } diff --git a/catalog-csv-metadata/rhacs-operator/catalog.json b/catalog-csv-metadata/rhacs-operator/catalog.json index 6f0121d4..b865d095 100644 --- a/catalog-csv-metadata/rhacs-operator/catalog.json +++ b/catalog-csv-metadata/rhacs-operator/catalog.json @@ -17,8 +17,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -27,53 +32,168 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { - "name": "rhacs-operator.v3.72.0", + "name": "rhacs-operator.v3.71.1", "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" + }, + { + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" + }, + { + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" + }, + { + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", "skipRange": ">= 3.71.0 < 3.72.0" }, { - "name": "rhacs-operator.v3.73.0", + "name": "rhacs-operator.v3.72.1", "replaces": "rhacs-operator.v3.72.0", + "skipRange": ">= 3.71.0 < 3.72.1" + }, + { + "name": "rhacs-operator.v3.72.2", + "replaces": "rhacs-operator.v3.72.1", + "skipRange": ">= 3.71.0 < 3.72.2" + }, + { + "name": "rhacs-operator.v3.72.3", + "replaces": "rhacs-operator.v3.72.2", + "skipRange": ">= 3.71.0 < 3.72.3" + }, + { + "name": "rhacs-operator.v3.72.4", + "replaces": "rhacs-operator.v3.72.3", + "skipRange": ">= 3.71.0 < 3.72.4" + }, + { + "name": "rhacs-operator.v3.73.0", + "replaces": "rhacs-operator.v3.72.4", "skipRange": ">= 3.72.0 < 3.73.0" }, { - "name": "rhacs-operator.v3.74.0", + "name": "rhacs-operator.v3.73.1", "replaces": "rhacs-operator.v3.73.0", + "skipRange": ">= 3.72.0 < 3.73.1" + }, + { + "name": "rhacs-operator.v3.73.2", + "replaces": "rhacs-operator.v3.73.1", + "skipRange": ">= 3.72.0 < 3.73.2" + }, + { + "name": "rhacs-operator.v3.73.3", + "replaces": "rhacs-operator.v3.73.2", + "skipRange": ">= 3.72.0 < 3.73.3" + }, + { + "name": "rhacs-operator.v3.73.4", + "replaces": "rhacs-operator.v3.73.3", + "skipRange": ">= 3.72.0 < 3.73.4" + }, + { + "name": "rhacs-operator.v3.73.5", + "replaces": "rhacs-operator.v3.73.4", + "skipRange": ">= 3.72.0 < 3.73.5" + }, + { + "name": "rhacs-operator.v3.74.0", + "replaces": "rhacs-operator.v3.73.5", "skipRange": ">= 3.73.0 < 3.74.0" }, { @@ -141,16 +261,42 @@ } { "schema": "olm.channel", - "name": "rhacs-3.64", + "name": "rhacs-3.63", "package": "rhacs-operator", "entries": [ { "name": "rhacs-operator.v3.62.0", "skipRange": ">= 3.61.0 < 3.62.0" }, + { + "name": "rhacs-operator.v3.62.1", + "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, { "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", + "skipRange": ">= 3.62.0 < 3.63.0" + } + ] +} +{ + "schema": "olm.channel", + "name": "rhacs-3.64", + "package": "rhacs-operator", + "entries": [ + { + "name": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.0" + }, + { + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -180,8 +326,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -190,8 +341,18 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { @@ -211,8 +372,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -221,13 +387,28 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { @@ -247,8 +428,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -257,18 +443,38 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { @@ -293,8 +499,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -303,23 +514,53 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { @@ -344,8 +585,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -354,28 +600,68 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { @@ -400,8 +686,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -410,33 +701,83 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { @@ -456,8 +797,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -466,38 +812,93 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { @@ -527,8 +928,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -537,43 +943,113 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { - "name": "rhacs-operator.v3.72.0", + "name": "rhacs-operator.v3.71.1", "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" + }, + { + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" + }, + { + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" + }, + { + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", "skipRange": ">= 3.71.0 < 3.72.0" }, { @@ -608,8 +1084,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -618,48 +1099,138 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { - "name": "rhacs-operator.v3.72.0", + "name": "rhacs-operator.v3.71.1", "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" + }, + { + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" + }, + { + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" + }, + { + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", "skipRange": ">= 3.71.0 < 3.72.0" }, { - "name": "rhacs-operator.v3.73.0", + "name": "rhacs-operator.v3.72.1", "replaces": "rhacs-operator.v3.72.0", + "skipRange": ">= 3.71.0 < 3.72.1" + }, + { + "name": "rhacs-operator.v3.72.2", + "replaces": "rhacs-operator.v3.72.1", + "skipRange": ">= 3.71.0 < 3.72.2" + }, + { + "name": "rhacs-operator.v3.72.3", + "replaces": "rhacs-operator.v3.72.2", + "skipRange": ">= 3.71.0 < 3.72.3" + }, + { + "name": "rhacs-operator.v3.72.4", + "replaces": "rhacs-operator.v3.72.3", + "skipRange": ">= 3.71.0 < 3.72.4" + }, + { + "name": "rhacs-operator.v3.73.0", + "replaces": "rhacs-operator.v3.72.4", "skipRange": ">= 3.72.0 < 3.73.0" }, { @@ -699,8 +1270,13 @@ "skipRange": ">= 3.61.0 < 3.62.0" }, { - "name": "rhacs-operator.v3.63.0", + "name": "rhacs-operator.v3.62.1", "replaces": "rhacs-operator.v3.62.0", + "skipRange": ">= 3.61.0 < 3.62.1" + }, + { + "name": "rhacs-operator.v3.63.0", + "replaces": "rhacs-operator.v3.62.1", "skipRange": ">= 3.62.0 < 3.63.0" }, { @@ -709,53 +1285,168 @@ "skipRange": ">= 3.63.0 < 3.64.0" }, { - "name": "rhacs-operator.v3.65.0", + "name": "rhacs-operator.v3.64.1", "replaces": "rhacs-operator.v3.64.0", + "skipRange": ">= 3.63.0 < 3.64.1" + }, + { + "name": "rhacs-operator.v3.64.2", + "replaces": "rhacs-operator.v3.64.1", + "skipRange": ">= 3.63.0 < 3.64.2" + }, + { + "name": "rhacs-operator.v3.65.0", + "replaces": "rhacs-operator.v3.64.2", "skipRange": ">= 3.64.0 < 3.65.0" }, { - "name": "rhacs-operator.v3.66.0", + "name": "rhacs-operator.v3.65.1", "replaces": "rhacs-operator.v3.65.0", + "skipRange": ">= 3.64.0 < 3.65.1" + }, + { + "name": "rhacs-operator.v3.66.0", + "replaces": "rhacs-operator.v3.65.1", "skipRange": ">= 3.65.0 < 3.66.0" }, { - "name": "rhacs-operator.v3.67.0", + "name": "rhacs-operator.v3.66.1", "replaces": "rhacs-operator.v3.66.0", + "skipRange": ">= 3.65.0 < 3.66.1" + }, + { + "name": "rhacs-operator.v3.67.0", + "replaces": "rhacs-operator.v3.66.1", "skipRange": ">= 3.66.0 < 3.67.0" }, { - "name": "rhacs-operator.v3.68.0", + "name": "rhacs-operator.v3.67.1", "replaces": "rhacs-operator.v3.67.0", + "skipRange": ">= 3.66.0 < 3.67.1" + }, + { + "name": "rhacs-operator.v3.67.2", + "replaces": "rhacs-operator.v3.67.1", + "skipRange": ">= 3.66.0 < 3.67.2" + }, + { + "name": "rhacs-operator.v3.68.0", + "replaces": "rhacs-operator.v3.67.2", "skipRange": ">= 3.67.0 < 3.68.0" }, { - "name": "rhacs-operator.v3.69.0", + "name": "rhacs-operator.v3.68.1", "replaces": "rhacs-operator.v3.68.0", + "skipRange": ">= 3.67.0 < 3.68.1" + }, + { + "name": "rhacs-operator.v3.68.2", + "replaces": "rhacs-operator.v3.68.1", + "skipRange": ">= 3.67.0 < 3.68.2" + }, + { + "name": "rhacs-operator.v3.69.0", + "replaces": "rhacs-operator.v3.68.2", "skipRange": ">= 3.68.0 < 3.69.0" }, { - "name": "rhacs-operator.v3.70.0", + "name": "rhacs-operator.v3.69.1", "replaces": "rhacs-operator.v3.69.0", + "skipRange": ">= 3.68.0 < 3.69.1" + }, + { + "name": "rhacs-operator.v3.69.2", + "replaces": "rhacs-operator.v3.69.1", + "skipRange": ">= 3.68.0 < 3.69.2" + }, + { + "name": "rhacs-operator.v3.70.0", + "replaces": "rhacs-operator.v3.69.2", "skipRange": ">= 3.69.0 < 3.70.0" }, { - "name": "rhacs-operator.v3.71.0", + "name": "rhacs-operator.v3.70.1", "replaces": "rhacs-operator.v3.70.0", + "skipRange": ">= 3.69.0 < 3.70.1" + }, + { + "name": "rhacs-operator.v3.71.0", + "replaces": "rhacs-operator.v3.70.1", "skipRange": ">= 3.70.0 < 3.71.0" }, { - "name": "rhacs-operator.v3.72.0", + "name": "rhacs-operator.v3.71.1", "replaces": "rhacs-operator.v3.71.0", + "skipRange": ">= 3.70.0 < 3.71.1" + }, + { + "name": "rhacs-operator.v3.71.2", + "replaces": "rhacs-operator.v3.71.1", + "skipRange": ">= 3.70.0 < 3.71.2" + }, + { + "name": "rhacs-operator.v3.71.3", + "replaces": "rhacs-operator.v3.71.2", + "skipRange": ">= 3.70.0 < 3.71.3" + }, + { + "name": "rhacs-operator.v3.72.0", + "replaces": "rhacs-operator.v3.71.3", "skipRange": ">= 3.71.0 < 3.72.0" }, { - "name": "rhacs-operator.v3.73.0", + "name": "rhacs-operator.v3.72.1", "replaces": "rhacs-operator.v3.72.0", + "skipRange": ">= 3.71.0 < 3.72.1" + }, + { + "name": "rhacs-operator.v3.72.2", + "replaces": "rhacs-operator.v3.72.1", + "skipRange": ">= 3.71.0 < 3.72.2" + }, + { + "name": "rhacs-operator.v3.72.3", + "replaces": "rhacs-operator.v3.72.2", + "skipRange": ">= 3.71.0 < 3.72.3" + }, + { + "name": "rhacs-operator.v3.72.4", + "replaces": "rhacs-operator.v3.72.3", + "skipRange": ">= 3.71.0 < 3.72.4" + }, + { + "name": "rhacs-operator.v3.73.0", + "replaces": "rhacs-operator.v3.72.4", "skipRange": ">= 3.72.0 < 3.73.0" }, { - "name": "rhacs-operator.v3.74.0", + "name": "rhacs-operator.v3.73.1", "replaces": "rhacs-operator.v3.73.0", + "skipRange": ">= 3.72.0 < 3.73.1" + }, + { + "name": "rhacs-operator.v3.73.2", + "replaces": "rhacs-operator.v3.73.1", + "skipRange": ">= 3.72.0 < 3.73.2" + }, + { + "name": "rhacs-operator.v3.73.3", + "replaces": "rhacs-operator.v3.73.2", + "skipRange": ">= 3.72.0 < 3.73.3" + }, + { + "name": "rhacs-operator.v3.73.4", + "replaces": "rhacs-operator.v3.73.3", + "skipRange": ">= 3.72.0 < 3.73.4" + }, + { + "name": "rhacs-operator.v3.73.5", + "replaces": "rhacs-operator.v3.73.4", + "skipRange": ">= 3.72.0 < 3.73.5" + }, + { + "name": "rhacs-operator.v3.74.0", + "replaces": "rhacs-operator.v3.73.5", "skipRange": ">= 3.73.0 < 3.74.0" }, { @@ -147959,133 +148650,791 @@ "schema": "olm.channel", "name": "latest" }, - "message": "The `latest` channel is no longer supported. Please switch to the `stable` channel.\n" + "message": "The `latest` channel is no longer supported. Use the `stable` channel." }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.62" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.channel", + "name": "rhacs-3.63" + }, + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.64" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.65" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.66" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.67" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.68" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.69" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.70" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.71" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.72" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.73" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-3.74" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.0" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.1" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.2" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.3" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.4" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" }, { "reference": { "schema": "olm.channel", "name": "rhacs-4.5" }, - "message": "This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported.\n" + "message": "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.62.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.62.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.63.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.64.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.64.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.64.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.65.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.65.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.66.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.66.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.67.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.67.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.67.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.68.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.68.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.68.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.69.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.69.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.69.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.70.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.70.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.71.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.72.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.73.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v3.74.9" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.0.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.1.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.2.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.3.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.4.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.0" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.1" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.2" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.3" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.4" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.5" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.6" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.7" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.8" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.5.9" + }, + "message": "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" } ] } diff --git a/catalog-template.yaml b/catalog-template.yaml index 2d3130c0..dfb074fc 100644 --- a/catalog-template.yaml +++ b/catalog-template.yaml @@ -1,1389 +1,3043 @@ ---- +#-------------------------------------------------------------------------------- +# DO NOT EDIT. This file is generated by cmd/generate-catalog/generate.go script. +# Any manual changes will be overwritten. +#-------------------------------------------------------------------------------- schema: olm.template.basic entries: - - schema: olm.package name: rhacs-operator defaultChannel: stable icon: base64data: iVBORw0KGgoAAAANSUhEUgAAAXwAAAF8CAYAAADM5wDKAAAACXBIWXMAAG66AABuugHW3rEXAAAgAElEQVR4nO3dv48cRf7/8VefLvbO55Pb2+S2doix2CbldHdDaOtOnhALgrkICQKWACRnexIIspvV54RDxiBImUU4ZkY4Z9bOv8z4H6hvUN3r2WV/dFdXd/WP50Mq7Z2Z7qnZH6+peVd1dWSMEQCg+/4UugMAgHoQ+ADQEwQ+APQEgQ8APUHgA0BPEPgA0BMEPgD0BIEPAD3x59AdwFlRFCWh+wB4tDLGrEJ3AlbElbbViKIolhRLGkoabH2VpP0gnQKa5Tj9upa02PrKm0RFCHwP0lH5cKvtBe0Q0A1L2TeAhaSFMWYetjvtR+AXFEXRQFKy1Qh3oD5LSfOsGWPWQXvTMgR+DlEUDSWN0kbAA82xlDSTNDPGLEJ3pukI/EukIT+WDfndsL0BkMOJbPhPCf+LEfhb0onWcdoIeaC9TiRNZcN/FbYrzUHgS4qiaCwb8qyeAbrnWDb4p6E7ElpvAz+dfJ2I0TzQF9mo/7Cvk729C/y0bJMF/U7IvgAIYqNXwb8K25V69Sbw06A/kPQgaEcANMmRpIO+BH/nA3+rdPNx6L4AaKxP1INST6cDP4qiieyontINgOtsZEf7h6E7UpVOBn661cFUTMYCKO5E0riLWzl0KvDT8s1U0t8DdwVA+z2RDf7OlHk6sx9+Wr5ZibAH4MffJa3SbOmE1o/w01H9TFw0BaA6x5JGbR/tt3qEH0XRSHZUT9gDqNK+7Gh/FLojZbQy8KMoGkRRdCjpG7ECB0A9diR9E0XRYVpZaJ3WlXTSC6hmYptiAOEsZUs8q9AdKaJVI/z049RChD2AsPYkLdpW4mlN4Kcz5ZRwADRFVuJpzSqeVpR0oiiaij1wADTXkTFmHLoT12l04LPkEkCLNH7pZmMDPw37uajXA2iPpaSkqaHfyBp+uhJnLsIeQLvsSZo3ddlm40b46c3D52JyFkB7bWRH+o26mXqjRviEPYCO2JEd6Q9Dd2RbY0b46UeglQh7AN2xkRQ3pabfiBH+1gQtYQ+gS7KRfiNq+sEDn9U4ADquMRO5wQNf7IsDoPv2ZLMuqKCBn15By0VVAPpgP828YIIFfrr/BNslAOiTByH33gmySifdYe6b2p8YAJrhHWNM7SWe2gM/vYp2IVbkAOivjaRh3fvp11rS2doMjbAH0Gc7kmZ1r9ypu4Z/IFbkAIBks/CgziesraRD3R4ALlRbPb+WwGfbBAC4VG3bL9RV0qFuDwAX21FNF2VVHvjpmlMurgKAy+3XsT6/0pIOpRwAyK3y0k7VI/ypCHsAyGNHNjMrU9kIP4qiRNKPlZwcALrrLWPMvIoTVxn4K0m7lZwcALrrxBgTV3HiSko66eQDYQ8Axe1WNYHrfYTPRC0AlFbJBG4VI/yJCHsAKGNHNku98jrCT3fC/M3bCQGg317zuaOm7xH+gefzAUCfHfg8mbcRPqN7AKiEt1G+zxF+sNt2AUCHectWLyN8VuYAQGW8rdjxNcJnZQ4AVMPbih1fI/yVuNAKAKri5erb0iP8KIrGIuwBoEq7adaW4qOkU7oTAIBrjcueoFRJh6WYAFCrUks0y47wxyWPBwDkNy5zcNkR/krU7wGgLqUmb51H+FEUDUXYA0CddtPsdVKmpDMucSwAwM3Y9UDnkg7lHAAIwrms4zTCp5wDAME4l3VcSzojx+MAAOU5ZTCBDwDt45TBhWv46c6Yv7s8GQDAm/8puoOmywg/cTgGAOBXUvQAAh8A2ikpegCBDwDtlBQ9wKWG7+cmuACAUowxUZHHFxrhR1GUFOoNAKAyRTO5aEmn0MkBAJUqdAFW0cCPCz4eAFCdSgPfeZc2AIB3hTK50KQtE7YA0CxFJm5zj/DT2xkCABqkSDYXKenkPikAoDZx3gcWCXzq9wDQPLmzuUjgDxw6AgCoVu5sZoQPAO3GCB8AeqKSET4AoMVyr8NnDT66IEmSM/9/Pp8H6QfgU961+H+uuiNAKMPh8LQlSaK9vb0LH7dcLjWfz7VYLE4b0EWM8NEJg8FASZKchvtwONTOzo7TuTabjRaLxembwHw+13pd6E5yQK3yjvAJfLRSkiSnwT4cDrW7u1vp852cnJyO/ufzOaUgNAqBj87YLssMh8NLSzN1Wy6XZz4JUApCKAQ+WimO4zPhvr+/H7pLhRwfH595E1itVqG7hB4g8NF4g8HgTLgnSeJcd2+qzWZzZi5gsVgwHwDvCHw0znbNvUmlmbplpaDtOQGgDAIfQcVxfCbg21aaqVtWCsreACgFoQgCH7XxuSQSFktDUQSBj8qcD/eql0TCypaGbr8JABKBD0/yXq2KMLhKGBKBDwfZksgs3Km7t9Px8fGZNwHmA7qPwMeVzi+J7Etp5uTk5LQUkiRJb17z9oQwS0O7h8DHGefDvQ+lme2Jz8uCbvuNr08TzttLQ7PvDdqLwO+xtl+t6srX0sa+LinlKuH2IvB7ghFqPSNUPiFRCmoyAr+jzm9FQA06jL7PgVAKahYCv2NGo5EODw97ESptXWXSx1VOJycnmkwmms1mobvSawR+h0ynUz148CB0NyrR9S2Gm7q1s29HR0caj8ehu9FbBH5HjEYjffPNN6G74QVXilpdvVL5nXfeYaQfCIHfEavVqpWBwF4w+XVlL6KTkxPFcRy6G71E4HfAcDjUL7/8ErobubDbo19tXRr6+uuvd64s1wZ5A//PVXcE7po6WtpeqdHn0kyVVquVptPpmX/bfgNo6gqtwWAQugu4AoGPK3HHpuY4f/P0PtwxDH4R+A0WIli52rI91uv1H94E+nqVNfIh8Hus60si+2i1Wmm1Wp1ZLdOXpaG4HoHfE+evVqXu3h/Zz317TmB7K44uLQ3F1Qj8Djq/JJLSDM67rBTU9qWhuIYxJleTZGj1tiRJTFHj8Th4v2ndaOPxuPDvX5Ikwfvdx5Y3x/8kdAojefjC71L3EPgA0BMEPgD0BIEPAD1B4ANATxD4ANATBD4A9ASBDwA9QeADQE8Q+ADQEwQ+APQEgQ8APUHgA0BPEPgA0BMEPgD0BIEPAD3BHa/QG3fSdjv9KklvXPLYl5J+lbRJvz5Lvz6vuI9AlQh8dNYtSXclvZ1+vVHg2Bt69Wbw9ta/v5D0s6QfJH3voY9AnQh8dM592ZB++7oHOrgp6V7aXsqG/mPZNwGg6Qh8dMKOpHdlw/5mTc95Q6/C/6ls8H9d03MDLpi0Res9lLSU9IHqC/vz3pD0uaSfZMtHQBMR+Gitu7JB/6mK1eerdFvSt5L+KzuHADQJgY/W2ZH0mWywhhrRX+dt2dH+/dAdAbYQ+GiVO5K+k63XN90N2TLPF7JvUkBoBD5a4y+yYX87dEcKuifbb0o8CI3ARyvcl/R/ak6tvqjbsiWeO9c9EKgQgY/Guy9bGmm7G7IjfUIfoRD4aLSuhH2G0EdIXHiFxqoj7LM9c867bI8dH7LQf1PszYN6EfhopDuySy99eya7HcJTvdoc7TK30n68ITth7HMJ6A3Ztfp/vaYPgE8EPhpnRzYMfU3QvpD0lWzQFxlRP0/b95I+lA3/d2XD30ffbsu+qb3n4VxAHtTw0ThfyM9o+oWk9yXtSfpS5csnv8qG856kR7LloLLuiYuzUB8CH43yF/nZ5fKRbI28is3MNlvnf+rhfJ+JNfqoB4GP4O7I7otzV3Z0X8YLSfuygVx1bfy5bA3+o5LnuaHyrxvIgxo+anNXdgL0juyI1vcVs88UZhL0S9n98L+Te23/DdnvD/vqo0oEPip1V7ZO7Wui8zKPZSdWQ614+VX2zaZM6H8hOz8AVIWSDipxX3br4m9lA7/KsH8mO5kaenljFvquk7k3xQQuqkXgw6ss6D9XPVsXZ2WcpshC39UHvjoCXIDAhxe3ZMsZdQW9ZEfSTRjZn/er3Cdyb4o7ZqE6BD5Kuy+7E2SV2xFc5JEu3hahCb6U9IPjsfd8dgTYQuCjlC9kR/V1b1v8VDZUm+xDudXz74kbpqAaBD6c7MiWcEKNRh8Fet4insv9TekvPjsCpAh8FJaFfd0lnMxTtWe9+ldyG+X7uNoYOI/AR2GhbzPYhtF9ZiO37R2YuEUVCHwU8oXChv1jtWd0n/nK4Zgb4iYp8I/AR24PFXYFyWO1cyvh57LXCxRF4MM3tlZALndUzUVBz2TLHtnNSO7IzhFszw/8IDtKbtvIftv3Kv7JKOQnKXQTgY9cvpCfpZcvZcPvh/RrX7hso8wIH74R+LjWfZUfbb6UXaL4lZp3ZWwdXD6dsBYfvlHDx5V2VP7esk9lbxZSxx71Tfai4ONvixujwC8CH1d6V+VKOY9kNxMre3vBLnD5Hixkl8GyTBM+EPi4Upntet9Xu9bMN9UbsttMfyHKPCiHwMel7st958uPVM39ZPvsnuzW02y7AFcEPi7lenn/D2r+xmZtdUPS/6n8vAr6icDHhXbkFvjZHvWo1rvixucojsDHhVwnCUPeV7Zv7onQRzEEPi7kshPmC1G3v0oVVwrfk93yAsiDwMeFXEb4hP3VHld03k/Fsk3kQ+DjQi5X1lYVaF3xXG47Z+bBkk3kQeDjD1yu7nwhLq7K40NV88Z4U3YiF7gKgY8/cAn8pt5MvInek/Q3ud/k/DIPxSgfVyPw4QWBX8zPkv4h6X8lDSX9U+VH/jfEKB9XI/CBwJ7LbhX9nmz4u2ylnCmzFQa6j8AHGuS57GZzrqP9m2LrBVyOwAca6D25h77LNRToBwIfvbAjO6n5naT/l7bv1OyJzg9VfA99iTX5uByBDy+afDu++7K7TH6qs6PfN9J/W6qZte+N3LaX5l64uAyBjz9wWU/fxMC/K+knSZ/r6pu43Egf85OaNzr+Wozy4Q+Bjz9wCfybak7o35K98vRbFRvt3tarG4006daCVezBg34i8HEhl6WB97z3opgdSR/IjtTL9OVeeo4P1Iz6PlcwwxcCHxdyuZDqvsIF5H29Cuky9+DN3NCrN48m1vcBFwQ+LuQywg9xpecd2dU2n8v9doxXuZme+zs1p2QFuCLwcaHvZe9eVdRD1VP/3pGttR+rnnXnb6TPFWJXyiaUldANBD4u9b3DMTck/dd3R875QHYpZYg5g+xG4h/U+JxcOQtfCHxcyvVKz9uq5tZ7d/UqbH3U6V1l9f2lql/+eFdupSpW9uAiBD4u9bPc1oBLfu+3eku2hv6tqqnTu7op26fvVF0Zy+WThOvPDN1H4ONKLld6ZrLQd61B70j6TNJCzd4f5g3ZPn4mv/X2h3J73YzucRkCH1dyvdIzc09uK1weypZM2rS/+7uyffZxU/H7sts+uPB9YxV0B4GPa71X8vjbsqGfd/T7hWzYhazTu7oh23fXclb2qeZzx+Nfym2yHf1A4ONaP6v8qPGGbJBd576qXX3zVPYmI2VvNHKdeyp2wVa2m+dPKvephrDHVQh85PKe3Nblb7un60f5VS13fCF7H9m/ym5VkN1o5G+qbpIz72u5Ixv0n6r8pHSZORd0H4GPXDay92At66pavusSxKu8lPSRpD1dPJn5c/rfPlL5N7Tzbur6ZZvZCiQfr/ux2HcHVyPwkdvPssHYFo9lw/zLHI/9Mn1s2RuJF/WZ/MxVvJS9YQpwFQIfhXyp+kOxqKeS9mXLUJsCx23SY/ZVbX0/c0vS257OVfS1op8IfBRW5n6rVZYcXkj6p2xt3mW3z8yv6Tn+qWovYvJ1sdZjMVmLfAh8OHEJ/apqzC9lJyv35Df4vk/P+Uj+6/u+PFP5ZbPoDwIfzt6T9H7Ox2ah7NsPkt6s6NyZR+lzNO2Cpmeyn0SAvAj8jhkOh7U+39eyNe+rSh8v9Go5pG9fVXTe856nz+VTmbLTD7Lf0yrr9kmSVHh2hEDgd8xgMKj9OX+VHQF/JDvZ+TJtT2U/AbypcuHWVRu5zYU8kl0iyyQtivpz6A6gGzayK3jyLIHEKx/K7nefZ2nmC9kyGpujwRUjfCCgjWxp5tkVj3kh+0npsovHgLwY4XdMiJIOyslKYvdl1+XvbP37M9l5khDiOA70zKgKgd9gi8Wi8DF1T9rCn68VLtwv4hL4Lr+zqA8lnQZbr9ehuwAUwu9ssxH4HcPHcPjCp8XuIfAbbrlcFnr87u5uRT1B3+zsFLthY9HfVdSPwG84l4/ITNyiLJdPipRzmo/Ab7jValX4GD6KoyyXwHf5XUW9CPyGc/kjoo6PslwGDQR+8xH4DeeyzI3AR1ksyewmAr/hXOqibHqFslxG+NTwm4/Ab7j5fF74GEb4KMsl8F1+V1EvAr8FTk5OCj1+d3e3Nyt13tWrrQiqtJM+Vx/EcVx4SWbR31GEQeC3gEtttC9lnbclLSU9rPA5HqbP4ev+s03HhG13EfgtwJ46V7sh6VPZUL7r8bx303N+qnzbF3eFy2CBck47EPgtwAg/n5uSvpX0ncrdIPxWeo5v03P2jctggRU67RAZY/I9MIryPRDeDQYD/f7774WPi6Kogt5U565syPrySPa2hHnvDJXV6T/w2Ie/qX172OfNhG2vvfYaZZ2AjDG5/tgZ4bfAer12mhTr4yh/2weyJZn7OR57P32sz7Bvo9FoVPiYk5MTwr4lCPyWcKmRuvzxhvSz7L1wfboh6XNJP+ni+v7d9L99Lv91+pdq3+jeZZBAOac9CPyWcAn8No7wH1V03tuy5aL/ytbob6X/+9v0v1WhqtdSJdbfdxs1/JaI41i//fZb4ePaWFv9QtK9Cs+ffYqocuXNY9kbjrcN9ft2oobfMavVyqmO37ayjmSD8iP5L+9kbqi6sH8p2/c2hr1UfE976vftQuC3yGw2K3zMeDz235EafClpT3ak3BaPZfv8ZeiOlFC0Hk85p10I/BZx+ePa29tr7d46G9mR8r6kp4H7cpWnsn18T/mXgDbVdDqt9PEIi8Bvkdlsps2meKS0sayz7VdJf5X0vqQXgfuy7YVsn/4q28cumM/nOjo6yvXYo6MjRvgtQ+C3jEtZZzKZVNCT+n0t6U3Z1S9V1ffzeJn24c20T10zHo+vDf2jo6PWlgv7jMBvGZfA393dbeUSzYts9CpsQ9T3H+vVm07byzdXGY/Heuedd/TkyZMz//7kyRO99dZbhH1LsSyzhdbrdeHta7s6Irsr6TNVt5Y+80zSh2rfhVToB5ZldpjLKP/Bgwed3CP/Z9kR9/uqpszzMj33myLs0X4Efgu5rozoSi3/Il/LLon0eXXro/ScXazTo58o6bTUarXS7u5uoWM2m43iOO78vUdvyZZ5XG9Y8oNs+ea5tx4B1aKk03GHh4eFj9nZ2en0KD/zXNI/ZLcmLrKM80V6zD9E2KObGOG3lOse+X0Z5W97KLvt8WXbKWTLLNt8hSz6jRF+x63X69wXyGzryyh/W7ZNwyPZ1TaZZ3pVpyfs0QeM8FvMdQfNPo7ygS5jhN8Dq9VKx8fHhY/b2dlxmgMA0G6M8FsuSRL9+OOPTse+/vrr3K0I6ABG+D0xn8+dRvmS20ofAO1F4HfAwcGB03H7+/u9m8AF+oySTkfM53Pt7+8XPm6z2Wg4HHLXIqDF8pZ0CPyOGA6H+uWXX5yOPT4+7sxuml0wGo2UJInTDcXzWq1Wms/nms1mrNbqgLyBL2NMribJ0JrdptOpcXVwcBC8/31vw+HQLBYL55+hi/V6bcbjcfDXTivXTN4cz/3ABrwo2tVtMBiY9Xrt/MefJEnw19DXNhwOS/3syiL0290Mgd/PNplMnP/o1+u1GQwGwV9DH9t8Pnf+ufkSx3Hw7wPNrRkCv7+tTFlgsVgE73/f2nA4dP55+XR4eBj8e0FzayZnjrMss4PK3Nlqb2/Peb99uGnKTeaZuO8+Ar+DFouFPvnkE+fjHzx44Ly2H+21t7cXuguoGIHfUQcHB1oul87Hf/zxx528By7QZwR+h5UN7P/85z+Efg246A21yVvsVwMmJmjFW5lVOxmW7FXbyi6n9Sn094Lm1gyrdGhZm81mpYOA0K+2jcfj0j8jH0J/H2huzRD4tKwNBgMvV3AS+tW2JoR+6O8Bza0ZAp+23XxdyTmdToO/li63JEm8fCJzFfr109yaIfBp59toNPISCrPZjCtyA/8cq6r5h35tNLdmCHzaRc1X2WCxWJjhcBj89fStHRwcePn5XSb066O5NUPg0y5rh4eHXsJhvV6b0WgU/PX0oQ0Gg1r22wn9OmluzRD4tKtama2Uz5tOp5R4KmxJktS2bDP0a6W5NUPg065rPkN/tVqxvbLnNhgMvH0ayyv0a6a5NUPg0/I0n6FvjN1xkdF++TYajcxqtfL6s8kj9OumuTVD4NPyNt+hz12U3FscxyzLpBVuhsCnFWm+Q98YY+bzOWWenG0wGFS+AieP0N8HmlszBD6taKuqXjydTrmb0hXt4OCAvXRopZoh8GkurcrL+wn+V20wGJjJZFJZnX61WjmdO/T3hebWDIFPc21VLwPsc6knjuPKR/SLxcJ53X7o7w/NrRkCn1amxXHsZcO1q6xWKzOZTHqxqidJkkrmSc7bvi8tgd+fZgh8Wtk2GAxqCSljbLmna1ftZqP5OpZXXnTVM4Hfn2YIfJqvNh6Pa5tUXK/XrQ7/OI7NZDKp/NPRtsViceHcCIHfn2YIfJrPVkeJ57z1em1ms5mZTCaN3ahtMBiY0WhkDg8Pg1wodXBwcGnfCPxetdjkyPHI/oyvF0VRvgei0w4ODvTxxx8Hee7NZqP5fK7FYnH6db1e19qH4XB42pIk0d7eXq3Pn1kulxqPx1osFpc+Zj6fa39/v9B5oygq2zUEYIzJ9YMj8FFYHMeaTqeFw6QKJycnWq1Wms/nknT6tcybwXA41GAwUBzHiuNYw+FQcRwHC/dtm81Gh4eHOjg4uPaxBH5/EPio3Hg81uHhoXZ2dkJ35UrZm8JVmvDmdZ0nT55oMplc+1oyRQN/uVxqOBw69g4h5Q18avi0Uq0pWwJ0metOpJPJpNDzbC/ppLWrGSZtaXW2OI5rW8LZF6vVqtQmdIPBIPfqqvV6zVXQLW6GwKeFaAR/eWWDfrvlvXk9u5u2u5kKAn8e+kXR2tMI/uJ8Bv12Gw6Hly4Z5cY1nWhzkzPHi0zaziXt53owkIrjWOPxWJPJpPGTu6EcHx/r8PBQs9ms0ucZjUZnJmUXi0Xlz4laHBtjklyPzPvOIGmm8O9ktBa38Xhc+8VbTbVer83h4SF1c5qPNjMVlHQOGvDCaB1ocRwHuzI1tNlsRr2c5rsdmAoCf9KAF0brWBsOh50P/yzk+7ArKC1Im5gKaviJpB9zPRhwMBwONRqNlCRJKy6EuszJyYnm87lms5nm83nt2z+gd94yxszzPLBI4MeSfnPuElDAYDBQkiSne9Y0+Q0gC/jtPX6AGr1mjFnleWDuwJfYXgFhbW9clrW6V/4sl0utVqugG7gB20zebRVUPPAXksLvIAVsSZJEg8HgdMlhtvmZZD8p5Nn0bLPZnBmZZ0G+Wq3ONKBhlsaY3BsgFQ38qaQHDp0CAPh3ZIwZ533wnwqenOIkADRHoUwm8AGgvQplcqGSjsTELQA0RZEJW6n4CF+Slg7HAAD8KpzFLoE/dzgGAODXvOgBBD4AtNO86AEuNfyBpN+LPhEAwKv/McYUuuqv8Ag/fQLq+AAQzrJo2EtuJR3J7o0PAAjDKYMJfABoH6cMLlzDPz0wilaSdp0OBgC4OjHGxC4Huo7wJUb5ABCCc/aWCfxpiWMBAG6mrgc6l3QkyjoAUDPnco5UboQvMcoHgDpNyxxcdoQfi9seAkBdct/O8CKlRvjpEx+XOQcAIJfjMmEvlS/pSJR1AKAO07InKFXSOT0Jk7cAUKVSk7UZHyN8iVE+AFRp6uMkvkb4A0krSTulTwYA2LaRFLtslnaelxF+2pGpj3MBAM6Y+gh7ydMIX2KJJgBUpNRSzG2+avjZEs0jX+cDAOjIV9hLHkf4EqN8APDM2+he8jjCl05H+Z/4PCcA9NQnPsNe8jzCl1ixAwAeeFuZs83rCF86XbFz4Pu8ANAjB77DXqpghH96Yq6+BQAXXq6qvYj3Ef6WcYXnBoCuGld14soC3xgzl/SkqvMDQAc9SbOzEpWVdCQmcAGggEomardVWdJhAhcA8qtkonZbpSP80yeJormk/cqfCADa6dgYk1T9JHUFPqUdALhY5aWcTKUlnUz6QsZ1PBcAtMy4jrCXagp8STLGzCT9u67nA4AW+HeajbWopaRz+mS2tDOXtFfbkwJAMy0lJXWN7qWaA1863VFzIer5APprI2noe3O069RW0smkL3Bc9/MCQIOM6w57KUDgS6f1/H+FeG4ACOxfddbtt9Ve0jnz5FE0lfQgWAcAoF5HxphxqCcPGvgSF2UB6I1aLq66SpCSzjkj2dlqAOiqpWzWBRU88NMlSYkIfQDdVPvyy8sEL+lk2H4BQAfVtm1CHsFH+Jmtkf4mcFcAwIeNGjKyzzQm8CXJGLMQoQ+g/bKwX4TuyLZGBb50GvqxqOkDaKelbBmnUWEvNTDwJSZyAbRWYyZoL9LIwJfOhP5x4K4AQB7HanDYSw0OfMmGfnqhwlHovgDAFY6MMY0Oe6nhgZ9JL0Vm7x0ATfSvkNslFNGYdfh5RFE0kjQVa/UBhLeR3fUyyEZoLloV+NLpfvozcRMVAOEsJY1CbHFcRitKOtvSb3AibpcIIIx/y07OrkJ3pKjWjfC3UeIBUKPWlXDOa3XgS6d78MzEFssAqnMsW8Jp9Cqc67SupHPe1tLNf4ktGQD4tZFdhdP4JZd5tH6Evy0d7U8l/T1wVwC03xPZEk7rgz7TqcDPRFGUyAb/btieAGihE9mgn4fuiG+tL+lcxBgzN8bEoswDIL+sfBN3Meyljo7wt6Vlnomkj0P3BUBjfSLpsEvlm4t0PvAz6QVbB5IeBO0IgCY5knTQxjX1LnoT+Jk0+CeSxmL9PtBHG9k5vsO+BH2md4Gf2Sr1jHX30CkAAADvSURBVMXkLtAHJ3oV9J0u3Vymt4G/LYqisWzwc/EW0D3HkqbGmGnojoRG4G9Jyz1jMeoH2i4bzU/7Vra5CoF/iSiKhrLBPxLhD7TBiew2K9Mm3k+2CQj8HNLwH6WNbZmB5ljKhvyMkL8egV9QOtmbbDXeAID6LCXNs9bXyVdXBL4H6VYOw63GmwBQ3lLSImtdvfq1TgR+RdIJ4Fj2DWCw9VViNRAg2dUzkrSWDfXs64qJ1moQ+A2y9SYBdMWCsktzEPgA0BOd3C0TAPBHBD4A9ASBDwA9QeADQE8Q+ADQEwQ+APQEgQ8APUHgA0BP/H9f56NLOEVbbgAAAABJRU5ErkJggg== mediatype: image/png - - schema: olm.channel name: rhacs-3.62 package: rhacs-operator entries: - - &bundle-3-62-0 - name: rhacs-operator.v3.62.0 - skipRange: '>= 3.61.0 < 3.62.0' + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" - name: rhacs-operator.v3.62.1 replaces: rhacs-operator.v3.62.0 - skipRange: '>= 3.61.0 < 3.62.1' - + skipRange: ">= 3.61.0 < 3.62.1" +- schema: olm.channel + name: rhacs-3.63 + package: rhacs-operator + entries: + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" - schema: olm.channel name: rhacs-3.64 package: rhacs-operator entries: - - *bundle-3-62-0 - - &bundle-3-63-0 - name: rhacs-operator.v3.63.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 replaces: rhacs-operator.v3.62.0 - skipRange: '>= 3.62.0 < 3.63.0' - - &bundle-3-64-0 - name: rhacs-operator.v3.64.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 replaces: rhacs-operator.v3.63.0 - skipRange: '>= 3.63.0 < 3.64.0' + skipRange: ">= 3.63.0 < 3.64.0" - name: rhacs-operator.v3.64.1 replaces: rhacs-operator.v3.64.0 - skipRange: '>= 3.63.0 < 3.64.1' + skipRange: ">= 3.63.0 < 3.64.1" - name: rhacs-operator.v3.64.2 replaces: rhacs-operator.v3.64.1 - skipRange: '>= 3.63.0 < 3.64.2' - + skipRange: ">= 3.63.0 < 3.64.2" - schema: olm.channel name: rhacs-3.65 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - &bundle-3-65-0 - name: rhacs-operator.v3.65.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 replaces: rhacs-operator.v3.64.0 - skipRange: '>= 3.64.0 < 3.65.0' + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" - name: rhacs-operator.v3.65.1 replaces: rhacs-operator.v3.65.0 - skipRange: '>= 3.64.0 < 3.65.1' - + skipRange: ">= 3.64.0 < 3.65.1" - schema: olm.channel name: rhacs-3.66 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - &bundle-3-66-0 - name: rhacs-operator.v3.66.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 replaces: rhacs-operator.v3.65.0 - skipRange: '>= 3.65.0 < 3.66.0' + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" - name: rhacs-operator.v3.66.1 replaces: rhacs-operator.v3.66.0 - skipRange: '>= 3.65.0 < 3.66.1' - + skipRange: ">= 3.65.0 < 3.66.1" - schema: olm.channel name: rhacs-3.67 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - &bundle-3-67-0 - name: rhacs-operator.v3.67.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 replaces: rhacs-operator.v3.66.0 - skipRange: '>= 3.66.0 < 3.67.0' + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" - name: rhacs-operator.v3.67.1 replaces: rhacs-operator.v3.67.0 - skipRange: '>= 3.66.0 < 3.67.1' + skipRange: ">= 3.66.0 < 3.67.1" - name: rhacs-operator.v3.67.2 replaces: rhacs-operator.v3.67.1 - skipRange: '>= 3.66.0 < 3.67.2' - + skipRange: ">= 3.66.0 < 3.67.2" - schema: olm.channel name: rhacs-3.68 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - &bundle-3-68-0 - name: rhacs-operator.v3.68.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 replaces: rhacs-operator.v3.67.0 - skipRange: '>= 3.67.0 < 3.68.0' + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" - name: rhacs-operator.v3.68.1 replaces: rhacs-operator.v3.68.0 - skipRange: '>= 3.67.0 < 3.68.1' + skipRange: ">= 3.67.0 < 3.68.1" - name: rhacs-operator.v3.68.2 replaces: rhacs-operator.v3.68.1 - skipRange: '>= 3.67.0 < 3.68.2' - + skipRange: ">= 3.67.0 < 3.68.2" - schema: olm.channel name: rhacs-3.69 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - *bundle-3-68-0 - - &bundle-3-69-0 - name: rhacs-operator.v3.69.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 + replaces: rhacs-operator.v3.67.0 + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" + - name: rhacs-operator.v3.68.1 replaces: rhacs-operator.v3.68.0 - skipRange: '>= 3.68.0 < 3.69.0' + skipRange: ">= 3.67.0 < 3.68.1" + - name: rhacs-operator.v3.68.2 + replaces: rhacs-operator.v3.68.1 + skipRange: ">= 3.67.0 < 3.68.2" + - name: rhacs-operator.v3.69.0 + replaces: rhacs-operator.v3.68.2 + skipRange: ">= 3.68.0 < 3.69.0" - name: rhacs-operator.v3.69.1 replaces: rhacs-operator.v3.69.0 - skipRange: '>= 3.68.0 < 3.69.1' + skipRange: ">= 3.68.0 < 3.69.1" - name: rhacs-operator.v3.69.2 replaces: rhacs-operator.v3.69.1 - skipRange: '>= 3.68.0 < 3.69.2' - + skipRange: ">= 3.68.0 < 3.69.2" - schema: olm.channel name: rhacs-3.70 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - *bundle-3-68-0 - - *bundle-3-69-0 - - &bundle-3-70-0 - name: rhacs-operator.v3.70.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 + replaces: rhacs-operator.v3.67.0 + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" + - name: rhacs-operator.v3.68.1 + replaces: rhacs-operator.v3.68.0 + skipRange: ">= 3.67.0 < 3.68.1" + - name: rhacs-operator.v3.68.2 + replaces: rhacs-operator.v3.68.1 + skipRange: ">= 3.67.0 < 3.68.2" + - name: rhacs-operator.v3.69.0 + replaces: rhacs-operator.v3.68.2 + skipRange: ">= 3.68.0 < 3.69.0" + - name: rhacs-operator.v3.69.1 replaces: rhacs-operator.v3.69.0 - skipRange: '>= 3.69.0 < 3.70.0' + skipRange: ">= 3.68.0 < 3.69.1" + - name: rhacs-operator.v3.69.2 + replaces: rhacs-operator.v3.69.1 + skipRange: ">= 3.68.0 < 3.69.2" + - name: rhacs-operator.v3.70.0 + replaces: rhacs-operator.v3.69.2 + skipRange: ">= 3.69.0 < 3.70.0" - name: rhacs-operator.v3.70.1 replaces: rhacs-operator.v3.70.0 - skipRange: '>= 3.69.0 < 3.70.1' - + skipRange: ">= 3.69.0 < 3.70.1" - schema: olm.channel name: rhacs-3.71 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - *bundle-3-68-0 - - *bundle-3-69-0 - - *bundle-3-70-0 - - &bundle-3-71-0 - name: rhacs-operator.v3.71.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 + replaces: rhacs-operator.v3.67.0 + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" + - name: rhacs-operator.v3.68.1 + replaces: rhacs-operator.v3.68.0 + skipRange: ">= 3.67.0 < 3.68.1" + - name: rhacs-operator.v3.68.2 + replaces: rhacs-operator.v3.68.1 + skipRange: ">= 3.67.0 < 3.68.2" + - name: rhacs-operator.v3.69.0 + replaces: rhacs-operator.v3.68.2 + skipRange: ">= 3.68.0 < 3.69.0" + - name: rhacs-operator.v3.69.1 + replaces: rhacs-operator.v3.69.0 + skipRange: ">= 3.68.0 < 3.69.1" + - name: rhacs-operator.v3.69.2 + replaces: rhacs-operator.v3.69.1 + skipRange: ">= 3.68.0 < 3.69.2" + - name: rhacs-operator.v3.70.0 + replaces: rhacs-operator.v3.69.2 + skipRange: ">= 3.69.0 < 3.70.0" + - name: rhacs-operator.v3.70.1 replaces: rhacs-operator.v3.70.0 - skipRange: '>= 3.70.0 < 3.71.0' + skipRange: ">= 3.69.0 < 3.70.1" + - name: rhacs-operator.v3.71.0 + replaces: rhacs-operator.v3.70.1 + skipRange: ">= 3.70.0 < 3.71.0" - name: rhacs-operator.v3.71.1 replaces: rhacs-operator.v3.71.0 - skipRange: '>= 3.70.0 < 3.71.1' + skipRange: ">= 3.70.0 < 3.71.1" - name: rhacs-operator.v3.71.2 replaces: rhacs-operator.v3.71.1 - skipRange: '>= 3.70.0 < 3.71.2' + skipRange: ">= 3.70.0 < 3.71.2" - name: rhacs-operator.v3.71.3 replaces: rhacs-operator.v3.71.2 - skipRange: '>= 3.70.0 < 3.71.3' - + skipRange: ">= 3.70.0 < 3.71.3" - schema: olm.channel name: rhacs-3.72 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - *bundle-3-68-0 - - *bundle-3-69-0 - - *bundle-3-70-0 - - *bundle-3-71-0 - - &bundle-3-72-0 - name: rhacs-operator.v3.72.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 + replaces: rhacs-operator.v3.67.0 + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" + - name: rhacs-operator.v3.68.1 + replaces: rhacs-operator.v3.68.0 + skipRange: ">= 3.67.0 < 3.68.1" + - name: rhacs-operator.v3.68.2 + replaces: rhacs-operator.v3.68.1 + skipRange: ">= 3.67.0 < 3.68.2" + - name: rhacs-operator.v3.69.0 + replaces: rhacs-operator.v3.68.2 + skipRange: ">= 3.68.0 < 3.69.0" + - name: rhacs-operator.v3.69.1 + replaces: rhacs-operator.v3.69.0 + skipRange: ">= 3.68.0 < 3.69.1" + - name: rhacs-operator.v3.69.2 + replaces: rhacs-operator.v3.69.1 + skipRange: ">= 3.68.0 < 3.69.2" + - name: rhacs-operator.v3.70.0 + replaces: rhacs-operator.v3.69.2 + skipRange: ">= 3.69.0 < 3.70.0" + - name: rhacs-operator.v3.70.1 + replaces: rhacs-operator.v3.70.0 + skipRange: ">= 3.69.0 < 3.70.1" + - name: rhacs-operator.v3.71.0 + replaces: rhacs-operator.v3.70.1 + skipRange: ">= 3.70.0 < 3.71.0" + - name: rhacs-operator.v3.71.1 replaces: rhacs-operator.v3.71.0 - skipRange: '>= 3.71.0 < 3.72.0' + skipRange: ">= 3.70.0 < 3.71.1" + - name: rhacs-operator.v3.71.2 + replaces: rhacs-operator.v3.71.1 + skipRange: ">= 3.70.0 < 3.71.2" + - name: rhacs-operator.v3.71.3 + replaces: rhacs-operator.v3.71.2 + skipRange: ">= 3.70.0 < 3.71.3" + - name: rhacs-operator.v3.72.0 + replaces: rhacs-operator.v3.71.3 + skipRange: ">= 3.71.0 < 3.72.0" - name: rhacs-operator.v3.72.1 replaces: rhacs-operator.v3.72.0 - skipRange: '>= 3.71.0 < 3.72.1' + skipRange: ">= 3.71.0 < 3.72.1" - name: rhacs-operator.v3.72.2 replaces: rhacs-operator.v3.72.1 - skipRange: '>= 3.71.0 < 3.72.2' + skipRange: ">= 3.71.0 < 3.72.2" - name: rhacs-operator.v3.72.3 replaces: rhacs-operator.v3.72.2 - skipRange: '>= 3.71.0 < 3.72.3' + skipRange: ">= 3.71.0 < 3.72.3" - name: rhacs-operator.v3.72.4 replaces: rhacs-operator.v3.72.3 - skipRange: '>= 3.71.0 < 3.72.4' - + skipRange: ">= 3.71.0 < 3.72.4" - schema: olm.channel name: rhacs-3.73 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - *bundle-3-68-0 - - *bundle-3-69-0 - - *bundle-3-70-0 - - *bundle-3-71-0 - - *bundle-3-72-0 - - &bundle-3-73-0 - name: rhacs-operator.v3.73.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 + replaces: rhacs-operator.v3.67.0 + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" + - name: rhacs-operator.v3.68.1 + replaces: rhacs-operator.v3.68.0 + skipRange: ">= 3.67.0 < 3.68.1" + - name: rhacs-operator.v3.68.2 + replaces: rhacs-operator.v3.68.1 + skipRange: ">= 3.67.0 < 3.68.2" + - name: rhacs-operator.v3.69.0 + replaces: rhacs-operator.v3.68.2 + skipRange: ">= 3.68.0 < 3.69.0" + - name: rhacs-operator.v3.69.1 + replaces: rhacs-operator.v3.69.0 + skipRange: ">= 3.68.0 < 3.69.1" + - name: rhacs-operator.v3.69.2 + replaces: rhacs-operator.v3.69.1 + skipRange: ">= 3.68.0 < 3.69.2" + - name: rhacs-operator.v3.70.0 + replaces: rhacs-operator.v3.69.2 + skipRange: ">= 3.69.0 < 3.70.0" + - name: rhacs-operator.v3.70.1 + replaces: rhacs-operator.v3.70.0 + skipRange: ">= 3.69.0 < 3.70.1" + - name: rhacs-operator.v3.71.0 + replaces: rhacs-operator.v3.70.1 + skipRange: ">= 3.70.0 < 3.71.0" + - name: rhacs-operator.v3.71.1 + replaces: rhacs-operator.v3.71.0 + skipRange: ">= 3.70.0 < 3.71.1" + - name: rhacs-operator.v3.71.2 + replaces: rhacs-operator.v3.71.1 + skipRange: ">= 3.70.0 < 3.71.2" + - name: rhacs-operator.v3.71.3 + replaces: rhacs-operator.v3.71.2 + skipRange: ">= 3.70.0 < 3.71.3" + - name: rhacs-operator.v3.72.0 + replaces: rhacs-operator.v3.71.3 + skipRange: ">= 3.71.0 < 3.72.0" + - name: rhacs-operator.v3.72.1 replaces: rhacs-operator.v3.72.0 - skipRange: '>= 3.72.0 < 3.73.0' + skipRange: ">= 3.71.0 < 3.72.1" + - name: rhacs-operator.v3.72.2 + replaces: rhacs-operator.v3.72.1 + skipRange: ">= 3.71.0 < 3.72.2" + - name: rhacs-operator.v3.72.3 + replaces: rhacs-operator.v3.72.2 + skipRange: ">= 3.71.0 < 3.72.3" + - name: rhacs-operator.v3.72.4 + replaces: rhacs-operator.v3.72.3 + skipRange: ">= 3.71.0 < 3.72.4" + - name: rhacs-operator.v3.73.0 + replaces: rhacs-operator.v3.72.4 + skipRange: ">= 3.72.0 < 3.73.0" - name: rhacs-operator.v3.73.1 replaces: rhacs-operator.v3.73.0 - skipRange: '>= 3.72.0 < 3.73.1' + skipRange: ">= 3.72.0 < 3.73.1" - name: rhacs-operator.v3.73.2 replaces: rhacs-operator.v3.73.1 - skipRange: '>= 3.72.0 < 3.73.2' + skipRange: ">= 3.72.0 < 3.73.2" - name: rhacs-operator.v3.73.3 replaces: rhacs-operator.v3.73.2 - skipRange: '>= 3.72.0 < 3.73.3' + skipRange: ">= 3.72.0 < 3.73.3" - name: rhacs-operator.v3.73.4 replaces: rhacs-operator.v3.73.3 - skipRange: '>= 3.72.0 < 3.73.4' + skipRange: ">= 3.72.0 < 3.73.4" - name: rhacs-operator.v3.73.5 replaces: rhacs-operator.v3.73.4 - skipRange: '>= 3.72.0 < 3.73.5' - + skipRange: ">= 3.72.0 < 3.73.5" - schema: olm.channel name: rhacs-3.74 package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - *bundle-3-68-0 - - *bundle-3-69-0 - - *bundle-3-70-0 - - *bundle-3-71-0 - - *bundle-3-72-0 - - *bundle-3-73-0 - - &bundle-3-74-0 - name: rhacs-operator.v3.74.0 + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 + replaces: rhacs-operator.v3.67.0 + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" + - name: rhacs-operator.v3.68.1 + replaces: rhacs-operator.v3.68.0 + skipRange: ">= 3.67.0 < 3.68.1" + - name: rhacs-operator.v3.68.2 + replaces: rhacs-operator.v3.68.1 + skipRange: ">= 3.67.0 < 3.68.2" + - name: rhacs-operator.v3.69.0 + replaces: rhacs-operator.v3.68.2 + skipRange: ">= 3.68.0 < 3.69.0" + - name: rhacs-operator.v3.69.1 + replaces: rhacs-operator.v3.69.0 + skipRange: ">= 3.68.0 < 3.69.1" + - name: rhacs-operator.v3.69.2 + replaces: rhacs-operator.v3.69.1 + skipRange: ">= 3.68.0 < 3.69.2" + - name: rhacs-operator.v3.70.0 + replaces: rhacs-operator.v3.69.2 + skipRange: ">= 3.69.0 < 3.70.0" + - name: rhacs-operator.v3.70.1 + replaces: rhacs-operator.v3.70.0 + skipRange: ">= 3.69.0 < 3.70.1" + - name: rhacs-operator.v3.71.0 + replaces: rhacs-operator.v3.70.1 + skipRange: ">= 3.70.0 < 3.71.0" + - name: rhacs-operator.v3.71.1 + replaces: rhacs-operator.v3.71.0 + skipRange: ">= 3.70.0 < 3.71.1" + - name: rhacs-operator.v3.71.2 + replaces: rhacs-operator.v3.71.1 + skipRange: ">= 3.70.0 < 3.71.2" + - name: rhacs-operator.v3.71.3 + replaces: rhacs-operator.v3.71.2 + skipRange: ">= 3.70.0 < 3.71.3" + - name: rhacs-operator.v3.72.0 + replaces: rhacs-operator.v3.71.3 + skipRange: ">= 3.71.0 < 3.72.0" + - name: rhacs-operator.v3.72.1 + replaces: rhacs-operator.v3.72.0 + skipRange: ">= 3.71.0 < 3.72.1" + - name: rhacs-operator.v3.72.2 + replaces: rhacs-operator.v3.72.1 + skipRange: ">= 3.71.0 < 3.72.2" + - name: rhacs-operator.v3.72.3 + replaces: rhacs-operator.v3.72.2 + skipRange: ">= 3.71.0 < 3.72.3" + - name: rhacs-operator.v3.72.4 + replaces: rhacs-operator.v3.72.3 + skipRange: ">= 3.71.0 < 3.72.4" + - name: rhacs-operator.v3.73.0 + replaces: rhacs-operator.v3.72.4 + skipRange: ">= 3.72.0 < 3.73.0" + - name: rhacs-operator.v3.73.1 replaces: rhacs-operator.v3.73.0 - skipRange: '>= 3.73.0 < 3.74.0' - - &bundle-3-74-1 - name: rhacs-operator.v3.74.1 + skipRange: ">= 3.72.0 < 3.73.1" + - name: rhacs-operator.v3.73.2 + replaces: rhacs-operator.v3.73.1 + skipRange: ">= 3.72.0 < 3.73.2" + - name: rhacs-operator.v3.73.3 + replaces: rhacs-operator.v3.73.2 + skipRange: ">= 3.72.0 < 3.73.3" + - name: rhacs-operator.v3.73.4 + replaces: rhacs-operator.v3.73.3 + skipRange: ">= 3.72.0 < 3.73.4" + - name: rhacs-operator.v3.73.5 + replaces: rhacs-operator.v3.73.4 + skipRange: ">= 3.72.0 < 3.73.5" + - name: rhacs-operator.v3.74.0 + replaces: rhacs-operator.v3.73.5 + skipRange: ">= 3.73.0 < 3.74.0" + - name: rhacs-operator.v3.74.1 replaces: rhacs-operator.v3.74.0 - skipRange: '>= 3.73.0 < 3.74.1' - - &bundle-3-74-2 - name: rhacs-operator.v3.74.2 + skipRange: ">= 3.73.0 < 3.74.1" + - name: rhacs-operator.v3.74.2 replaces: rhacs-operator.v3.74.1 - skipRange: '>= 3.73.0 < 3.74.2' - - &bundle-3-74-3 - name: rhacs-operator.v3.74.3 + skipRange: ">= 3.73.0 < 3.74.2" + - name: rhacs-operator.v3.74.3 replaces: rhacs-operator.v3.74.2 - skipRange: '>= 3.73.0 < 3.74.3' - - &bundle-3-74-4 - name: rhacs-operator.v3.74.4 + skipRange: ">= 3.73.0 < 3.74.3" + - name: rhacs-operator.v3.74.4 replaces: rhacs-operator.v3.74.3 - skipRange: '>= 3.73.0 < 3.74.4' - - &bundle-3-74-5 - name: rhacs-operator.v3.74.5 + skipRange: ">= 3.73.0 < 3.74.4" + - name: rhacs-operator.v3.74.5 replaces: rhacs-operator.v3.74.4 - skipRange: '>= 3.73.0 < 3.74.5' - - &bundle-3-74-6 - name: rhacs-operator.v3.74.6 + skipRange: ">= 3.73.0 < 3.74.5" + - name: rhacs-operator.v3.74.6 replaces: rhacs-operator.v3.74.5 - skipRange: '>= 3.73.0 < 3.74.6' - - &bundle-3-74-7 - name: rhacs-operator.v3.74.7 + skipRange: ">= 3.73.0 < 3.74.6" + - name: rhacs-operator.v3.74.7 replaces: rhacs-operator.v3.74.6 - skipRange: '>= 3.73.0 < 3.74.7' - - &bundle-3-74-8 - name: rhacs-operator.v3.74.8 + skipRange: ">= 3.73.0 < 3.74.7" + - name: rhacs-operator.v3.74.8 replaces: rhacs-operator.v3.74.7 - skipRange: '>= 3.73.0 < 3.74.8' - - &bundle-3-74-9 - name: rhacs-operator.v3.74.9 + skipRange: ">= 3.73.0 < 3.74.8" + - name: rhacs-operator.v3.74.9 replaces: rhacs-operator.v3.74.8 - skipRange: '>= 3.73.0 < 3.74.9' - + skipRange: ">= 3.73.0 < 3.74.9" - schema: olm.channel name: latest package: rhacs-operator entries: - - *bundle-3-62-0 - - *bundle-3-63-0 - - *bundle-3-64-0 - - *bundle-3-65-0 - - *bundle-3-66-0 - - *bundle-3-67-0 - - *bundle-3-68-0 - - *bundle-3-69-0 - - *bundle-3-70-0 - - *bundle-3-71-0 - - *bundle-3-72-0 - - *bundle-3-73-0 - - *bundle-3-74-0 - - *bundle-3-74-1 - - *bundle-3-74-2 - - *bundle-3-74-3 - - *bundle-3-74-4 - - *bundle-3-74-5 - - *bundle-3-74-6 - - *bundle-3-74-7 - - *bundle-3-74-8 - - *bundle-3-74-9 - + - name: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.0" + - name: rhacs-operator.v3.62.1 + replaces: rhacs-operator.v3.62.0 + skipRange: ">= 3.61.0 < 3.62.1" + - name: rhacs-operator.v3.63.0 + replaces: rhacs-operator.v3.62.1 + skipRange: ">= 3.62.0 < 3.63.0" + - name: rhacs-operator.v3.64.0 + replaces: rhacs-operator.v3.63.0 + skipRange: ">= 3.63.0 < 3.64.0" + - name: rhacs-operator.v3.64.1 + replaces: rhacs-operator.v3.64.0 + skipRange: ">= 3.63.0 < 3.64.1" + - name: rhacs-operator.v3.64.2 + replaces: rhacs-operator.v3.64.1 + skipRange: ">= 3.63.0 < 3.64.2" + - name: rhacs-operator.v3.65.0 + replaces: rhacs-operator.v3.64.2 + skipRange: ">= 3.64.0 < 3.65.0" + - name: rhacs-operator.v3.65.1 + replaces: rhacs-operator.v3.65.0 + skipRange: ">= 3.64.0 < 3.65.1" + - name: rhacs-operator.v3.66.0 + replaces: rhacs-operator.v3.65.1 + skipRange: ">= 3.65.0 < 3.66.0" + - name: rhacs-operator.v3.66.1 + replaces: rhacs-operator.v3.66.0 + skipRange: ">= 3.65.0 < 3.66.1" + - name: rhacs-operator.v3.67.0 + replaces: rhacs-operator.v3.66.1 + skipRange: ">= 3.66.0 < 3.67.0" + - name: rhacs-operator.v3.67.1 + replaces: rhacs-operator.v3.67.0 + skipRange: ">= 3.66.0 < 3.67.1" + - name: rhacs-operator.v3.67.2 + replaces: rhacs-operator.v3.67.1 + skipRange: ">= 3.66.0 < 3.67.2" + - name: rhacs-operator.v3.68.0 + replaces: rhacs-operator.v3.67.2 + skipRange: ">= 3.67.0 < 3.68.0" + - name: rhacs-operator.v3.68.1 + replaces: rhacs-operator.v3.68.0 + skipRange: ">= 3.67.0 < 3.68.1" + - name: rhacs-operator.v3.68.2 + replaces: rhacs-operator.v3.68.1 + skipRange: ">= 3.67.0 < 3.68.2" + - name: rhacs-operator.v3.69.0 + replaces: rhacs-operator.v3.68.2 + skipRange: ">= 3.68.0 < 3.69.0" + - name: rhacs-operator.v3.69.1 + replaces: rhacs-operator.v3.69.0 + skipRange: ">= 3.68.0 < 3.69.1" + - name: rhacs-operator.v3.69.2 + replaces: rhacs-operator.v3.69.1 + skipRange: ">= 3.68.0 < 3.69.2" + - name: rhacs-operator.v3.70.0 + replaces: rhacs-operator.v3.69.2 + skipRange: ">= 3.69.0 < 3.70.0" + - name: rhacs-operator.v3.70.1 + replaces: rhacs-operator.v3.70.0 + skipRange: ">= 3.69.0 < 3.70.1" + - name: rhacs-operator.v3.71.0 + replaces: rhacs-operator.v3.70.1 + skipRange: ">= 3.70.0 < 3.71.0" + - name: rhacs-operator.v3.71.1 + replaces: rhacs-operator.v3.71.0 + skipRange: ">= 3.70.0 < 3.71.1" + - name: rhacs-operator.v3.71.2 + replaces: rhacs-operator.v3.71.1 + skipRange: ">= 3.70.0 < 3.71.2" + - name: rhacs-operator.v3.71.3 + replaces: rhacs-operator.v3.71.2 + skipRange: ">= 3.70.0 < 3.71.3" + - name: rhacs-operator.v3.72.0 + replaces: rhacs-operator.v3.71.3 + skipRange: ">= 3.71.0 < 3.72.0" + - name: rhacs-operator.v3.72.1 + replaces: rhacs-operator.v3.72.0 + skipRange: ">= 3.71.0 < 3.72.1" + - name: rhacs-operator.v3.72.2 + replaces: rhacs-operator.v3.72.1 + skipRange: ">= 3.71.0 < 3.72.2" + - name: rhacs-operator.v3.72.3 + replaces: rhacs-operator.v3.72.2 + skipRange: ">= 3.71.0 < 3.72.3" + - name: rhacs-operator.v3.72.4 + replaces: rhacs-operator.v3.72.3 + skipRange: ">= 3.71.0 < 3.72.4" + - name: rhacs-operator.v3.73.0 + replaces: rhacs-operator.v3.72.4 + skipRange: ">= 3.72.0 < 3.73.0" + - name: rhacs-operator.v3.73.1 + replaces: rhacs-operator.v3.73.0 + skipRange: ">= 3.72.0 < 3.73.1" + - name: rhacs-operator.v3.73.2 + replaces: rhacs-operator.v3.73.1 + skipRange: ">= 3.72.0 < 3.73.2" + - name: rhacs-operator.v3.73.3 + replaces: rhacs-operator.v3.73.2 + skipRange: ">= 3.72.0 < 3.73.3" + - name: rhacs-operator.v3.73.4 + replaces: rhacs-operator.v3.73.3 + skipRange: ">= 3.72.0 < 3.73.4" + - name: rhacs-operator.v3.73.5 + replaces: rhacs-operator.v3.73.4 + skipRange: ">= 3.72.0 < 3.73.5" + - name: rhacs-operator.v3.74.0 + replaces: rhacs-operator.v3.73.5 + skipRange: ">= 3.73.0 < 3.74.0" + - name: rhacs-operator.v3.74.1 + replaces: rhacs-operator.v3.74.0 + skipRange: ">= 3.73.0 < 3.74.1" + - name: rhacs-operator.v3.74.2 + replaces: rhacs-operator.v3.74.1 + skipRange: ">= 3.73.0 < 3.74.2" + - name: rhacs-operator.v3.74.3 + replaces: rhacs-operator.v3.74.2 + skipRange: ">= 3.73.0 < 3.74.3" + - name: rhacs-operator.v3.74.4 + replaces: rhacs-operator.v3.74.3 + skipRange: ">= 3.73.0 < 3.74.4" + - name: rhacs-operator.v3.74.5 + replaces: rhacs-operator.v3.74.4 + skipRange: ">= 3.73.0 < 3.74.5" + - name: rhacs-operator.v3.74.6 + replaces: rhacs-operator.v3.74.5 + skipRange: ">= 3.73.0 < 3.74.6" + - name: rhacs-operator.v3.74.7 + replaces: rhacs-operator.v3.74.6 + skipRange: ">= 3.73.0 < 3.74.7" + - name: rhacs-operator.v3.74.8 + replaces: rhacs-operator.v3.74.7 + skipRange: ">= 3.73.0 < 3.74.8" + - name: rhacs-operator.v3.74.9 + replaces: rhacs-operator.v3.74.8 + skipRange: ">= 3.73.0 < 3.74.9" +- schema: olm.channel + name: rhacs-4.0 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" +- schema: olm.channel + name: rhacs-4.1 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 +- schema: olm.channel + name: rhacs-4.2 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + skips: + - rhacs-operator.v4.1.0 +- schema: olm.channel + name: rhacs-4.3 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.3.0 + replaces: rhacs-operator.v4.2.5 + skipRange: ">= 4.2.0 < 4.3.0" + - name: rhacs-operator.v4.3.1 + replaces: rhacs-operator.v4.3.0 + skipRange: ">= 4.2.0 < 4.3.1" + - name: rhacs-operator.v4.3.2 + replaces: rhacs-operator.v4.3.1 + skipRange: ">= 4.2.0 < 4.3.2" + - name: rhacs-operator.v4.3.3 + replaces: rhacs-operator.v4.3.2 + skipRange: ">= 4.2.0 < 4.3.3" + - name: rhacs-operator.v4.3.4 + replaces: rhacs-operator.v4.3.3 + skipRange: ">= 4.2.0 < 4.3.4" + - name: rhacs-operator.v4.3.5 + replaces: rhacs-operator.v4.3.4 + skipRange: ">= 4.2.0 < 4.3.5" + - name: rhacs-operator.v4.3.6 + replaces: rhacs-operator.v4.3.5 + skipRange: ">= 4.2.0 < 4.3.6" + - name: rhacs-operator.v4.3.7 + replaces: rhacs-operator.v4.3.6 + skipRange: ">= 4.2.0 < 4.3.7" + - name: rhacs-operator.v4.3.8 + replaces: rhacs-operator.v4.3.7 + skipRange: ">= 4.2.0 < 4.3.8" +- schema: olm.channel + name: rhacs-4.4 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.3.0 + replaces: rhacs-operator.v4.2.5 + skipRange: ">= 4.2.0 < 4.3.0" + - name: rhacs-operator.v4.3.1 + replaces: rhacs-operator.v4.3.0 + skipRange: ">= 4.2.0 < 4.3.1" + - name: rhacs-operator.v4.3.2 + replaces: rhacs-operator.v4.3.1 + skipRange: ">= 4.2.0 < 4.3.2" + - name: rhacs-operator.v4.3.3 + replaces: rhacs-operator.v4.3.2 + skipRange: ">= 4.2.0 < 4.3.3" + - name: rhacs-operator.v4.3.4 + replaces: rhacs-operator.v4.3.3 + skipRange: ">= 4.2.0 < 4.3.4" + - name: rhacs-operator.v4.3.5 + replaces: rhacs-operator.v4.3.4 + skipRange: ">= 4.2.0 < 4.3.5" + - name: rhacs-operator.v4.3.6 + replaces: rhacs-operator.v4.3.5 + skipRange: ">= 4.2.0 < 4.3.6" + - name: rhacs-operator.v4.3.7 + replaces: rhacs-operator.v4.3.6 + skipRange: ">= 4.2.0 < 4.3.7" + - name: rhacs-operator.v4.3.8 + replaces: rhacs-operator.v4.3.7 + skipRange: ">= 4.2.0 < 4.3.8" + - name: rhacs-operator.v4.4.0 + replaces: rhacs-operator.v4.3.8 + skipRange: ">= 4.3.0 < 4.4.0" + - name: rhacs-operator.v4.4.1 + replaces: rhacs-operator.v4.4.0 + skipRange: ">= 4.3.0 < 4.4.1" + - name: rhacs-operator.v4.4.2 + replaces: rhacs-operator.v4.4.1 + skipRange: ">= 4.3.0 < 4.4.2" + - name: rhacs-operator.v4.4.3 + replaces: rhacs-operator.v4.4.2 + skipRange: ">= 4.3.0 < 4.4.3" + - name: rhacs-operator.v4.4.4 + replaces: rhacs-operator.v4.4.3 + skipRange: ">= 4.3.0 < 4.4.4" + - name: rhacs-operator.v4.4.5 + replaces: rhacs-operator.v4.4.4 + skipRange: ">= 4.3.0 < 4.4.5" + - name: rhacs-operator.v4.4.6 + replaces: rhacs-operator.v4.4.5 + skipRange: ">= 4.3.0 < 4.4.6" + - name: rhacs-operator.v4.4.7 + replaces: rhacs-operator.v4.4.6 + skipRange: ">= 4.3.0 < 4.4.7" + - name: rhacs-operator.v4.4.8 + replaces: rhacs-operator.v4.4.7 + skipRange: ">= 4.3.0 < 4.4.8" +- schema: olm.channel + name: rhacs-4.5 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.3.0 + replaces: rhacs-operator.v4.2.5 + skipRange: ">= 4.2.0 < 4.3.0" + - name: rhacs-operator.v4.3.1 + replaces: rhacs-operator.v4.3.0 + skipRange: ">= 4.2.0 < 4.3.1" + - name: rhacs-operator.v4.3.2 + replaces: rhacs-operator.v4.3.1 + skipRange: ">= 4.2.0 < 4.3.2" + - name: rhacs-operator.v4.3.3 + replaces: rhacs-operator.v4.3.2 + skipRange: ">= 4.2.0 < 4.3.3" + - name: rhacs-operator.v4.3.4 + replaces: rhacs-operator.v4.3.3 + skipRange: ">= 4.2.0 < 4.3.4" + - name: rhacs-operator.v4.3.5 + replaces: rhacs-operator.v4.3.4 + skipRange: ">= 4.2.0 < 4.3.5" + - name: rhacs-operator.v4.3.6 + replaces: rhacs-operator.v4.3.5 + skipRange: ">= 4.2.0 < 4.3.6" + - name: rhacs-operator.v4.3.7 + replaces: rhacs-operator.v4.3.6 + skipRange: ">= 4.2.0 < 4.3.7" + - name: rhacs-operator.v4.3.8 + replaces: rhacs-operator.v4.3.7 + skipRange: ">= 4.2.0 < 4.3.8" + - name: rhacs-operator.v4.4.0 + replaces: rhacs-operator.v4.3.8 + skipRange: ">= 4.3.0 < 4.4.0" + - name: rhacs-operator.v4.4.1 + replaces: rhacs-operator.v4.4.0 + skipRange: ">= 4.3.0 < 4.4.1" + - name: rhacs-operator.v4.4.2 + replaces: rhacs-operator.v4.4.1 + skipRange: ">= 4.3.0 < 4.4.2" + - name: rhacs-operator.v4.4.3 + replaces: rhacs-operator.v4.4.2 + skipRange: ">= 4.3.0 < 4.4.3" + - name: rhacs-operator.v4.4.4 + replaces: rhacs-operator.v4.4.3 + skipRange: ">= 4.3.0 < 4.4.4" + - name: rhacs-operator.v4.4.5 + replaces: rhacs-operator.v4.4.4 + skipRange: ">= 4.3.0 < 4.4.5" + - name: rhacs-operator.v4.4.6 + replaces: rhacs-operator.v4.4.5 + skipRange: ">= 4.3.0 < 4.4.6" + - name: rhacs-operator.v4.4.7 + replaces: rhacs-operator.v4.4.6 + skipRange: ">= 4.3.0 < 4.4.7" + - name: rhacs-operator.v4.4.8 + replaces: rhacs-operator.v4.4.7 + skipRange: ">= 4.3.0 < 4.4.8" + - name: rhacs-operator.v4.5.0 + replaces: rhacs-operator.v4.4.8 + skipRange: ">= 4.4.0 < 4.5.0" + - name: rhacs-operator.v4.5.1 + replaces: rhacs-operator.v4.5.0 + skipRange: ">= 4.4.0 < 4.5.1" + - name: rhacs-operator.v4.5.2 + replaces: rhacs-operator.v4.5.1 + skipRange: ">= 4.4.0 < 4.5.2" + - name: rhacs-operator.v4.5.3 + replaces: rhacs-operator.v4.5.2 + skipRange: ">= 4.4.0 < 4.5.3" + - name: rhacs-operator.v4.5.4 + replaces: rhacs-operator.v4.5.3 + skipRange: ">= 4.4.0 < 4.5.4" + - name: rhacs-operator.v4.5.5 + replaces: rhacs-operator.v4.5.4 + skipRange: ">= 4.4.0 < 4.5.5" + - name: rhacs-operator.v4.5.6 + replaces: rhacs-operator.v4.5.5 + skipRange: ">= 4.4.0 < 4.5.6" + - name: rhacs-operator.v4.5.7 + replaces: rhacs-operator.v4.5.6 + skipRange: ">= 4.4.0 < 4.5.7" + - name: rhacs-operator.v4.5.8 + replaces: rhacs-operator.v4.5.7 + skipRange: ">= 4.4.0 < 4.5.8" + - name: rhacs-operator.v4.5.9 + replaces: rhacs-operator.v4.5.8 + skipRange: ">= 4.4.0 < 4.5.9" +- schema: olm.channel + name: rhacs-4.6 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.3.0 + replaces: rhacs-operator.v4.2.5 + skipRange: ">= 4.2.0 < 4.3.0" + - name: rhacs-operator.v4.3.1 + replaces: rhacs-operator.v4.3.0 + skipRange: ">= 4.2.0 < 4.3.1" + - name: rhacs-operator.v4.3.2 + replaces: rhacs-operator.v4.3.1 + skipRange: ">= 4.2.0 < 4.3.2" + - name: rhacs-operator.v4.3.3 + replaces: rhacs-operator.v4.3.2 + skipRange: ">= 4.2.0 < 4.3.3" + - name: rhacs-operator.v4.3.4 + replaces: rhacs-operator.v4.3.3 + skipRange: ">= 4.2.0 < 4.3.4" + - name: rhacs-operator.v4.3.5 + replaces: rhacs-operator.v4.3.4 + skipRange: ">= 4.2.0 < 4.3.5" + - name: rhacs-operator.v4.3.6 + replaces: rhacs-operator.v4.3.5 + skipRange: ">= 4.2.0 < 4.3.6" + - name: rhacs-operator.v4.3.7 + replaces: rhacs-operator.v4.3.6 + skipRange: ">= 4.2.0 < 4.3.7" + - name: rhacs-operator.v4.3.8 + replaces: rhacs-operator.v4.3.7 + skipRange: ">= 4.2.0 < 4.3.8" + - name: rhacs-operator.v4.4.0 + replaces: rhacs-operator.v4.3.8 + skipRange: ">= 4.3.0 < 4.4.0" + - name: rhacs-operator.v4.4.1 + replaces: rhacs-operator.v4.4.0 + skipRange: ">= 4.3.0 < 4.4.1" + - name: rhacs-operator.v4.4.2 + replaces: rhacs-operator.v4.4.1 + skipRange: ">= 4.3.0 < 4.4.2" + - name: rhacs-operator.v4.4.3 + replaces: rhacs-operator.v4.4.2 + skipRange: ">= 4.3.0 < 4.4.3" + - name: rhacs-operator.v4.4.4 + replaces: rhacs-operator.v4.4.3 + skipRange: ">= 4.3.0 < 4.4.4" + - name: rhacs-operator.v4.4.5 + replaces: rhacs-operator.v4.4.4 + skipRange: ">= 4.3.0 < 4.4.5" + - name: rhacs-operator.v4.4.6 + replaces: rhacs-operator.v4.4.5 + skipRange: ">= 4.3.0 < 4.4.6" + - name: rhacs-operator.v4.4.7 + replaces: rhacs-operator.v4.4.6 + skipRange: ">= 4.3.0 < 4.4.7" + - name: rhacs-operator.v4.4.8 + replaces: rhacs-operator.v4.4.7 + skipRange: ">= 4.3.0 < 4.4.8" + - name: rhacs-operator.v4.5.0 + replaces: rhacs-operator.v4.4.8 + skipRange: ">= 4.4.0 < 4.5.0" + - name: rhacs-operator.v4.5.1 + replaces: rhacs-operator.v4.5.0 + skipRange: ">= 4.4.0 < 4.5.1" + - name: rhacs-operator.v4.5.2 + replaces: rhacs-operator.v4.5.1 + skipRange: ">= 4.4.0 < 4.5.2" + - name: rhacs-operator.v4.5.3 + replaces: rhacs-operator.v4.5.2 + skipRange: ">= 4.4.0 < 4.5.3" + - name: rhacs-operator.v4.5.4 + replaces: rhacs-operator.v4.5.3 + skipRange: ">= 4.4.0 < 4.5.4" + - name: rhacs-operator.v4.5.5 + replaces: rhacs-operator.v4.5.4 + skipRange: ">= 4.4.0 < 4.5.5" + - name: rhacs-operator.v4.5.6 + replaces: rhacs-operator.v4.5.5 + skipRange: ">= 4.4.0 < 4.5.6" + - name: rhacs-operator.v4.5.7 + replaces: rhacs-operator.v4.5.6 + skipRange: ">= 4.4.0 < 4.5.7" + - name: rhacs-operator.v4.5.8 + replaces: rhacs-operator.v4.5.7 + skipRange: ">= 4.4.0 < 4.5.8" + - name: rhacs-operator.v4.5.9 + replaces: rhacs-operator.v4.5.8 + skipRange: ">= 4.4.0 < 4.5.9" + - name: rhacs-operator.v4.6.0 + replaces: rhacs-operator.v4.5.9 + skipRange: ">= 4.5.0 < 4.6.0" + - name: rhacs-operator.v4.6.1 + replaces: rhacs-operator.v4.6.0 + skipRange: ">= 4.5.0 < 4.6.1" + - name: rhacs-operator.v4.6.2 + replaces: rhacs-operator.v4.6.1 + skipRange: ">= 4.5.0 < 4.6.2" + - name: rhacs-operator.v4.6.3 + replaces: rhacs-operator.v4.6.2 + skipRange: ">= 4.5.0 < 4.6.3" + - name: rhacs-operator.v4.6.4 + replaces: rhacs-operator.v4.6.3 + skipRange: ">= 4.5.0 < 4.6.4" + - name: rhacs-operator.v4.6.5 + replaces: rhacs-operator.v4.6.4 + skipRange: ">= 4.5.0 < 4.6.5" + - name: rhacs-operator.v4.6.6 + replaces: rhacs-operator.v4.6.5 + skipRange: ">= 4.5.0 < 4.6.6" + - name: rhacs-operator.v4.6.7 + replaces: rhacs-operator.v4.6.6 + skipRange: ">= 4.5.0 < 4.6.7" + - name: rhacs-operator.v4.6.8 + replaces: rhacs-operator.v4.6.7 + skipRange: ">= 4.5.0 < 4.6.8" + - name: rhacs-operator.v4.6.9 + replaces: rhacs-operator.v4.6.8 + skipRange: ">= 4.5.0 < 4.6.9" +- schema: olm.channel + name: rhacs-4.7 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.3.0 + replaces: rhacs-operator.v4.2.5 + skipRange: ">= 4.2.0 < 4.3.0" + - name: rhacs-operator.v4.3.1 + replaces: rhacs-operator.v4.3.0 + skipRange: ">= 4.2.0 < 4.3.1" + - name: rhacs-operator.v4.3.2 + replaces: rhacs-operator.v4.3.1 + skipRange: ">= 4.2.0 < 4.3.2" + - name: rhacs-operator.v4.3.3 + replaces: rhacs-operator.v4.3.2 + skipRange: ">= 4.2.0 < 4.3.3" + - name: rhacs-operator.v4.3.4 + replaces: rhacs-operator.v4.3.3 + skipRange: ">= 4.2.0 < 4.3.4" + - name: rhacs-operator.v4.3.5 + replaces: rhacs-operator.v4.3.4 + skipRange: ">= 4.2.0 < 4.3.5" + - name: rhacs-operator.v4.3.6 + replaces: rhacs-operator.v4.3.5 + skipRange: ">= 4.2.0 < 4.3.6" + - name: rhacs-operator.v4.3.7 + replaces: rhacs-operator.v4.3.6 + skipRange: ">= 4.2.0 < 4.3.7" + - name: rhacs-operator.v4.3.8 + replaces: rhacs-operator.v4.3.7 + skipRange: ">= 4.2.0 < 4.3.8" + - name: rhacs-operator.v4.4.0 + replaces: rhacs-operator.v4.3.8 + skipRange: ">= 4.3.0 < 4.4.0" + - name: rhacs-operator.v4.4.1 + replaces: rhacs-operator.v4.4.0 + skipRange: ">= 4.3.0 < 4.4.1" + - name: rhacs-operator.v4.4.2 + replaces: rhacs-operator.v4.4.1 + skipRange: ">= 4.3.0 < 4.4.2" + - name: rhacs-operator.v4.4.3 + replaces: rhacs-operator.v4.4.2 + skipRange: ">= 4.3.0 < 4.4.3" + - name: rhacs-operator.v4.4.4 + replaces: rhacs-operator.v4.4.3 + skipRange: ">= 4.3.0 < 4.4.4" + - name: rhacs-operator.v4.4.5 + replaces: rhacs-operator.v4.4.4 + skipRange: ">= 4.3.0 < 4.4.5" + - name: rhacs-operator.v4.4.6 + replaces: rhacs-operator.v4.4.5 + skipRange: ">= 4.3.0 < 4.4.6" + - name: rhacs-operator.v4.4.7 + replaces: rhacs-operator.v4.4.6 + skipRange: ">= 4.3.0 < 4.4.7" + - name: rhacs-operator.v4.4.8 + replaces: rhacs-operator.v4.4.7 + skipRange: ">= 4.3.0 < 4.4.8" + - name: rhacs-operator.v4.5.0 + replaces: rhacs-operator.v4.4.8 + skipRange: ">= 4.4.0 < 4.5.0" + - name: rhacs-operator.v4.5.1 + replaces: rhacs-operator.v4.5.0 + skipRange: ">= 4.4.0 < 4.5.1" + - name: rhacs-operator.v4.5.2 + replaces: rhacs-operator.v4.5.1 + skipRange: ">= 4.4.0 < 4.5.2" + - name: rhacs-operator.v4.5.3 + replaces: rhacs-operator.v4.5.2 + skipRange: ">= 4.4.0 < 4.5.3" + - name: rhacs-operator.v4.5.4 + replaces: rhacs-operator.v4.5.3 + skipRange: ">= 4.4.0 < 4.5.4" + - name: rhacs-operator.v4.5.5 + replaces: rhacs-operator.v4.5.4 + skipRange: ">= 4.4.0 < 4.5.5" + - name: rhacs-operator.v4.5.6 + replaces: rhacs-operator.v4.5.5 + skipRange: ">= 4.4.0 < 4.5.6" + - name: rhacs-operator.v4.5.7 + replaces: rhacs-operator.v4.5.6 + skipRange: ">= 4.4.0 < 4.5.7" + - name: rhacs-operator.v4.5.8 + replaces: rhacs-operator.v4.5.7 + skipRange: ">= 4.4.0 < 4.5.8" + - name: rhacs-operator.v4.5.9 + replaces: rhacs-operator.v4.5.8 + skipRange: ">= 4.4.0 < 4.5.9" + - name: rhacs-operator.v4.6.0 + replaces: rhacs-operator.v4.5.9 + skipRange: ">= 4.5.0 < 4.6.0" + - name: rhacs-operator.v4.6.1 + replaces: rhacs-operator.v4.6.0 + skipRange: ">= 4.5.0 < 4.6.1" + - name: rhacs-operator.v4.6.2 + replaces: rhacs-operator.v4.6.1 + skipRange: ">= 4.5.0 < 4.6.2" + - name: rhacs-operator.v4.6.3 + replaces: rhacs-operator.v4.6.2 + skipRange: ">= 4.5.0 < 4.6.3" + - name: rhacs-operator.v4.6.4 + replaces: rhacs-operator.v4.6.3 + skipRange: ">= 4.5.0 < 4.6.4" + - name: rhacs-operator.v4.6.5 + replaces: rhacs-operator.v4.6.4 + skipRange: ">= 4.5.0 < 4.6.5" + - name: rhacs-operator.v4.6.6 + replaces: rhacs-operator.v4.6.5 + skipRange: ">= 4.5.0 < 4.6.6" + - name: rhacs-operator.v4.6.7 + replaces: rhacs-operator.v4.6.6 + skipRange: ">= 4.5.0 < 4.6.7" + - name: rhacs-operator.v4.6.8 + replaces: rhacs-operator.v4.6.7 + skipRange: ">= 4.5.0 < 4.6.8" + - name: rhacs-operator.v4.6.9 + replaces: rhacs-operator.v4.6.8 + skipRange: ">= 4.5.0 < 4.6.9" + - name: rhacs-operator.v4.7.0 + replaces: rhacs-operator.v4.6.9 + skipRange: ">= 4.6.0 < 4.7.0" + - name: rhacs-operator.v4.7.1 + replaces: rhacs-operator.v4.7.0 + skipRange: ">= 4.6.0 < 4.7.1" + - name: rhacs-operator.v4.7.2 + replaces: rhacs-operator.v4.7.1 + skipRange: ">= 4.6.0 < 4.7.2" + - name: rhacs-operator.v4.7.3 + replaces: rhacs-operator.v4.7.2 + skipRange: ">= 4.6.0 < 4.7.3" + - name: rhacs-operator.v4.7.4 + replaces: rhacs-operator.v4.7.3 + skipRange: ">= 4.6.0 < 4.7.4" + - name: rhacs-operator.v4.7.5 + replaces: rhacs-operator.v4.7.4 + skipRange: ">= 4.6.0 < 4.7.5" + - name: rhacs-operator.v4.7.6 + replaces: rhacs-operator.v4.7.5 + skipRange: ">= 4.6.0 < 4.7.6" +- schema: olm.channel + name: rhacs-4.8 + package: rhacs-operator + entries: + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 + replaces: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 + replaces: rhacs-operator.v4.0.1 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 + replaces: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 + replaces: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 + replaces: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 + replaces: rhacs-operator.v4.0.5 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 + replaces: rhacs-operator.v4.1.0 + skipRange: ">= 4.0.0 < 4.1.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + skips: + - rhacs-operator.v4.1.0 + - name: rhacs-operator.v4.3.0 + replaces: rhacs-operator.v4.2.5 + skipRange: ">= 4.2.0 < 4.3.0" + - name: rhacs-operator.v4.3.1 + replaces: rhacs-operator.v4.3.0 + skipRange: ">= 4.2.0 < 4.3.1" + - name: rhacs-operator.v4.3.2 + replaces: rhacs-operator.v4.3.1 + skipRange: ">= 4.2.0 < 4.3.2" + - name: rhacs-operator.v4.3.3 + replaces: rhacs-operator.v4.3.2 + skipRange: ">= 4.2.0 < 4.3.3" + - name: rhacs-operator.v4.3.4 + replaces: rhacs-operator.v4.3.3 + skipRange: ">= 4.2.0 < 4.3.4" + - name: rhacs-operator.v4.3.5 + replaces: rhacs-operator.v4.3.4 + skipRange: ">= 4.2.0 < 4.3.5" + - name: rhacs-operator.v4.3.6 + replaces: rhacs-operator.v4.3.5 + skipRange: ">= 4.2.0 < 4.3.6" + - name: rhacs-operator.v4.3.7 + replaces: rhacs-operator.v4.3.6 + skipRange: ">= 4.2.0 < 4.3.7" + - name: rhacs-operator.v4.3.8 + replaces: rhacs-operator.v4.3.7 + skipRange: ">= 4.2.0 < 4.3.8" + - name: rhacs-operator.v4.4.0 + replaces: rhacs-operator.v4.3.8 + skipRange: ">= 4.3.0 < 4.4.0" + - name: rhacs-operator.v4.4.1 + replaces: rhacs-operator.v4.4.0 + skipRange: ">= 4.3.0 < 4.4.1" + - name: rhacs-operator.v4.4.2 + replaces: rhacs-operator.v4.4.1 + skipRange: ">= 4.3.0 < 4.4.2" + - name: rhacs-operator.v4.4.3 + replaces: rhacs-operator.v4.4.2 + skipRange: ">= 4.3.0 < 4.4.3" + - name: rhacs-operator.v4.4.4 + replaces: rhacs-operator.v4.4.3 + skipRange: ">= 4.3.0 < 4.4.4" + - name: rhacs-operator.v4.4.5 + replaces: rhacs-operator.v4.4.4 + skipRange: ">= 4.3.0 < 4.4.5" + - name: rhacs-operator.v4.4.6 + replaces: rhacs-operator.v4.4.5 + skipRange: ">= 4.3.0 < 4.4.6" + - name: rhacs-operator.v4.4.7 + replaces: rhacs-operator.v4.4.6 + skipRange: ">= 4.3.0 < 4.4.7" + - name: rhacs-operator.v4.4.8 + replaces: rhacs-operator.v4.4.7 + skipRange: ">= 4.3.0 < 4.4.8" + - name: rhacs-operator.v4.5.0 + replaces: rhacs-operator.v4.4.8 + skipRange: ">= 4.4.0 < 4.5.0" + - name: rhacs-operator.v4.5.1 + replaces: rhacs-operator.v4.5.0 + skipRange: ">= 4.4.0 < 4.5.1" + - name: rhacs-operator.v4.5.2 + replaces: rhacs-operator.v4.5.1 + skipRange: ">= 4.4.0 < 4.5.2" + - name: rhacs-operator.v4.5.3 + replaces: rhacs-operator.v4.5.2 + skipRange: ">= 4.4.0 < 4.5.3" + - name: rhacs-operator.v4.5.4 + replaces: rhacs-operator.v4.5.3 + skipRange: ">= 4.4.0 < 4.5.4" + - name: rhacs-operator.v4.5.5 + replaces: rhacs-operator.v4.5.4 + skipRange: ">= 4.4.0 < 4.5.5" + - name: rhacs-operator.v4.5.6 + replaces: rhacs-operator.v4.5.5 + skipRange: ">= 4.4.0 < 4.5.6" + - name: rhacs-operator.v4.5.7 + replaces: rhacs-operator.v4.5.6 + skipRange: ">= 4.4.0 < 4.5.7" + - name: rhacs-operator.v4.5.8 + replaces: rhacs-operator.v4.5.7 + skipRange: ">= 4.4.0 < 4.5.8" + - name: rhacs-operator.v4.5.9 + replaces: rhacs-operator.v4.5.8 + skipRange: ">= 4.4.0 < 4.5.9" + - name: rhacs-operator.v4.6.0 + replaces: rhacs-operator.v4.5.9 + skipRange: ">= 4.5.0 < 4.6.0" + - name: rhacs-operator.v4.6.1 + replaces: rhacs-operator.v4.6.0 + skipRange: ">= 4.5.0 < 4.6.1" + - name: rhacs-operator.v4.6.2 + replaces: rhacs-operator.v4.6.1 + skipRange: ">= 4.5.0 < 4.6.2" + - name: rhacs-operator.v4.6.3 + replaces: rhacs-operator.v4.6.2 + skipRange: ">= 4.5.0 < 4.6.3" + - name: rhacs-operator.v4.6.4 + replaces: rhacs-operator.v4.6.3 + skipRange: ">= 4.5.0 < 4.6.4" + - name: rhacs-operator.v4.6.5 + replaces: rhacs-operator.v4.6.4 + skipRange: ">= 4.5.0 < 4.6.5" + - name: rhacs-operator.v4.6.6 + replaces: rhacs-operator.v4.6.5 + skipRange: ">= 4.5.0 < 4.6.6" + - name: rhacs-operator.v4.6.7 + replaces: rhacs-operator.v4.6.6 + skipRange: ">= 4.5.0 < 4.6.7" + - name: rhacs-operator.v4.6.8 + replaces: rhacs-operator.v4.6.7 + skipRange: ">= 4.5.0 < 4.6.8" + - name: rhacs-operator.v4.6.9 + replaces: rhacs-operator.v4.6.8 + skipRange: ">= 4.5.0 < 4.6.9" + - name: rhacs-operator.v4.7.0 + replaces: rhacs-operator.v4.6.9 + skipRange: ">= 4.6.0 < 4.7.0" + - name: rhacs-operator.v4.7.1 + replaces: rhacs-operator.v4.7.0 + skipRange: ">= 4.6.0 < 4.7.1" + - name: rhacs-operator.v4.7.2 + replaces: rhacs-operator.v4.7.1 + skipRange: ">= 4.6.0 < 4.7.2" + - name: rhacs-operator.v4.7.3 + replaces: rhacs-operator.v4.7.2 + skipRange: ">= 4.6.0 < 4.7.3" + - name: rhacs-operator.v4.7.4 + replaces: rhacs-operator.v4.7.3 + skipRange: ">= 4.6.0 < 4.7.4" + - name: rhacs-operator.v4.7.5 + replaces: rhacs-operator.v4.7.4 + skipRange: ">= 4.6.0 < 4.7.5" + - name: rhacs-operator.v4.7.6 + replaces: rhacs-operator.v4.7.5 + skipRange: ">= 4.6.0 < 4.7.6" + - name: rhacs-operator.v4.8.0 + replaces: rhacs-operator.v4.7.6 + skipRange: ">= 4.7.0 < 4.8.0" + - name: rhacs-operator.v4.8.1 + replaces: rhacs-operator.v4.8.0 + skipRange: ">= 4.7.0 < 4.8.1" + - name: rhacs-operator.v4.8.2 + replaces: rhacs-operator.v4.8.1 + skipRange: ">= 4.7.0 < 4.8.2" + - name: rhacs-operator.v4.8.3 + replaces: rhacs-operator.v4.8.2 + skipRange: ">= 4.7.0 < 4.8.3" + - name: rhacs-operator.v4.8.4 + replaces: rhacs-operator.v4.8.3 + skipRange: ">= 4.7.0 < 4.8.4" - schema: olm.channel name: stable package: rhacs-operator entries: - - &bundle-4-0-0 - name: rhacs-operator.v4.0.0 - skipRange: '>= 3.74.0 < 4.0.0' - - &bundle-4-0-1 - name: rhacs-operator.v4.0.1 + - name: rhacs-operator.v4.0.0 + skipRange: ">= 3.74.0 < 4.0.0" + - name: rhacs-operator.v4.0.1 replaces: rhacs-operator.v4.0.0 - skipRange: '>= 3.74.0 < 4.0.1' - - &bundle-4-0-2 - name: rhacs-operator.v4.0.2 + skipRange: ">= 3.74.0 < 4.0.1" + - name: rhacs-operator.v4.0.2 replaces: rhacs-operator.v4.0.1 - skipRange: '>= 3.74.0 < 4.0.2' - - &bundle-4-0-3 - name: rhacs-operator.v4.0.3 + skipRange: ">= 3.74.0 < 4.0.2" + - name: rhacs-operator.v4.0.3 replaces: rhacs-operator.v4.0.2 - skipRange: '>= 3.74.0 < 4.0.3' - - &bundle-4-0-4 - name: rhacs-operator.v4.0.4 + skipRange: ">= 3.74.0 < 4.0.3" + - name: rhacs-operator.v4.0.4 replaces: rhacs-operator.v4.0.3 - skipRange: '>= 3.74.0 < 4.0.4' - - &bundle-4-0-5 - name: rhacs-operator.v4.0.5 + skipRange: ">= 3.74.0 < 4.0.4" + - name: rhacs-operator.v4.0.5 replaces: rhacs-operator.v4.0.4 - skipRange: '>= 3.74.0 < 4.0.5' - - - &bundle-4-1-0 - name: rhacs-operator.v4.1.0 + skipRange: ">= 3.74.0 < 4.0.5" + - name: rhacs-operator.v4.1.0 replaces: rhacs-operator.v4.0.5 - skipRange: '>= 4.0.0 < 4.1.0' - - &bundle-4-1-1 - name: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.0" + - name: rhacs-operator.v4.1.1 replaces: rhacs-operator.v4.1.0 - skipRange: '>= 4.0.0 < 4.1.1' + skipRange: ">= 4.0.0 < 4.1.1" skips: - rhacs-operator.v4.1.0 - - &bundle-4-1-2 - name: rhacs-operator.v4.1.2 + - name: rhacs-operator.v4.1.2 replaces: rhacs-operator.v4.1.1 - skipRange: '>= 4.0.0 < 4.1.2' + skipRange: ">= 4.0.0 < 4.1.2" skips: - rhacs-operator.v4.1.0 - - &bundle-4-1-3 - name: rhacs-operator.v4.1.3 + - name: rhacs-operator.v4.1.3 replaces: rhacs-operator.v4.1.2 - skipRange: '>= 4.0.0 < 4.1.3' + skipRange: ">= 4.0.0 < 4.1.3" skips: - rhacs-operator.v4.1.0 - - &bundle-4-1-4 - name: rhacs-operator.v4.1.4 + - name: rhacs-operator.v4.1.4 replaces: rhacs-operator.v4.1.3 - skipRange: '>= 4.0.0 < 4.1.4' + skipRange: ">= 4.0.0 < 4.1.4" skips: - rhacs-operator.v4.1.0 - - &bundle-4-1-5 - name: rhacs-operator.v4.1.5 + - name: rhacs-operator.v4.1.5 replaces: rhacs-operator.v4.1.4 - skipRange: '>= 4.0.0 < 4.1.5' + skipRange: ">= 4.0.0 < 4.1.5" skips: - rhacs-operator.v4.1.0 - - &bundle-4-1-6 - name: rhacs-operator.v4.1.6 + - name: rhacs-operator.v4.1.6 replaces: rhacs-operator.v4.1.5 - skipRange: '>= 4.0.0 < 4.1.6' + skipRange: ">= 4.0.0 < 4.1.6" skips: - rhacs-operator.v4.1.0 - - - &bundle-4-2-0 - name: rhacs-operator.v4.2.0 + - name: rhacs-operator.v4.2.0 replaces: rhacs-operator.v4.1.6 - skipRange: '>= 4.1.0 < 4.2.0' + skipRange: ">= 4.1.0 < 4.2.0" skips: - rhacs-operator.v4.1.0 - - &bundle-4-2-1 - name: rhacs-operator.v4.2.1 + - name: rhacs-operator.v4.2.1 replaces: rhacs-operator.v4.2.0 - skipRange: '>= 4.1.0 < 4.2.1' + skipRange: ">= 4.1.0 < 4.2.1" skips: - rhacs-operator.v4.1.0 - - &bundle-4-2-2 - name: rhacs-operator.v4.2.2 + - name: rhacs-operator.v4.2.2 replaces: rhacs-operator.v4.2.1 - skipRange: '>= 4.1.0 < 4.2.2' + skipRange: ">= 4.1.0 < 4.2.2" skips: - rhacs-operator.v4.1.0 - - &bundle-4-2-3 - name: rhacs-operator.v4.2.3 + - name: rhacs-operator.v4.2.3 replaces: rhacs-operator.v4.2.2 - skipRange: '>= 4.1.0 < 4.2.3' + skipRange: ">= 4.1.0 < 4.2.3" skips: - rhacs-operator.v4.1.0 - - &bundle-4-2-4 - name: rhacs-operator.v4.2.4 + - name: rhacs-operator.v4.2.4 replaces: rhacs-operator.v4.2.3 - skipRange: '>= 4.1.0 < 4.2.4' + skipRange: ">= 4.1.0 < 4.2.4" skips: - rhacs-operator.v4.1.0 - - &bundle-4-2-5 - name: rhacs-operator.v4.2.5 + - name: rhacs-operator.v4.2.5 replaces: rhacs-operator.v4.2.4 - skipRange: '>= 4.1.0 < 4.2.5' + skipRange: ">= 4.1.0 < 4.2.5" skips: - rhacs-operator.v4.1.0 - - - &bundle-4-3-0 - name: rhacs-operator.v4.3.0 + - name: rhacs-operator.v4.3.0 replaces: rhacs-operator.v4.2.5 - skipRange: '>= 4.2.0 < 4.3.0' - - &bundle-4-3-1 - name: rhacs-operator.v4.3.1 + skipRange: ">= 4.2.0 < 4.3.0" + - name: rhacs-operator.v4.3.1 replaces: rhacs-operator.v4.3.0 - skipRange: '>= 4.2.0 < 4.3.1' - - &bundle-4-3-2 - name: rhacs-operator.v4.3.2 + skipRange: ">= 4.2.0 < 4.3.1" + - name: rhacs-operator.v4.3.2 replaces: rhacs-operator.v4.3.1 - skipRange: '>= 4.2.0 < 4.3.2' - - &bundle-4-3-3 - name: rhacs-operator.v4.3.3 + skipRange: ">= 4.2.0 < 4.3.2" + - name: rhacs-operator.v4.3.3 replaces: rhacs-operator.v4.3.2 - skipRange: '>= 4.2.0 < 4.3.3' - - &bundle-4-3-4 - name: rhacs-operator.v4.3.4 + skipRange: ">= 4.2.0 < 4.3.3" + - name: rhacs-operator.v4.3.4 replaces: rhacs-operator.v4.3.3 - skipRange: '>= 4.2.0 < 4.3.4' - - &bundle-4-3-5 - name: rhacs-operator.v4.3.5 + skipRange: ">= 4.2.0 < 4.3.4" + - name: rhacs-operator.v4.3.5 replaces: rhacs-operator.v4.3.4 - skipRange: '>= 4.2.0 < 4.3.5' - - &bundle-4-3-6 - name: rhacs-operator.v4.3.6 + skipRange: ">= 4.2.0 < 4.3.5" + - name: rhacs-operator.v4.3.6 replaces: rhacs-operator.v4.3.5 - skipRange: '>= 4.2.0 < 4.3.6' - - &bundle-4-3-7 - name: rhacs-operator.v4.3.7 + skipRange: ">= 4.2.0 < 4.3.6" + - name: rhacs-operator.v4.3.7 replaces: rhacs-operator.v4.3.6 - skipRange: '>= 4.2.0 < 4.3.7' - - &bundle-4-3-8 - name: rhacs-operator.v4.3.8 + skipRange: ">= 4.2.0 < 4.3.7" + - name: rhacs-operator.v4.3.8 replaces: rhacs-operator.v4.3.7 - skipRange: '>= 4.2.0 < 4.3.8' - - - &bundle-4-4-0 - name: rhacs-operator.v4.4.0 + skipRange: ">= 4.2.0 < 4.3.8" + - name: rhacs-operator.v4.4.0 replaces: rhacs-operator.v4.3.8 - skipRange: '>= 4.3.0 < 4.4.0' - - &bundle-4-4-1 - name: rhacs-operator.v4.4.1 + skipRange: ">= 4.3.0 < 4.4.0" + - name: rhacs-operator.v4.4.1 replaces: rhacs-operator.v4.4.0 - skipRange: '>= 4.3.0 < 4.4.1' - - &bundle-4-4-2 - name: rhacs-operator.v4.4.2 + skipRange: ">= 4.3.0 < 4.4.1" + - name: rhacs-operator.v4.4.2 replaces: rhacs-operator.v4.4.1 - skipRange: '>= 4.3.0 < 4.4.2' - - &bundle-4-4-3 - name: rhacs-operator.v4.4.3 + skipRange: ">= 4.3.0 < 4.4.2" + - name: rhacs-operator.v4.4.3 replaces: rhacs-operator.v4.4.2 - skipRange: '>= 4.3.0 < 4.4.3' - - &bundle-4-4-4 - name: rhacs-operator.v4.4.4 + skipRange: ">= 4.3.0 < 4.4.3" + - name: rhacs-operator.v4.4.4 replaces: rhacs-operator.v4.4.3 - skipRange: '>= 4.3.0 < 4.4.4' - - &bundle-4-4-5 - name: rhacs-operator.v4.4.5 + skipRange: ">= 4.3.0 < 4.4.4" + - name: rhacs-operator.v4.4.5 replaces: rhacs-operator.v4.4.4 - skipRange: '>= 4.3.0 < 4.4.5' - - &bundle-4-4-6 - name: rhacs-operator.v4.4.6 + skipRange: ">= 4.3.0 < 4.4.5" + - name: rhacs-operator.v4.4.6 replaces: rhacs-operator.v4.4.5 - skipRange: '>= 4.3.0 < 4.4.6' - - &bundle-4-4-7 - name: rhacs-operator.v4.4.7 + skipRange: ">= 4.3.0 < 4.4.6" + - name: rhacs-operator.v4.4.7 replaces: rhacs-operator.v4.4.6 - skipRange: '>= 4.3.0 < 4.4.7' - - &bundle-4-4-8 - name: rhacs-operator.v4.4.8 + skipRange: ">= 4.3.0 < 4.4.7" + - name: rhacs-operator.v4.4.8 replaces: rhacs-operator.v4.4.7 - skipRange: '>= 4.3.0 < 4.4.8' - - - &bundle-4-5-0 - name: rhacs-operator.v4.5.0 + skipRange: ">= 4.3.0 < 4.4.8" + - name: rhacs-operator.v4.5.0 replaces: rhacs-operator.v4.4.8 - skipRange: '>= 4.4.0 < 4.5.0' - - &bundle-4-5-1 - name: rhacs-operator.v4.5.1 + skipRange: ">= 4.4.0 < 4.5.0" + - name: rhacs-operator.v4.5.1 replaces: rhacs-operator.v4.5.0 - skipRange: '>= 4.4.0 < 4.5.1' - - &bundle-4-5-2 - name: rhacs-operator.v4.5.2 + skipRange: ">= 4.4.0 < 4.5.1" + - name: rhacs-operator.v4.5.2 replaces: rhacs-operator.v4.5.1 - skipRange: '>= 4.4.0 < 4.5.2' - - &bundle-4-5-3 - name: rhacs-operator.v4.5.3 + skipRange: ">= 4.4.0 < 4.5.2" + - name: rhacs-operator.v4.5.3 replaces: rhacs-operator.v4.5.2 - skipRange: '>= 4.4.0 < 4.5.3' - - &bundle-4-5-4 - name: rhacs-operator.v4.5.4 + skipRange: ">= 4.4.0 < 4.5.3" + - name: rhacs-operator.v4.5.4 replaces: rhacs-operator.v4.5.3 - skipRange: '>= 4.4.0 < 4.5.4' - - &bundle-4-5-5 - name: rhacs-operator.v4.5.5 + skipRange: ">= 4.4.0 < 4.5.4" + - name: rhacs-operator.v4.5.5 replaces: rhacs-operator.v4.5.4 - skipRange: '>= 4.4.0 < 4.5.5' - - &bundle-4-5-6 - name: rhacs-operator.v4.5.6 + skipRange: ">= 4.4.0 < 4.5.5" + - name: rhacs-operator.v4.5.6 replaces: rhacs-operator.v4.5.5 - skipRange: '>= 4.4.0 < 4.5.6' - - &bundle-4-5-7 - name: rhacs-operator.v4.5.7 + skipRange: ">= 4.4.0 < 4.5.6" + - name: rhacs-operator.v4.5.7 replaces: rhacs-operator.v4.5.6 - skipRange: '>= 4.4.0 < 4.5.7' - - &bundle-4-5-8 - name: rhacs-operator.v4.5.8 + skipRange: ">= 4.4.0 < 4.5.7" + - name: rhacs-operator.v4.5.8 replaces: rhacs-operator.v4.5.7 - skipRange: '>= 4.4.0 < 4.5.8' - - &bundle-4-5-9 - name: rhacs-operator.v4.5.9 + skipRange: ">= 4.4.0 < 4.5.8" + - name: rhacs-operator.v4.5.9 replaces: rhacs-operator.v4.5.8 - skipRange: '>= 4.4.0 < 4.5.9' - - - &bundle-4-6-0 - name: rhacs-operator.v4.6.0 + skipRange: ">= 4.4.0 < 4.5.9" + - name: rhacs-operator.v4.6.0 replaces: rhacs-operator.v4.5.9 - skipRange: '>= 4.5.0 < 4.6.0' - - &bundle-4-6-1 - name: rhacs-operator.v4.6.1 + skipRange: ">= 4.5.0 < 4.6.0" + - name: rhacs-operator.v4.6.1 replaces: rhacs-operator.v4.6.0 - skipRange: '>= 4.5.0 < 4.6.1' - - &bundle-4-6-2 - name: rhacs-operator.v4.6.2 + skipRange: ">= 4.5.0 < 4.6.1" + - name: rhacs-operator.v4.6.2 replaces: rhacs-operator.v4.6.1 - skipRange: '>= 4.5.0 < 4.6.2' - - &bundle-4-6-3 - name: rhacs-operator.v4.6.3 + skipRange: ">= 4.5.0 < 4.6.2" + - name: rhacs-operator.v4.6.3 replaces: rhacs-operator.v4.6.2 - skipRange: '>= 4.5.0 < 4.6.3' - - &bundle-4-6-4 - name: rhacs-operator.v4.6.4 + skipRange: ">= 4.5.0 < 4.6.3" + - name: rhacs-operator.v4.6.4 replaces: rhacs-operator.v4.6.3 - skipRange: '>= 4.5.0 < 4.6.4' - - &bundle-4-6-5 - name: rhacs-operator.v4.6.5 + skipRange: ">= 4.5.0 < 4.6.4" + - name: rhacs-operator.v4.6.5 replaces: rhacs-operator.v4.6.4 - skipRange: '>= 4.5.0 < 4.6.5' - - &bundle-4-6-6 - name: rhacs-operator.v4.6.6 + skipRange: ">= 4.5.0 < 4.6.5" + - name: rhacs-operator.v4.6.6 replaces: rhacs-operator.v4.6.5 - skipRange: '>= 4.5.0 < 4.6.6' - - &bundle-4-6-7 - name: rhacs-operator.v4.6.7 + skipRange: ">= 4.5.0 < 4.6.6" + - name: rhacs-operator.v4.6.7 replaces: rhacs-operator.v4.6.6 - skipRange: '>= 4.5.0 < 4.6.7' - - &bundle-4-6-8 - name: rhacs-operator.v4.6.8 + skipRange: ">= 4.5.0 < 4.6.7" + - name: rhacs-operator.v4.6.8 replaces: rhacs-operator.v4.6.7 - skipRange: '>= 4.5.0 < 4.6.8' - - &bundle-4-6-9 - name: rhacs-operator.v4.6.9 + skipRange: ">= 4.5.0 < 4.6.8" + - name: rhacs-operator.v4.6.9 replaces: rhacs-operator.v4.6.8 - skipRange: '>= 4.5.0 < 4.6.9' - - - &bundle-4-7-0 - name: rhacs-operator.v4.7.0 + skipRange: ">= 4.5.0 < 4.6.9" + - name: rhacs-operator.v4.7.0 replaces: rhacs-operator.v4.6.9 - skipRange: '>= 4.6.0 < 4.7.0' - - &bundle-4-7-1 - name: rhacs-operator.v4.7.1 + skipRange: ">= 4.6.0 < 4.7.0" + - name: rhacs-operator.v4.7.1 replaces: rhacs-operator.v4.7.0 - skipRange: '>= 4.6.0 < 4.7.1' - - &bundle-4-7-2 - name: rhacs-operator.v4.7.2 + skipRange: ">= 4.6.0 < 4.7.1" + - name: rhacs-operator.v4.7.2 replaces: rhacs-operator.v4.7.1 - skipRange: '>= 4.6.0 < 4.7.2' - - &bundle-4-7-3 - name: rhacs-operator.v4.7.3 + skipRange: ">= 4.6.0 < 4.7.2" + - name: rhacs-operator.v4.7.3 replaces: rhacs-operator.v4.7.2 - skipRange: '>= 4.6.0 < 4.7.3' - - &bundle-4-7-4 - name: rhacs-operator.v4.7.4 + skipRange: ">= 4.6.0 < 4.7.3" + - name: rhacs-operator.v4.7.4 replaces: rhacs-operator.v4.7.3 - skipRange: '>= 4.6.0 < 4.7.4' - - &bundle-4-7-5 - name: rhacs-operator.v4.7.5 + skipRange: ">= 4.6.0 < 4.7.4" + - name: rhacs-operator.v4.7.5 replaces: rhacs-operator.v4.7.4 - skipRange: '>= 4.6.0 < 4.7.5' - - &bundle-4-7-6 - name: rhacs-operator.v4.7.6 + skipRange: ">= 4.6.0 < 4.7.5" + - name: rhacs-operator.v4.7.6 replaces: rhacs-operator.v4.7.5 - skipRange: '>= 4.6.0 < 4.7.6' - - - &bundle-4-8-0 - name: rhacs-operator.v4.8.0 + skipRange: ">= 4.6.0 < 4.7.6" + - name: rhacs-operator.v4.8.0 replaces: rhacs-operator.v4.7.6 - skipRange: '>= 4.7.0 < 4.8.0' - - &bundle-4-8-1 - name: rhacs-operator.v4.8.1 + skipRange: ">= 4.7.0 < 4.8.0" + - name: rhacs-operator.v4.8.1 replaces: rhacs-operator.v4.8.0 - skipRange: '>= 4.7.0 < 4.8.1' - - &bundle-4-8-2 - name: rhacs-operator.v4.8.2 + skipRange: ">= 4.7.0 < 4.8.1" + - name: rhacs-operator.v4.8.2 replaces: rhacs-operator.v4.8.1 - skipRange: '>= 4.7.0 < 4.8.2' - - &bundle-4-8-3 - name: rhacs-operator.v4.8.3 + skipRange: ">= 4.7.0 < 4.8.2" + - name: rhacs-operator.v4.8.3 replaces: rhacs-operator.v4.8.2 - skipRange: '>= 4.7.0 < 4.8.3' - - &bundle-4-8-4 - name: rhacs-operator.v4.8.4 + skipRange: ">= 4.7.0 < 4.8.3" + - name: rhacs-operator.v4.8.4 replaces: rhacs-operator.v4.8.3 - skipRange: '>= 4.7.0 < 4.8.4' - -- schema: olm.channel - name: rhacs-4.0 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - -- schema: olm.channel - name: rhacs-4.1 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - -- schema: olm.channel - name: rhacs-4.2 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - - - *bundle-4-2-0 - - *bundle-4-2-1 - - *bundle-4-2-2 - - *bundle-4-2-3 - - *bundle-4-2-4 - - *bundle-4-2-5 - -- schema: olm.channel - name: rhacs-4.3 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - - - *bundle-4-2-0 - - *bundle-4-2-1 - - *bundle-4-2-2 - - *bundle-4-2-3 - - *bundle-4-2-4 - - *bundle-4-2-5 - - - *bundle-4-3-0 - - *bundle-4-3-1 - - *bundle-4-3-2 - - *bundle-4-3-3 - - *bundle-4-3-4 - - *bundle-4-3-5 - - *bundle-4-3-6 - - *bundle-4-3-7 - - *bundle-4-3-8 - -- schema: olm.channel - name: rhacs-4.4 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - - - *bundle-4-2-0 - - *bundle-4-2-1 - - *bundle-4-2-2 - - *bundle-4-2-3 - - *bundle-4-2-4 - - *bundle-4-2-5 - - - *bundle-4-3-0 - - *bundle-4-3-1 - - *bundle-4-3-2 - - *bundle-4-3-3 - - *bundle-4-3-4 - - *bundle-4-3-5 - - *bundle-4-3-6 - - *bundle-4-3-7 - - *bundle-4-3-8 - - - *bundle-4-4-0 - - *bundle-4-4-1 - - *bundle-4-4-2 - - *bundle-4-4-3 - - *bundle-4-4-4 - - *bundle-4-4-5 - - *bundle-4-4-6 - - *bundle-4-4-7 - - *bundle-4-4-8 - -- schema: olm.channel - name: rhacs-4.5 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - - - *bundle-4-2-0 - - *bundle-4-2-1 - - *bundle-4-2-2 - - *bundle-4-2-3 - - *bundle-4-2-4 - - *bundle-4-2-5 - - - *bundle-4-3-0 - - *bundle-4-3-1 - - *bundle-4-3-2 - - *bundle-4-3-3 - - *bundle-4-3-4 - - *bundle-4-3-5 - - *bundle-4-3-6 - - *bundle-4-3-7 - - *bundle-4-3-8 - - - *bundle-4-4-0 - - *bundle-4-4-1 - - *bundle-4-4-2 - - *bundle-4-4-3 - - *bundle-4-4-4 - - *bundle-4-4-5 - - *bundle-4-4-6 - - *bundle-4-4-7 - - *bundle-4-4-8 - - - *bundle-4-5-0 - - *bundle-4-5-1 - - *bundle-4-5-2 - - *bundle-4-5-3 - - *bundle-4-5-4 - - *bundle-4-5-5 - - *bundle-4-5-6 - - *bundle-4-5-7 - - *bundle-4-5-8 - - *bundle-4-5-9 - -- schema: olm.channel - name: rhacs-4.6 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - - - *bundle-4-2-0 - - *bundle-4-2-1 - - *bundle-4-2-2 - - *bundle-4-2-3 - - *bundle-4-2-4 - - *bundle-4-2-5 - - - *bundle-4-3-0 - - *bundle-4-3-1 - - *bundle-4-3-2 - - *bundle-4-3-3 - - *bundle-4-3-4 - - *bundle-4-3-5 - - *bundle-4-3-6 - - *bundle-4-3-7 - - *bundle-4-3-8 - - - *bundle-4-4-0 - - *bundle-4-4-1 - - *bundle-4-4-2 - - *bundle-4-4-3 - - *bundle-4-4-4 - - *bundle-4-4-5 - - *bundle-4-4-6 - - *bundle-4-4-7 - - *bundle-4-4-8 - - - *bundle-4-5-0 - - *bundle-4-5-1 - - *bundle-4-5-2 - - *bundle-4-5-3 - - *bundle-4-5-4 - - *bundle-4-5-5 - - *bundle-4-5-6 - - *bundle-4-5-7 - - *bundle-4-5-8 - - *bundle-4-5-9 - - - *bundle-4-6-0 - - *bundle-4-6-1 - - *bundle-4-6-2 - - *bundle-4-6-3 - - *bundle-4-6-4 - - *bundle-4-6-5 - - *bundle-4-6-6 - - *bundle-4-6-7 - - *bundle-4-6-8 - - *bundle-4-6-9 - -- schema: olm.channel - name: rhacs-4.7 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - - - *bundle-4-2-0 - - *bundle-4-2-1 - - *bundle-4-2-2 - - *bundle-4-2-3 - - *bundle-4-2-4 - - *bundle-4-2-5 - - - *bundle-4-3-0 - - *bundle-4-3-1 - - *bundle-4-3-2 - - *bundle-4-3-3 - - *bundle-4-3-4 - - *bundle-4-3-5 - - *bundle-4-3-6 - - *bundle-4-3-7 - - *bundle-4-3-8 - - - *bundle-4-4-0 - - *bundle-4-4-1 - - *bundle-4-4-2 - - *bundle-4-4-3 - - *bundle-4-4-4 - - *bundle-4-4-5 - - *bundle-4-4-6 - - *bundle-4-4-7 - - *bundle-4-4-8 - - - *bundle-4-5-0 - - *bundle-4-5-1 - - *bundle-4-5-2 - - *bundle-4-5-3 - - *bundle-4-5-4 - - *bundle-4-5-5 - - *bundle-4-5-6 - - *bundle-4-5-7 - - *bundle-4-5-8 - - *bundle-4-5-9 - - - *bundle-4-6-0 - - *bundle-4-6-1 - - *bundle-4-6-2 - - *bundle-4-6-3 - - *bundle-4-6-4 - - *bundle-4-6-5 - - *bundle-4-6-6 - - *bundle-4-6-7 - - *bundle-4-6-8 - - *bundle-4-6-9 - - - *bundle-4-7-0 - - *bundle-4-7-1 - - *bundle-4-7-2 - - *bundle-4-7-3 - - *bundle-4-7-4 - - *bundle-4-7-5 - - *bundle-4-7-6 - -- schema: olm.channel - name: rhacs-4.8 - package: rhacs-operator - entries: - - *bundle-4-0-0 - - *bundle-4-0-1 - - *bundle-4-0-2 - - *bundle-4-0-3 - - *bundle-4-0-4 - - *bundle-4-0-5 - - - *bundle-4-1-0 - - *bundle-4-1-1 - - *bundle-4-1-2 - - *bundle-4-1-3 - - *bundle-4-1-4 - - *bundle-4-1-5 - - *bundle-4-1-6 - - - *bundle-4-2-0 - - *bundle-4-2-1 - - *bundle-4-2-2 - - *bundle-4-2-3 - - *bundle-4-2-4 - - *bundle-4-2-5 - - - *bundle-4-3-0 - - *bundle-4-3-1 - - *bundle-4-3-2 - - *bundle-4-3-3 - - *bundle-4-3-4 - - *bundle-4-3-5 - - *bundle-4-3-6 - - *bundle-4-3-7 - - *bundle-4-3-8 - - - *bundle-4-4-0 - - *bundle-4-4-1 - - *bundle-4-4-2 - - *bundle-4-4-3 - - *bundle-4-4-4 - - *bundle-4-4-5 - - *bundle-4-4-6 - - *bundle-4-4-7 - - *bundle-4-4-8 - - - *bundle-4-5-0 - - *bundle-4-5-1 - - *bundle-4-5-2 - - *bundle-4-5-3 - - *bundle-4-5-4 - - *bundle-4-5-5 - - *bundle-4-5-6 - - *bundle-4-5-7 - - *bundle-4-5-8 - - *bundle-4-5-9 - - - *bundle-4-6-0 - - *bundle-4-6-1 - - *bundle-4-6-2 - - *bundle-4-6-3 - - *bundle-4-6-4 - - *bundle-4-6-5 - - *bundle-4-6-6 - - *bundle-4-6-7 - - *bundle-4-6-8 - - *bundle-4-6-9 - - - *bundle-4-7-0 - - *bundle-4-7-1 - - *bundle-4-7-2 - - *bundle-4-7-3 - - *bundle-4-7-4 - - *bundle-4-7-5 - - *bundle-4-7-6 - - - *bundle-4-8-0 - - *bundle-4-8-1 - - *bundle-4-8-2 - - *bundle-4-8-3 - - *bundle-4-8-4 - + skipRange: ">= 4.7.0 < 4.8.4" - schema: olm.deprecations package: rhacs-operator entries: - reference: schema: olm.channel name: latest - message: | - The `latest` channel is no longer supported. Please switch to the `stable` channel. + message: The `latest` channel is no longer supported. Use the `stable` channel. - reference: schema: olm.channel name: rhacs-3.62 - message: &deprecated-minor-channel | - This version is no longer supported. Please switch to the `stable` channel or a channel for a version that is still supported. + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.channel + name: rhacs-3.63 + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.64 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.65 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.66 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.67 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.68 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.69 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.70 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.71 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.72 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.73 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-3.74 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-4.0 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-4.1 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-4.2 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-4.3 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-4.4 - message: *deprecated-minor-channel + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" - reference: schema: olm.channel name: rhacs-4.5 - message: *deprecated-minor-channel - -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:2d9da26bac816af608979a034a8cdc24b51e04f0807e177fc114f55c0e633650 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7e7d2ee7951813e40decefd68e2a0a4dbcc32f81158de073340a2540f3e96441 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:845d5e954f6e876488bd0ba687ed5b0b4cac098907c2cdd3777ba8f32827d320 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:5187b04f8010a274d6bc017fc82f1b00d886124e520c1b7de8b4da8cd2f37bc0 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0baed09effdbfc973515d7bdce444dbf97a72c913a0ae1d7403106439b6cba62 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d3bf33899ca8b199ca8782978618ca343164e43fd0ae2ac6a0cfbf697efa6428 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3a70c9cd571ffaa93f51fae3973eb4c8749e17d909a2929e89aa62b1db4df646 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6536ee795e8aaeab9321ee4820e55933195983a768ba24fab40508d03e50a6e4 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9629a16f4009d48e580bc389d632a43c698ffd53c74364293fcf035a4c944382 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:2156aa8c7e0a7405b6cb640daa23f2142077516959921f249cd6e4b59557fb18 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ad88773ab141f45fe24c61e83ec736aab27f652fb82ca2a85fee6f885568c5b9 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1178a22943998e0a740d7f89d15244d4b1500376493fb84b652fe1ba998bf1d3 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:16fc17b7079ea1d1aefbba589ed638bc632612ce59dddd58e719aade0a64e1e9 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6a10a4859527946f61f497ff84b80f973cb7be5982d428423836b5aca81a1f5d - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:09dd8f0e7cead1064f5d33b4b9637ea4b49122e4e6fed3bf7c601390366e5e02 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6aefab47365d8640d95083211a7ace577b1df17d9bec021f18887a0efac0656d - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:297e7f863106c6b41f882bbd5b691a12c797c24d832473a04e604d4639e4a68e - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:105c401ebff454bda17a6c5385ded057f09443766d9f87eae7f11ee9a62a08c1 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9b35ae6df2c19935783735d213483f3fcecead2f49f873a4f7844ef9fb5c7f1a - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e84cda106657d350068a5632fba8c2d858a19de109da9795a1d0b77e26c3b338 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:39cbfcde349670101c5f33f86da4bdbd33ec363b5171022579fec4a71edbae55 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ee93d7f7d470c651b88b3797c53c827a17bf2bbaf0f43464e894ccbf6245928a - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e001b9f844a6c298dd74f1ab683f3dbbf0ad66044cec419c373ef4f97d47be73 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9ec13da5353f1031edc8b84ee17f00fd42c59253b2f402eec0dc5744fac1cbf5 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:5f91fe442301ba58e96260b133d347f48d7869ec4def8a395274af6291470609 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b3a541fa8146c211896590b75c2f8a7b861a8d48a741d84b8f2a2072f451d2da - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:94d3d8bb0eff0f91acc07c6114448ab24d8b93cd43dac2697f487a698752f2fa - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:878ed77d07d3f40f049a594af44376797305786a2a264dae3d0c50401643bfa5 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d496a827f223e5464a1b6c87168102df632643e1f8348a8abb1a5e9e226f00d2 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ddb656822614d0cdb62e3bf8eb13640e589225555c8a9a713005c9b824f5f4a1 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:cabaaad93f55dd91ae06719151623f02226472b4d14200abede1e62eff3270f7 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:234f5d3c6ca2e388fdeaf3b763cb9a156daaf4fae3b62378fe73d1b307dbcae6 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:f72523acacbf60c2b41cb3e28366094465cc38f93c125b77de0f616297468c9c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:459a8d91beff91638872d377a8b82c279ad2905ce3f4ad4bfc00f6822418ac57 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9dbdc706f35926bb913ff9951d2b14d4a7f1211bcbbd22740ad72b1d442523f8 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:33156ed6400fb97102b01d0e60a12e87adb495d27a131f0d1fd8544e43c73c30 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b6d9f60296184dcf109eef795870fd093c5a4a5954e254de435d93c744496c7f - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a5e10c6d4b24e0812de0934a44b74ed6dddba8c3c857ca32c6a818c238b9c82f - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:aca9396a41f339d8968dd4db09dde380d3a9c218dedeae9d99c33e28254224ce - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:052e6be8458b1e4a5b66323868fe58771cdee48ac416dc54b75418460ce23739 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b14d179437f394a09b59cee5eb72ec8b9da74c4b5eb9e44c5c5614b341e357a9 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9ba3858a639c3e8e50a2445e54eea49ad4555a02de8597708bb17128b1778780 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e714fea6deb82225c54de32cf7ff3e91e1966470c58d04a221c7d90a501fdb8a - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0e7e55c46aa3a9926b184d031ff0adf0e4d208819a98a78aede2a7152d52bc30 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:04ae0c9b37d47a85651f7bbfccb79cd9fd42876aa5c511933e9565efc5764b2e - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7e08088dc72f668b36f67b18c2ec2cbdb621d547f00699b3fb8d6de0ccbaec57 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:066aa4712f9a104e3bba2137e7cef432052d7f14a6bcd50b5f5d6a954b33ba84 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:512b52a8ec8f582e9e2d04d02aa9180d89b965d0efcacb5f9eb2f43aa5474f59 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a0d9cd31d953aaf7e84f5a39f405c5aa2ea62e68d6c728a936ca1ffc4dc1b93e - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:eebfa0e319e1d78c403da776182bb00bf0f7367f4454749d414ff5ad75c4469c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:397d7ab548e3d889c144fbc9b5360167938dace01d112cd8f9e7c655675c2f5d - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:fddeb8070857a592a19c49a52abed8329b3a23051411ab6eb5b18d5d985266e4 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:84c36595c82097fb75de135c97e8eb41930fb99b4e63a835ec6b6ae75fdea22d - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:aafaa944201871ec15cead3aa77bbdd1da76f972f3a241b894e2254a6ec09595 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b26133843687cc50e2c52d6067d8b3369b5cb28dfbfd15dd4b6062096673195a - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:de3b2e28150c6428864fe8dd7ef325b806bc9e9881d883ba3335e00b6593618c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ff1860a69cb72220a536e3d51510fe88169f75e73918a4935c99fd0704dbdd91 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:978d9f800d70144021cc5fd318def9f4d82ddbbbe520e432a9a9e0cf445bf854 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d12dd40975045afad1cd5575ced8ce5c443fd0f872bceca5a759233828a051e6 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:08aebe6e8275d3314b6756d522ec568ccdfb9c52df98c9822f187f6c5a3af19c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ff41517cf745183c940b587be2d25f606ef0d3a5048f9455188d518655dbd85c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:90bdfd8fba74a36a81c52c2fe7abbd79158d1482699bda52af7e2caf0803b3fc - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6604d204de27b02e379579d9182e68f4bd3150825462d471a0cf20963fe6fe2e - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:22a1e067ff9e0e0b5f2f819ffc863e7a877030b4c18fbab0abfa75af46307d15 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c87ee25e0a7d9b4359d38af6fcd6551b038728cf9c701dac3687cd441faa7810 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c1e7a5e80831c5f078e1aa26e57870aec1949c148f02c255e76a7a98c01099d7 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:355567de35493ef1122e8a60385828c98ba62272aaf60d4ab6336466418ec6c9 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1e8115bdc0ed2d01d7576524e9796606244963a1447eae55872674c0113fb9c4 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:30f9384244819da013358325cec364bb210b3b33b4cf9680698531fe50562aac - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:94fcee9ac22671bd18be77381214665d9289151703a9ed78c29cee02b92612f4 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7612cd4a854c01f27df8c36d74413bd52f85f5e7c73b6a7bd565e0d531a35862 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b800c559f4e93d6a8d7422128e26688b8872c589c92944cb46815ec2b7c68371 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:39e7f184f83bdf38407c7d6a783ac9490e81cb1a8ca1af15a6f419be993361f9 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9f84b5e8757bb2b1a7fb7b57cbf5c1e989cd3bbca33566eea94f07af23ae725f - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:176837c3041894c294b64da0181b8ad3bc53b3538d5ba70868979c57c7ec1644 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b481c31ea787bb4817304023ab223996b5deaf01f0c80557d652ca2e76a3dfc5 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0584255cd3289c421454544b7eaa7d13be85c0572ddba1731cb86137195232d6 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:123c0108bd7a190dd2accfd21786600f787147f040e57fb5f840861e2caa441d - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:afe3518921c5f14f11f7543f384c6cfc32eaae86d2a38bb6e36b783aeec53f79 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:25680f4d265895dac28686e234f026c10c015b3f94434e00f5c8b680e1c7e834 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8021e8768281376c5b64be666fef3e2a398928d35e2e4a9b64f22ab3ac6b168 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8bca9a8388de978872eb2834ea7563baacf3a851e1bbaf11acd507d5acce9999 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8cc0088423509c0fe8413cdf1b85f66269a6e62f3a59708a25fa91acac94a44c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b262749b36483ac23f7e9311a410b4e1bfb3455074e189d2cd4e88570c953803 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:56772b736bb1aec1b10d38d4c2b18bcde17b450b55f8c260ac38b23bd6c85b5c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:04b8413db1c7b315643c2c420e7d2b71d805956c93db779f363beef09339041f - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1e4c21f9a8098205cfd520627dcfdfca84c40c66e93698398a350647dc5fa1a1 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:41351e88688d23a443ad4f141caf0433b2c2789e6a1a85b4f5b36abeb5656bb1 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c803494bdb0418d27931a15c79f8cf142ae10ccd0a50d76a10c48219d34c59f4 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3df6a9cfda7b1e236bd152e4eb84bb4c39057fd82bb928e3d00307ed64052d6c - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:324eafac9e2a9000c6032f152867defb4f4402ae8772677d7a1b45eb6df1b9be - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:588e9a7db449055473470e0c2102ed551a6d67d26bb6c45415d297f87701c1e2 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:40422d266354c240237d66bb621660ed235af7c8620de8432912854cc11c084b - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:f61189397263f05214c2d36b4dc0a71a924c2481a1e365b7fb3c71d8dfce6b27 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b0590a2248d948f82e8a116e37a2be42f49a3edeb4a92d41416420ea604d5b34 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6937beffd348474d4d9b06f14fabfeb74efb69cf7bc60e6e12eb5b45b03014d5 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e23398e5f761b4a2fb94ec91b7f009e4e6abf09ec511dbf30468142e742d311d - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:567535d4a629980952e42537221a232e24399462c8ffda467c38195ea7afa3e2 - schema: olm.bundle -- image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b24edee77ea1320adb9c5ae3fd5ae538059e2b9475abf8f338ecce136c331e07 - schema: olm.bundle -- schema: olm.bundle - # 4.6.7 + message: "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.62.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.62.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.63.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.64.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.64.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.64.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.65.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.65.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.66.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.66.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.67.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.67.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.67.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.68.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.68.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.68.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.69.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.69.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.69.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.70.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.70.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.71.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.71.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.71.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.71.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.72.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.72.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.72.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.72.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.72.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.73.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.73.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.73.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.73.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.73.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.73.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.6 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.7 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.8 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v3.74.9 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.0.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.0.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.0.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.0.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.0.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.0.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.1.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.1.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.1.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.1.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.1.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.1.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.1.6 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.2.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.2.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.2.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.2.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.2.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.2.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.6 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.7 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.3.8 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.6 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.7 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.4.8 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.0 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.1 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.2 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.3 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.4 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.5 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.6 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.7 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.8 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.5.9 + message: "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:2d9da26bac816af608979a034a8cdc24b51e04f0807e177fc114f55c0e633650 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7e7d2ee7951813e40decefd68e2a0a4dbcc32f81158de073340a2540f3e96441 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:845d5e954f6e876488bd0ba687ed5b0b4cac098907c2cdd3777ba8f32827d320 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:5187b04f8010a274d6bc017fc82f1b00d886124e520c1b7de8b4da8cd2f37bc0 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0baed09effdbfc973515d7bdce444dbf97a72c913a0ae1d7403106439b6cba62 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d3bf33899ca8b199ca8782978618ca343164e43fd0ae2ac6a0cfbf697efa6428 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3a70c9cd571ffaa93f51fae3973eb4c8749e17d909a2929e89aa62b1db4df646 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6536ee795e8aaeab9321ee4820e55933195983a768ba24fab40508d03e50a6e4 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9629a16f4009d48e580bc389d632a43c698ffd53c74364293fcf035a4c944382 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:2156aa8c7e0a7405b6cb640daa23f2142077516959921f249cd6e4b59557fb18 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ad88773ab141f45fe24c61e83ec736aab27f652fb82ca2a85fee6f885568c5b9 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1178a22943998e0a740d7f89d15244d4b1500376493fb84b652fe1ba998bf1d3 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:16fc17b7079ea1d1aefbba589ed638bc632612ce59dddd58e719aade0a64e1e9 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6a10a4859527946f61f497ff84b80f973cb7be5982d428423836b5aca81a1f5d +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:09dd8f0e7cead1064f5d33b4b9637ea4b49122e4e6fed3bf7c601390366e5e02 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6aefab47365d8640d95083211a7ace577b1df17d9bec021f18887a0efac0656d +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:297e7f863106c6b41f882bbd5b691a12c797c24d832473a04e604d4639e4a68e +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:105c401ebff454bda17a6c5385ded057f09443766d9f87eae7f11ee9a62a08c1 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9b35ae6df2c19935783735d213483f3fcecead2f49f873a4f7844ef9fb5c7f1a +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e84cda106657d350068a5632fba8c2d858a19de109da9795a1d0b77e26c3b338 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:39cbfcde349670101c5f33f86da4bdbd33ec363b5171022579fec4a71edbae55 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ee93d7f7d470c651b88b3797c53c827a17bf2bbaf0f43464e894ccbf6245928a +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e001b9f844a6c298dd74f1ab683f3dbbf0ad66044cec419c373ef4f97d47be73 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9ec13da5353f1031edc8b84ee17f00fd42c59253b2f402eec0dc5744fac1cbf5 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:5f91fe442301ba58e96260b133d347f48d7869ec4def8a395274af6291470609 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b3a541fa8146c211896590b75c2f8a7b861a8d48a741d84b8f2a2072f451d2da +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:94d3d8bb0eff0f91acc07c6114448ab24d8b93cd43dac2697f487a698752f2fa +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:878ed77d07d3f40f049a594af44376797305786a2a264dae3d0c50401643bfa5 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d496a827f223e5464a1b6c87168102df632643e1f8348a8abb1a5e9e226f00d2 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ddb656822614d0cdb62e3bf8eb13640e589225555c8a9a713005c9b824f5f4a1 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:cabaaad93f55dd91ae06719151623f02226472b4d14200abede1e62eff3270f7 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:234f5d3c6ca2e388fdeaf3b763cb9a156daaf4fae3b62378fe73d1b307dbcae6 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:f72523acacbf60c2b41cb3e28366094465cc38f93c125b77de0f616297468c9c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:459a8d91beff91638872d377a8b82c279ad2905ce3f4ad4bfc00f6822418ac57 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9dbdc706f35926bb913ff9951d2b14d4a7f1211bcbbd22740ad72b1d442523f8 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:33156ed6400fb97102b01d0e60a12e87adb495d27a131f0d1fd8544e43c73c30 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b6d9f60296184dcf109eef795870fd093c5a4a5954e254de435d93c744496c7f +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a5e10c6d4b24e0812de0934a44b74ed6dddba8c3c857ca32c6a818c238b9c82f +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:aca9396a41f339d8968dd4db09dde380d3a9c218dedeae9d99c33e28254224ce +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:052e6be8458b1e4a5b66323868fe58771cdee48ac416dc54b75418460ce23739 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b14d179437f394a09b59cee5eb72ec8b9da74c4b5eb9e44c5c5614b341e357a9 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9ba3858a639c3e8e50a2445e54eea49ad4555a02de8597708bb17128b1778780 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e714fea6deb82225c54de32cf7ff3e91e1966470c58d04a221c7d90a501fdb8a +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0e7e55c46aa3a9926b184d031ff0adf0e4d208819a98a78aede2a7152d52bc30 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:04ae0c9b37d47a85651f7bbfccb79cd9fd42876aa5c511933e9565efc5764b2e +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7e08088dc72f668b36f67b18c2ec2cbdb621d547f00699b3fb8d6de0ccbaec57 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:066aa4712f9a104e3bba2137e7cef432052d7f14a6bcd50b5f5d6a954b33ba84 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:512b52a8ec8f582e9e2d04d02aa9180d89b965d0efcacb5f9eb2f43aa5474f59 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a0d9cd31d953aaf7e84f5a39f405c5aa2ea62e68d6c728a936ca1ffc4dc1b93e +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:eebfa0e319e1d78c403da776182bb00bf0f7367f4454749d414ff5ad75c4469c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:397d7ab548e3d889c144fbc9b5360167938dace01d112cd8f9e7c655675c2f5d +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:fddeb8070857a592a19c49a52abed8329b3a23051411ab6eb5b18d5d985266e4 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:84c36595c82097fb75de135c97e8eb41930fb99b4e63a835ec6b6ae75fdea22d +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:aafaa944201871ec15cead3aa77bbdd1da76f972f3a241b894e2254a6ec09595 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b26133843687cc50e2c52d6067d8b3369b5cb28dfbfd15dd4b6062096673195a +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:de3b2e28150c6428864fe8dd7ef325b806bc9e9881d883ba3335e00b6593618c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ff1860a69cb72220a536e3d51510fe88169f75e73918a4935c99fd0704dbdd91 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:978d9f800d70144021cc5fd318def9f4d82ddbbbe520e432a9a9e0cf445bf854 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d12dd40975045afad1cd5575ced8ce5c443fd0f872bceca5a759233828a051e6 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:08aebe6e8275d3314b6756d522ec568ccdfb9c52df98c9822f187f6c5a3af19c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:ff41517cf745183c940b587be2d25f606ef0d3a5048f9455188d518655dbd85c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:90bdfd8fba74a36a81c52c2fe7abbd79158d1482699bda52af7e2caf0803b3fc +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6604d204de27b02e379579d9182e68f4bd3150825462d471a0cf20963fe6fe2e +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:22a1e067ff9e0e0b5f2f819ffc863e7a877030b4c18fbab0abfa75af46307d15 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c87ee25e0a7d9b4359d38af6fcd6551b038728cf9c701dac3687cd441faa7810 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c1e7a5e80831c5f078e1aa26e57870aec1949c148f02c255e76a7a98c01099d7 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:355567de35493ef1122e8a60385828c98ba62272aaf60d4ab6336466418ec6c9 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1e8115bdc0ed2d01d7576524e9796606244963a1447eae55872674c0113fb9c4 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:30f9384244819da013358325cec364bb210b3b33b4cf9680698531fe50562aac +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:94fcee9ac22671bd18be77381214665d9289151703a9ed78c29cee02b92612f4 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:7612cd4a854c01f27df8c36d74413bd52f85f5e7c73b6a7bd565e0d531a35862 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b800c559f4e93d6a8d7422128e26688b8872c589c92944cb46815ec2b7c68371 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:39e7f184f83bdf38407c7d6a783ac9490e81cb1a8ca1af15a6f419be993361f9 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9f84b5e8757bb2b1a7fb7b57cbf5c1e989cd3bbca33566eea94f07af23ae725f +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:176837c3041894c294b64da0181b8ad3bc53b3538d5ba70868979c57c7ec1644 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b481c31ea787bb4817304023ab223996b5deaf01f0c80557d652ca2e76a3dfc5 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0584255cd3289c421454544b7eaa7d13be85c0572ddba1731cb86137195232d6 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:123c0108bd7a190dd2accfd21786600f787147f040e57fb5f840861e2caa441d +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:afe3518921c5f14f11f7543f384c6cfc32eaae86d2a38bb6e36b783aeec53f79 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:25680f4d265895dac28686e234f026c10c015b3f94434e00f5c8b680e1c7e834 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:d8021e8768281376c5b64be666fef3e2a398928d35e2e4a9b64f22ab3ac6b168 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8bca9a8388de978872eb2834ea7563baacf3a851e1bbaf11acd507d5acce9999 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8cc0088423509c0fe8413cdf1b85f66269a6e62f3a59708a25fa91acac94a44c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b262749b36483ac23f7e9311a410b4e1bfb3455074e189d2cd4e88570c953803 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:56772b736bb1aec1b10d38d4c2b18bcde17b450b55f8c260ac38b23bd6c85b5c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:04b8413db1c7b315643c2c420e7d2b71d805956c93db779f363beef09339041f +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:1e4c21f9a8098205cfd520627dcfdfca84c40c66e93698398a350647dc5fa1a1 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:41351e88688d23a443ad4f141caf0433b2c2789e6a1a85b4f5b36abeb5656bb1 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c803494bdb0418d27931a15c79f8cf142ae10ccd0a50d76a10c48219d34c59f4 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3df6a9cfda7b1e236bd152e4eb84bb4c39057fd82bb928e3d00307ed64052d6c +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:324eafac9e2a9000c6032f152867defb4f4402ae8772677d7a1b45eb6df1b9be +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:588e9a7db449055473470e0c2102ed551a6d67d26bb6c45415d297f87701c1e2 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:40422d266354c240237d66bb621660ed235af7c8620de8432912854cc11c084b +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:f61189397263f05214c2d36b4dc0a71a924c2481a1e365b7fb3c71d8dfce6b27 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b0590a2248d948f82e8a116e37a2be42f49a3edeb4a92d41416420ea604d5b34 +- schema: olm.bundle image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:a2e9af0568ae9b6401655f3662a7a914c34c29a5616d590da7ef19248e2d1068 - schema: olm.bundle - # 4.6.8 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:adb6c303305804dc46759f6561971c5bf484c76c773997237dae9b902d08d982 - schema: olm.bundle - # 4.6.9 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:eee21ee829be000db4a804aa7d0dded1a42767c37f56ac6ef4b4df6d9ab026f2 - schema: olm.bundle - # 4.7.4 + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6937beffd348474d4d9b06f14fabfeb74efb69cf7bc60e6e12eb5b45b03014d5 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:e23398e5f761b4a2fb94ec91b7f009e4e6abf09ec511dbf30468142e742d311d +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:567535d4a629980952e42537221a232e24399462c8ffda467c38195ea7afa3e2 +- schema: olm.bundle + image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:b24edee77ea1320adb9c5ae3fd5ae538059e2b9475abf8f338ecce136c331e07 +- schema: olm.bundle image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:8c3fd7e6809ecdbf54c4d29af25f8d9dca013fff31abefafba9908a86ef6c4d8 - schema: olm.bundle - # 4.7.5 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:208b2b32acdcd58ff3702421c2a303fb2f237f320ec53d5428d280a677211484 - schema: olm.bundle - # 4.7.6 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3b99056ad9f5f53c75eff0e70c07cf3892c3867fe36c59138468b645f24547f2 - schema: olm.bundle - # 4.8.0 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:59c16145f8691120ba7af1448ca7a3bd8c4e5a0cb912bcf7a6a10779dc2919be - schema: olm.bundle - # 4.8.1 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:272e3d6e2f7f207b3d3866d8be00715e6a6086d50b110c45662d99d217d48dbc - schema: olm.bundle - # 4.8.2 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:68633e6b12768689f352e1318dc0acc388522d8b6295bf6ca662834cf1367b85 - schema: olm.bundle - # 4.8.3 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:44823edf63a673d6df937271c2b504782752e832d31517076593e1706a6cf434 - schema: olm.bundle - # 4.8.4 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0c0a839b097ccbf758b084b85f8f9285a7e621fd44e8a62752be7b6bcae86669 diff --git a/cmd/generate-catalog/generate.go b/cmd/generate-catalog/generate.go new file mode 100644 index 00000000..163a2a53 --- /dev/null +++ b/cmd/generate-catalog/generate.go @@ -0,0 +1,343 @@ +package main + +import ( + "encoding/base64" + "fmt" + "log" + "os" + "slices" + + semver "github.com/Masterminds/semver/v3" + "github.com/goccy/go-yaml" + container "github.com/google/go-containerregistry/pkg/name" +) + +const ( + inputFile = "bundles.yaml" + outputFile = "catalog-template.yaml" + iconFile = "icon.png" + channelDeprecationMessage = "This version is no longer supported. Switch to the `stable` channel or a channel for a more recent version that is still supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + bundleDeprecationMessage = "This Operator version is no longer supported. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + versionBrokenMessage = "This product version has known significant defects and should not be used. Use a more recent version that is supported. Find supported versions in the RHACS support policy document: https://access.redhat.com/support/policy/updates/rhacs" + latestChannelDeprecationMessage = "The `latest` channel is no longer supported. Use the `stable` channel." + rhacsOperator = "rhacs-operator" + olmTemplateSchema = "olm.template.basic" + olmPackageSchema = "olm.package" + olmChannelSchema = "olm.channel" + olmDeprecationsSchema = "olm.deprecations" + olmBundleSchema = "olm.bundle" + latestChannelName = "latest" + stableChannelName = "stable" + first3MajorVersion = "3.62.0" + first4MajorVersion = "4.0.0" + brokenVersionSkippingOffset = 2 // The number of versions to skip in the `skips` field of the channel entry for broken versions. +) + +var headComment = []string{ + "--------------------------------------------------------------------------------", + " DO NOT EDIT. This file is generated by cmd/generate-catalog/generate.go script.", + " Any manual changes will be overwritten.", + "--------------------------------------------------------------------------------", +} + +func main() { + err := generateCatalogTemplateFile() + if err != nil { + log.Fatalf("Failed to generate catalog template: %v", err) + } +} + +// generateCatalogTemplateFile reads the bundles.yaml file, processes the data, and writes the catalog template to the output file. +func generateCatalogTemplateFile() error { + config, err := readInputFile(inputFile) + if err != nil { + return fmt.Errorf("failed to read bundle list file: %v", err) + } + + pkg, err := generatePackageWithIcon() + if err != nil { + return fmt.Errorf("failed to generate package object with icon: %v", err) + } + channels := generateChannels(config.Versions) + entries := generateChannelEntries(config.Versions, config.BrokenVersions) + populateChannelEntries(channels, entries) + + deprecations := generateDeprecations(config.Versions, channels, config.OldestSupportedVersion, config.BrokenVersions) + bundles := generateBundles(config.Images) + + ct := newCatalogTemplate() + ct.addPackage(pkg) + ct.addChannels(channels) + ct.addDeprecations(deprecations) + ct.addBundles(bundles) + + err = writeToFile(outputFile, ct) + if err != nil { + return fmt.Errorf("failed to write catalog template to file: %v", err) + } + + fmt.Printf("%s generated successfully.\n", outputFile) + + return nil +} + +// readInputFile reads YAML file into Configuration structure. +func readInputFile(filename string) (Configuration, error) { + inputBytes, err := os.ReadFile(filename) + if err != nil { + return Configuration{}, fmt.Errorf("failed to read %s: %v", filename, err) + } + var input Input + if err = yaml.Unmarshal(inputBytes, &input); err != nil { + return Configuration{}, fmt.Errorf("failed to unmarshal YAML: %v", err) + } + + oldest, err := semver.StrictNewVersion(input.OldestSupportedVersion) + if err != nil { + return Configuration{}, fmt.Errorf("invalid oldest_supported_version %q: %v", input.OldestSupportedVersion, err) + } + + brokens := make(map[*semver.Version]bool, len(input.BrokenVersions)) + for _, s := range input.BrokenVersions { + v, err := semver.StrictNewVersion(s) + if err != nil { + return Configuration{}, fmt.Errorf("invalid item in broken_versions %q: %v", s, err) + } + brokens[v] = true + } + + var images []BundleImage + for _, img := range input.Images { + v, err := semver.StrictNewVersion(img.Version) + if err != nil { + return Configuration{}, fmt.Errorf("invalid version %q for image %q: %v", img.Version, img.Image, err) + } + images = append(images, BundleImage{ + Image: img.Image, + Version: v, + }) + } + + // TODO: ROX-30604 check that image reference is associated with the provided version. + if err = validateImageReferences(images); err != nil { + return Configuration{}, err + } + + versions := getAllVersions(images) + if err = validateVersionsAreSorted(versions); err != nil { + return Configuration{}, err + } + if err = hasGapInVersions(versions); err != nil { + return Configuration{}, err + } + if err = validateBrokenVersions(brokens, versions); err != nil { + return Configuration{}, err + } + if !slices.ContainsFunc(versions, oldest.Equal) { + return Configuration{}, fmt.Errorf("oldest supported version %s is not present in the list of versions", oldest) + } + + return Configuration{ + OldestSupportedVersion: oldest, + BrokenVersions: brokens, + Images: images, + Versions: versions, + }, nil +} + +// generatePackageWithIcon creates a new "olm.package" object with an operator icon. +func generatePackageWithIcon() (Package, error) { + data, err := os.ReadFile(iconFile) + if err != nil { + return Package{}, fmt.Errorf("failed to read %s: %v", iconFile, err) + } + iconBase64 := base64.StdEncoding.EncodeToString(data) + pkg := newPackage(stableChannelName, iconBase64) + + return pkg, nil +} + +func generateChannels(versions []*semver.Version) []Channel { + channels := make([]Channel, 0) + + for _, v := range versions { + // latest channel is historically placed between rhacs-3.y and rhacs-4.y channels. + if v.String() == first4MajorVersion { + latestChannel := newLatestChannel() + channels = append(channels, latestChannel) + } + yStream := makeYStreamVersion(v) + if len(channels) == 0 || !yStream.Equal(channels[len(channels)-1].yStreamVersion) { + // Create a new channel for each new Y-Stream + channel := newChannel(yStream) + channels = append(channels, channel) + } + } + // Create a stable channel at the end + stableChannel := newStableChannel() + channels = append(channels, stableChannel) + + return channels +} + +func generateChannelEntries(versions []*semver.Version, skippedVersions map[*semver.Version]bool) []ChannelEntry { + channelEntries := make([]ChannelEntry, 0) + // We know that our catalog begins with 3.62.0. We set previousEntryVersion to 3.61.0 in order to have 3.62.0's `skipRange` consistent with others. + previousEntryVersion := semver.New(3, 61, 0, "", "") + var previousYStreamVersion *semver.Version + + for _, v := range versions { + if v.Minor() != previousEntryVersion.Minor() { + previousYStreamVersion = makeYStreamVersion(previousEntryVersion) + } + + e := newChannelEntry(v, previousEntryVersion, previousYStreamVersion, skippedVersions) + channelEntries = append(channelEntries, e) + + previousEntryVersion = v + } + + return channelEntries +} + +func populateChannelEntries(channels []Channel, channelEntries []ChannelEntry) { + for i, channel := range channels { + for _, entry := range channelEntries { + if channelShouldHaveEntry(channel, entry) { + channels[i].Entries = append(channels[i].Entries, entry) + } + } + } +} + +func channelShouldHaveEntry(channel Channel, entry ChannelEntry) bool { + validForLatest := channel.Name == latestChannelName && entry.version.Major() < 4 + validForStable := channel.Name == stableChannelName && entry.version.Major() >= 4 + validForVersioned := channel.yStreamVersion != nil && + entry.version.Major() == channel.yStreamVersion.Major() && + entry.version.Minor() <= channel.yStreamVersion.Minor() + return validForLatest || validForStable || validForVersioned +} + +// generateDeprecations creates an object with a list of deprecations based on the provided versions. +func generateDeprecations(versions []*semver.Version, channels []Channel, oldestSupportedVersion *semver.Version, brokenVersions map[*semver.Version]bool) Deprecations { + var deprecations []DeprecationEntry + + latestChannelDeprecationEntry := newChannelDeprecationEntry(latestChannelName, latestChannelDeprecationMessage) + deprecations = append(deprecations, latestChannelDeprecationEntry) + + for _, channel := range channels { + if channel.yStreamVersion != nil && channel.yStreamVersion.LessThan(oldestSupportedVersion) { + channelDeprecation := newChannelDeprecationEntry(channel.Name, channelDeprecationMessage) + deprecations = append(deprecations, channelDeprecation) + } + } + + // deprecate all bundles that are older than the oldest supported version + for _, v := range versions { + msg := "" + if v.LessThan(oldestSupportedVersion) { + msg = bundleDeprecationMessage + } + if brokenVersions[v] { + msg = versionBrokenMessage + } + if msg != "" { + deprecations = append(deprecations, newBundleDeprecationEntry(v, msg)) + } + } + + return newDeprecations(deprecations) +} + +// generateBundles creates a list of bundle entries based on their corresponding images. +func generateBundles(images []BundleImage) []BundleEntry { + var bundleEntries []BundleEntry + for _, img := range images { + bundleEntries = append(bundleEntries, newBundleEntry(img.Image)) + } + return bundleEntries +} + +// writeToFile writes the resulting catalog template to the output YAML file. +func writeToFile(filename string, ct CatalogTemplate) error { + comment := yaml.HeadComment(headComment...) + comments := yaml.CommentMap{ + "$": []*yaml.Comment{comment}, // "$" means top-level comment + } + + out, err := yaml.MarshalWithOptions(ct, yaml.WithComment(comments)) + if err != nil { + return fmt.Errorf("failed to marshal catalog template: %v", err) + } + if err := os.WriteFile(filename, out, 0644); err != nil { + return fmt.Errorf("failed to write output: %v", err) + } + + return nil +} + +// validateVersionsAreSorted checks that the operator versions are sorted in ascending order and that there are no duplicates. +// The sorted order is important for the correct functioning of the rest of the program. +func validateVersionsAreSorted(versions []*semver.Version) error { + for i := 0; i < len(versions)-1; i++ { + currentVersion := versions[i] + nextVersion := versions[i+1] + if currentVersion.GreaterThanEqual(nextVersion) { + return fmt.Errorf("versions are not sorted in ascending order: %s is not less than %s", currentVersion, nextVersion) + } + } + return nil +} + +func hasGapInVersions(versions []*semver.Version) error { + for i := 0; i < len(versions)-1; i++ { + var expectedNextVersion *semver.Version + currentVersion := versions[i] + nextVersion := versions[i+1] + + if currentVersion.Major() != nextVersion.Major() { + expectedNextVersion = semver.New(currentVersion.Major()+1, 0, 0, "", "") + } + if currentVersion.Major() == nextVersion.Major() && currentVersion.Minor() != nextVersion.Minor() { + expectedNextVersion = semver.New(currentVersion.Major(), currentVersion.Minor()+1, 0, "", "") + } + if currentVersion.Major() == nextVersion.Major() && currentVersion.Minor() == nextVersion.Minor() { + expectedNextVersion = semver.New(currentVersion.Major(), currentVersion.Minor(), currentVersion.Patch()+1, "", "") + } + + if expectedNextVersion.Major() != nextVersion.Major() || expectedNextVersion.Minor() != nextVersion.Minor() || expectedNextVersion.Patch() != nextVersion.Patch() { + return fmt.Errorf("unexpected version sequence [%s, %s]: %s should be followed by %s", currentVersion, nextVersion, currentVersion, expectedNextVersion) + } + } + + return nil +} + +func validateBrokenVersions(brokenVersions map[*semver.Version]bool, versions []*semver.Version) error { + for brokenVersion := range brokenVersions { + if !slices.ContainsFunc(versions, brokenVersion.Equal) { + return fmt.Errorf("broken version %s is not present in the list of versions", brokenVersion) + } + } + return nil +} + +// validateImageReferences checks that all images in the input bundle have valid container image references with a digest. +func validateImageReferences(images []BundleImage) error { + for _, img := range images { + if err := validateImageReference(img.Image); err != nil { + return err + } + } + return nil +} + +func validateImageReference(imageRef string) error { + // Use NewDigest with StrictValidation to ensure the reference includes a digest, repository and registry. + _, err := container.NewDigest(imageRef, container.StrictValidation) + if err != nil { + return fmt.Errorf("cannot parse string as container image reference: %w", err) + } + return nil +} diff --git a/cmd/generate-catalog/generate_test.go b/cmd/generate-catalog/generate_test.go new file mode 100644 index 00000000..326cb101 --- /dev/null +++ b/cmd/generate-catalog/generate_test.go @@ -0,0 +1,262 @@ +package main + +import ( + "maps" + "slices" + "testing" + + semver "github.com/Masterminds/semver/v3" + "github.com/stretchr/testify/assert" +) + +var ( + v3610 = semver.MustParse("3.61.0") + v3620 = semver.MustParse("3.62.0") + v3621 = semver.MustParse("3.62.1") + v4000 = semver.MustParse("4.0.0") + v4001 = semver.MustParse("4.0.1") + v4002 = semver.MustParse("4.0.2") + v4100 = semver.MustParse("4.1.0") + v4101 = semver.MustParse("4.1.1") + v4200 = semver.MustParse("4.2.0") + skippedVersions = map[*semver.Version]bool{ + v4001: true, + } + + entry3620 = newChannelEntry(v3620, v3610, v3610, nil) + entry3621 = newChannelEntry(v3621, v3620, v3610, nil) + entry4000 = newChannelEntry(v4000, v3621, v3620, nil) + entry4001 = newChannelEntry(v4001, v4000, v3620, skippedVersions) + entry4002 = newChannelEntry(v4002, v4001, v3620, skippedVersions) + entry4100 = newChannelEntry(v4100, v4002, v4000, skippedVersions) + entry4101 = newChannelEntry(v4101, v4100, v4000, skippedVersions) + entry4200 = newChannelEntry(v4200, v4101, v4100, skippedVersions) + + channel36 = newChannel(v3620) + latestChannel = newLatestChannel() + channel40 = newChannel(v4000) + channel41 = newChannel(v4100) + channel42 = newChannel(v4200) + stableChannel = newStableChannel() +) + +func TestGenerateChannels(t *testing.T) { + channel36.Entries = append(channel36.Entries, entry3620, entry3621) + latestChannel.Entries = append(latestChannel.Entries, entry3620, entry3621) + channel40.Entries = append(channel40.Entries, entry4000, entry4001, entry4002) + channel41.Entries = append(channel41.Entries, entry4000, entry4001, entry4002, entry4100, entry4101) + channel42.Entries = append(channel42.Entries, entry4000, entry4001, entry4002, entry4100, entry4101, entry4200) + stableChannel.Entries = append(stableChannel.Entries, entry4000, entry4001, entry4002, entry4100, entry4101, entry4200) + + tests := []struct { + name string + versions []*semver.Version + expectedChannels []Channel + }{ + { + name: "Single major version with patch versions", + versions: []*semver.Version{ + v3620, + v3621, + }, + expectedChannels: []Channel{ + newChannel(v3620), + newStableChannel(), + }, + }, + { + name: "Multiple major versions with patch versions", + versions: []*semver.Version{ + v3620, + v3621, + v4000, + v4001, + }, + expectedChannels: []Channel{ + newChannel(v3620), + newLatestChannel(), + newChannel(v4000), + newStableChannel(), + }, + }, + { + name: "Only stable channel with no versions", + versions: []*semver.Version{}, + expectedChannels: []Channel{ + newStableChannel(), + }, + }, + { + name: "First 4.x version triggers latest channel", + versions: []*semver.Version{ + v4000, + }, + expectedChannels: []Channel{ + newLatestChannel(), + newChannel(v4000), + newStableChannel(), + }, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + actualChannels := generateChannels(tt.versions) + assert.Equal(t, tt.expectedChannels, actualChannels) + }) + } +} +func TestReadInputFile(t *testing.T) { + tests := []struct { + name string + filePath string + expectedError string + expectedConfig Configuration + }{ + { + name: "Valid input file", + filePath: "testdata/valid_input.yaml", + expectedError: "", + expectedConfig: Configuration{ + OldestSupportedVersion: semver.MustParse("4.0.0"), + BrokenVersions: map[*semver.Version]bool{ + semver.MustParse("4.1.0"): true, + }, + Images: []BundleImage{ + { + Image: "example.com/image@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf", + Version: semver.MustParse("3.62.0"), + }, + { + Image: "example.com/image@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e", + Version: semver.MustParse("4.0.0"), + }, + { + Image: "example.com/image@sha256:272e3d6e2f7f207b3d3866d8be00715e6a6086d50b110c45662d99d217d48dbc", + Version: semver.MustParse("4.1.0"), + }, + { + Image: "example.com/image@sha256:68633e6b12768689f352e1318dc0acc388522d8b6295bf6ca662834cf1367b85", + Version: semver.MustParse("4.2.0"), + }, + }, + }, + }, + { + name: "Invalid YAML format", + filePath: "testdata/invalid_yaml.yaml", + expectedError: "failed to unmarshal YAML", + }, + { + name: "Invalid oldest_supported_version", + filePath: "testdata/invalid_oldest_supported_version.yaml", + expectedError: "invalid oldest_supported_version", + }, + { + name: "Invalid broken_versions", + filePath: "testdata/invalid_broken_versions.yaml", + expectedError: "invalid item in broken_versions", + }, + { + name: "Invalid image version", + filePath: "testdata/invalid_image_version.yaml", + expectedError: "invalid version", + }, + { + name: "Image reference without digest", + filePath: "testdata/image_without_digest.yaml", + expectedError: "cannot parse string as container image reference: a digest must contain exactly one '@' separator (e.g. registry/repository@digest) saw: example.com/image:v1", + }, + { + name: "Image reference is not a strict semantic version", + filePath: "testdata/not_strict_image_version.yaml", + expectedError: "invalid semantic version", + }, + { + name: "oldest_supported_version is not a strict semantic version", + filePath: "testdata/not_strict_oldest_supported_version.yaml", + expectedError: "invalid semantic version", + }, + { + name: "broken_versions is not a strict semantic version", + filePath: "testdata/not_strict_broken_versions.yaml", + expectedError: "invalid semantic version", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + // Call the function under test + config, err := readInputFile(tt.filePath) + + // Check for expected errors + if tt.expectedError != "" { + assert.Error(t, err) + assert.Contains(t, err.Error(), tt.expectedError) + } else { + assert.NoError(t, err) + assert.Equal(t, tt.expectedConfig.Images, config.Images) + assert.True(t, tt.expectedConfig.OldestSupportedVersion.Equal(config.OldestSupportedVersion)) + expectedBrokenVersions := slices.Collect(maps.Keys(tt.expectedConfig.BrokenVersions)) + actualBrokenVersions := slices.Collect(maps.Keys(config.BrokenVersions)) + assert.ElementsMatch(t, expectedBrokenVersions, actualBrokenVersions) + } + }) + } +} + +func TestValidateImageReference(t *testing.T) { + tests := []struct { + name string + image string + expectedError string + }{ + { + name: "Valid image reference with digest", + image: "registry.example.com/repo/image@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e", + }, + { + name: "Empty image reference", + image: "", + expectedError: "cannot parse string as container image reference: a digest must contain exactly one '@' separator (e.g. registry/repository@digest) saw: ", + }, + { + name: "Invalid image reference format", + image: "invalid_image_reference", + expectedError: "cannot parse string as container image reference: a digest must contain exactly one '@' separator (e.g. registry/repository@digest) saw: invalid_image_reference", + }, + { + name: "Image reference without digest", + image: "example.com/image:v1", + expectedError: "cannot parse string as container image reference: a digest must contain exactly one '@' separator (e.g. registry/repository@digest) saw: example.com/image:v1", + }, + { + name: "Image reference with unsupported digest algorithm", + image: "example.com/image@md5:9241e37fcf7f3f88c5e944bd46b0a268", + expectedError: "cannot parse string as container image reference: unsupported digest algorithm: md5:9241e37fcf7f3f88c5e944bd46b0a268", + }, + { + name: "Image reference with invalid sha256 digest", + image: "example.com/image@sha256:invaliddigest", + expectedError: "cannot parse string as container image reference: invalid checksum digest length", + }, + { + name: "image reference without registry", + image: "bare-image-name-without-registry@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf", + expectedError: "cannot parse string as container image reference: strict validation requires the registry to be explicitly defined", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + err := validateImageReference(tt.image) + + if tt.expectedError != "" { + assert.Error(t, err) + assert.Contains(t, err.Error(), tt.expectedError) + } else { + assert.NoError(t, err) + } + }) + } +} diff --git a/cmd/generate-catalog/testdata/image_without_digest.yaml b/cmd/generate-catalog/testdata/image_without_digest.yaml new file mode 100644 index 00000000..fe339a0d --- /dev/null +++ b/cmd/generate-catalog/testdata/image_without_digest.yaml @@ -0,0 +1,8 @@ +oldest_supported_version: 4.6.0 +broken_versions: +- 4.1.0 +images: + - image: example.com/image:v1 + version: 3.62.0 + - image: example.com/image:v2 + version: 4.0.0 diff --git a/cmd/generate-catalog/testdata/invalid_broken_versions.yaml b/cmd/generate-catalog/testdata/invalid_broken_versions.yaml new file mode 100644 index 00000000..694e368b --- /dev/null +++ b/cmd/generate-catalog/testdata/invalid_broken_versions.yaml @@ -0,0 +1,4 @@ +oldest_supported_version: 4.6.0 +broken_versions: + - "not-a-valid-semantic-version" +images: [] diff --git a/cmd/generate-catalog/testdata/invalid_image_version.yaml b/cmd/generate-catalog/testdata/invalid_image_version.yaml new file mode 100644 index 00000000..8992b824 --- /dev/null +++ b/cmd/generate-catalog/testdata/invalid_image_version.yaml @@ -0,0 +1,5 @@ +oldest_supported_version: 3.62.0 +broken_versions: [] +images: + - image: "example.com/image:v3.62.0" + version: "not-a-valid-semantic-version" diff --git a/cmd/generate-catalog/testdata/invalid_oldest_supported_version.yaml b/cmd/generate-catalog/testdata/invalid_oldest_supported_version.yaml new file mode 100644 index 00000000..19090fd0 --- /dev/null +++ b/cmd/generate-catalog/testdata/invalid_oldest_supported_version.yaml @@ -0,0 +1,8 @@ +oldest_supported_version: "not-a-valid-semantic-version" +broken_versions: +- 4.1.0 +images: + - image: example.com/image@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf + version: 3.62.0 + - image: example.com/image@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e + version: 4.0.0 diff --git a/cmd/generate-catalog/testdata/invalid_yaml.yaml b/cmd/generate-catalog/testdata/invalid_yaml.yaml new file mode 100644 index 00000000..1c25c294 --- /dev/null +++ b/cmd/generate-catalog/testdata/invalid_yaml.yaml @@ -0,0 +1 @@ +obviously not a yaml file diff --git a/cmd/generate-catalog/testdata/not_strict_broken_versions.yaml b/cmd/generate-catalog/testdata/not_strict_broken_versions.yaml new file mode 100644 index 00000000..694e368b --- /dev/null +++ b/cmd/generate-catalog/testdata/not_strict_broken_versions.yaml @@ -0,0 +1,4 @@ +oldest_supported_version: 4.6.0 +broken_versions: + - "not-a-valid-semantic-version" +images: [] diff --git a/cmd/generate-catalog/testdata/not_strict_image_version.yaml b/cmd/generate-catalog/testdata/not_strict_image_version.yaml new file mode 100644 index 00000000..b9ba20e5 --- /dev/null +++ b/cmd/generate-catalog/testdata/not_strict_image_version.yaml @@ -0,0 +1,5 @@ +oldest_supported_version: 3.62.0 +broken_versions: [] +images: + - image: "example.com/image:v3.62.0" + version: 4.1 diff --git a/cmd/generate-catalog/testdata/not_strict_oldest_supported_version.yaml b/cmd/generate-catalog/testdata/not_strict_oldest_supported_version.yaml new file mode 100644 index 00000000..f16dd28e --- /dev/null +++ b/cmd/generate-catalog/testdata/not_strict_oldest_supported_version.yaml @@ -0,0 +1,8 @@ +oldest_supported_version: 4.6 +broken_versions: +- 4.1.0 +images: + - image: example.com/image@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf + version: 3.62.0 + - image: example.com/image@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e + version: 4.0.0 diff --git a/cmd/generate-catalog/testdata/valid_input.yaml b/cmd/generate-catalog/testdata/valid_input.yaml new file mode 100644 index 00000000..19996763 --- /dev/null +++ b/cmd/generate-catalog/testdata/valid_input.yaml @@ -0,0 +1,12 @@ +oldest_supported_version: 4.0.0 +broken_versions: +- 4.1.0 +images: + - image: example.com/image@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf + version: 3.62.0 + - image: example.com/image@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e + version: 4.0.0 + - image: example.com/image@sha256:272e3d6e2f7f207b3d3866d8be00715e6a6086d50b110c45662d99d217d48dbc + version: 4.1.0 + - image: example.com/image@sha256:68633e6b12768689f352e1318dc0acc388522d8b6295bf6ca662834cf1367b85 + version: 4.2.0 diff --git a/cmd/generate-catalog/types.go b/cmd/generate-catalog/types.go new file mode 100644 index 00000000..49ef1b53 --- /dev/null +++ b/cmd/generate-catalog/types.go @@ -0,0 +1,301 @@ +package main + +import ( + "fmt" + "slices" + + semver "github.com/Masterminds/semver/v3" +) + +// A list of versions which must not have "replaces" key in they channel entries. +var versionsWithoutReplaces = []string{first3MajorVersion, first4MajorVersion} + +// Describes format of the input file for catalog template generation. +// It contains: +// - OldestSupportedVersion - the oldest supported version of the operator. All versions < OldestSupportedVersion are marked as deprecated. +// - BrokenVersions - a list of versions which are broken and should be skipped in the catalog. +// - Images - a list of bundle images with their versions. +type Input struct { + OldestSupportedVersion string `yaml:"oldest_supported_version"` + BrokenVersions []string `yaml:"broken_versions"` + Images []InputBundleImage `yaml:"images"` +} + +type InputBundleImage struct { + Image string `yaml:"image"` + Version string `yaml:"version"` +} + +// Describes domain logic configuration for the catalog template generation. +type Configuration struct { + OldestSupportedVersion *semver.Version + BrokenVersions map[*semver.Version]bool + Images []BundleImage + Versions []*semver.Version +} + +type BundleImage struct { + Image string + Version *semver.Version +} + +// Describes catalog template structure which is used to generate the catalog YAML file. +// See OLM catalog template documentation for more details: https://olm.operatorframework.io/docs/reference/catalog-templates/ +type CatalogTemplate struct { + Schema string `yaml:"schema"` + Entries []CatalogEntry `yaml:"entries"` +} + +type CatalogEntry interface { + isCatalogEntry() +} + +func (Package) isCatalogEntry() {} +func (Channel) isCatalogEntry() {} +func (Deprecations) isCatalogEntry() {} +func (BundleEntry) isCatalogEntry() {} + +type Package struct { + Schema string `yaml:"schema"` + Name string `yaml:"name"` + DefaultChannel string `yaml:"defaultChannel"` + Icon Icon `yaml:"icon"` +} + +type Icon struct { + Base64data string `yaml:"base64data"` + MediaType string `yaml:"mediatype"` +} + +type Channel struct { + Schema string `yaml:"schema"` + Name string `yaml:"name"` + Package string `yaml:"package"` + Entries []ChannelEntry `yaml:"entries"` + yStreamVersion *semver.Version `yaml:"-"` +} + +type ChannelEntry struct { + Name string `yaml:"name"` + Replaces string `yaml:"replaces,omitempty"` + SkipRange string `yaml:"skipRange"` + Skips []string `yaml:"skips,omitempty"` + version *semver.Version `yaml:"-"` +} + +type Deprecations struct { + Schema string `yaml:"schema"` + Package string `yaml:"package"` + Entries []DeprecationEntry `yaml:"entries,omitempty"` +} + +type DeprecationEntry struct { + Reference DeprecationReference `yaml:"reference"` + Message string `yaml:"message"` +} + +type DeprecationReference struct { + Schema string `yaml:"schema"` + Name string `yaml:"name"` +} + +type BundleEntry struct { + Schema string `yaml:"schema"` + Image string `yaml:"image"` +} + +// Create base catalog template block. +// It has to contain objects with schema equal to: "olm.package", "olm.channel", "olm.deprecations" or "olm.bundle". +func newCatalogTemplate() CatalogTemplate { + return CatalogTemplate{ + Schema: olmTemplateSchema, + } +} + +// newPackage creates a new "olm.package" object. +func newPackage(defaultChannel, iconBase64 string) Package { + return Package{ + Schema: olmPackageSchema, + Name: rhacsOperator, + DefaultChannel: defaultChannel, + Icon: Icon{ + Base64data: iconBase64, + MediaType: "image/png", + }, + } +} + +// addPackage adds an "olm.package" object to the base catalog. +func (c *CatalogTemplate) addPackage(pkg Package) { + c.Entries = append(c.Entries, CatalogEntry(pkg)) +} + +// addChannels adds a list of "olm.channel" objects to the base catalog. +func (c *CatalogTemplate) addChannels(channels []Channel) { + for _, channel := range channels { + c.Entries = append(c.Entries, CatalogEntry(channel)) + } +} + +// addDeprecations adds an "olm.deprecations" object to the base catalog. +func (c *CatalogTemplate) addDeprecations(deprecations Deprecations) { + c.Entries = append(c.Entries, CatalogEntry(deprecations)) +} + +// addBundles adds a list of "olm.bundle" objects to the base catalog. +func (c *CatalogTemplate) addBundles(bundles []BundleEntry) { + for _, bundle := range bundles { + c.Entries = append(c.Entries, CatalogEntry(bundle)) + } +} + +// Create a new "olm.channel" object. +// it will be represented in YAML like this: +// | - schema: olm.channel +// | name: rhacs-3.64 +// | package: rhacs-operator +// | entries: +// | - +func newChannel(version *semver.Version) Channel { + return Channel{ + Schema: olmChannelSchema, + Name: fmt.Sprintf("rhacs-%d.%d", version.Major(), version.Minor()), + Package: rhacsOperator, + yStreamVersion: makeYStreamVersion(version), + } +} + +// Create a special "olm.channel" object with the name "latest". +// It is a now-deprecated channel which was used before "stable" was introduced. +func newLatestChannel() Channel { + return Channel{ + Schema: olmChannelSchema, + Name: latestChannelName, + Package: rhacsOperator, + } +} + +// Create a special "olm.channel" object with the name "stable". +// It is a default channel for all versions after 4.0.0. +func newStableChannel() Channel { + return Channel{ + Schema: olmChannelSchema, + Name: stableChannelName, + Package: rhacsOperator, + } +} + +// newChannelEntry creates an object to be added to Channel entries list. +// Channel entries effectively form the upgrade graph within the channel telling OLM from which versions it's allowed to upgrade to a particular one. +// it will be represented in YAML like this: +// | - name: rhacs-operator.v +// | replaces: rhacs-operator.v +// | skipRange: '>= < ' +// | skips: +// | - rhacs-operator.v +func newChannelEntry(version, previousEntryVersion, previousYStreamVersion *semver.Version, skippedVersions map[*semver.Version]bool) ChannelEntry { + entry := ChannelEntry{ + Name: generateBundleName(version), + version: version, + } + entry.addReplaces(version, previousEntryVersion) + entry.addSkipRange(previousYStreamVersion, version) + entry.addSkips(version, skippedVersions) + return entry +} + +func (e *ChannelEntry) addReplaces(version, previousEntryVersion *semver.Version) { + if !slices.Contains(versionsWithoutReplaces, version.String()) { + e.Replaces = generateBundleName(previousEntryVersion) + } +} + +func (e *ChannelEntry) addSkipRange(skipRangeFrom, skipRangeTo *semver.Version) { + e.SkipRange = fmt.Sprintf(">= %s < %s", skipRangeFrom, skipRangeTo) +} + +func (e *ChannelEntry) addSkips(version *semver.Version, skippedVersions map[*semver.Version]bool) { + for skippedVersion := range skippedVersions { + // for any broken X.Y.Z version add "skips" for all versions > X.Y.Z and < X.Y+brokenVersionSkippingOffset.0 + skipsUntilVersion := semver.New(skippedVersion.Major(), skippedVersion.Minor()+brokenVersionSkippingOffset, 0, "", "") + if version.GreaterThan(skippedVersion) && version.LessThan(skipsUntilVersion) { + e.Skips = append(e.Skips, generateBundleName(skippedVersion)) + } + } +} + +// Create a new "olm.deprecations" object which should be added to the catalog base. +// It will be represented in YAML like this: +// | - schema: olm.deprecations +// | package: rhacs-operator +// | entries: +// | - +func newDeprecations(entries []DeprecationEntry) Deprecations { + return Deprecations{ + Schema: olmDeprecationsSchema, + Package: rhacsOperator, + Entries: entries, + } +} + +// Create a new channel DeprecationEntry reference object which should be added to Deprecation reference list. +// it will be represented in YAML like this: +// | - reference: +// | schema: olm.channel +// | name: +// | message: | +// | +func newChannelDeprecationEntry(name string, message string) DeprecationEntry { + return DeprecationEntry{ + Reference: DeprecationReference{ + Schema: olmChannelSchema, + Name: name, + }, + Message: message, + } +} + +// Create a new bundle DeprecationEntry reference object which should be added to Deprecation reference list. +// it will be represented in YAML like this: +// | - reference: +// | schema: olm.bundle +// | name: rhacs-operator.v +// | message: | +// | +func newBundleDeprecationEntry(version *semver.Version, message string) DeprecationEntry { + return DeprecationEntry{ + Reference: DeprecationReference{ + Schema: olmBundleSchema, + Name: generateBundleName(version), + }, + Message: message, + } +} + +// Create a new "olm.bundle" object which should be added to the catalog base. +// it will be represented in YAML like this: +// | - image: +// | schema: olm.bundle +func newBundleEntry(image string) BundleEntry { + return BundleEntry{ + Schema: olmBundleSchema, + Image: image, + } +} + +// getAllVersions extracts all operator versions from the input images. +func getAllVersions(images []BundleImage) []*semver.Version { + versions := make([]*semver.Version, 0, len(images)) + for _, img := range images { + versions = append(versions, img.Version) + } + return versions +} + +func generateBundleName(version *semver.Version) string { + return fmt.Sprintf("%s.v%s", rhacsOperator, version) +} + +func makeYStreamVersion(v *semver.Version) *semver.Version { + return semver.New(v.Major(), v.Minor(), 0, "", "") +} diff --git a/cmd/generate-catalog/types_test.go b/cmd/generate-catalog/types_test.go new file mode 100644 index 00000000..5b10a8c6 --- /dev/null +++ b/cmd/generate-catalog/types_test.go @@ -0,0 +1,105 @@ +package main + +import ( + "testing" + + semver "github.com/Masterminds/semver/v3" + "github.com/stretchr/testify/assert" +) + +func TestNewChannelEntry(t *testing.T) { + tests := []struct { + name string + version string + previousEntryVersion string + previousChannelVersion string + brokenVersions []string + expectedName string + expectedReplaces string + expectedSkipRange string + expectedSkips []string + }{ + { + name: "Valid channel entry with no broken versions", + version: "4.1.0", + previousEntryVersion: "4.0.5", + previousChannelVersion: "4.0.0", + brokenVersions: nil, + expectedName: "rhacs-operator.v4.1.0", + expectedReplaces: "rhacs-operator.v4.0.5", + expectedSkipRange: ">= 4.0.0 < 4.1.0", + expectedSkips: nil, + }, + { + name: "Valid channel entry with broken version", + version: "4.2.0", + previousEntryVersion: "4.1.0", + previousChannelVersion: "4.1.0", + brokenVersions: []string{"4.1.1"}, + expectedName: "rhacs-operator.v4.2.0", + expectedReplaces: "rhacs-operator.v4.1.0", + expectedSkipRange: ">= 4.1.0 < 4.2.0", + expectedSkips: []string{"rhacs-operator.v4.1.1"}, + }, + { + name: "Channel entry for version 2 minor version ahead of broken version which should not be in skips value", + version: "4.5.0", + previousEntryVersion: "4.4.5", + previousChannelVersion: "4.4.0", + brokenVersions: []string{"4.1.1"}, + expectedName: "rhacs-operator.v4.5.0", + expectedReplaces: "rhacs-operator.v4.4.5", + expectedSkipRange: ">= 4.4.0 < 4.5.0", + expectedSkips: nil, + }, + { + name: "Version without replaces", + version: "4.0.0", + previousEntryVersion: "3.62.0", + previousChannelVersion: "3.62.0", + brokenVersions: nil, + expectedName: "rhacs-operator.v4.0.0", + expectedReplaces: "", + expectedSkipRange: ">= 3.62.0 < 4.0.0", + expectedSkips: nil, + }, + { + name: "Multiple broken versions", + version: "4.3.0", + previousEntryVersion: "4.2.0", + previousChannelVersion: "4.2.0", + brokenVersions: []string{"4.2.1", "4.2.2"}, + expectedName: "rhacs-operator.v4.3.0", + expectedReplaces: "rhacs-operator.v4.2.0", + expectedSkipRange: ">= 4.2.0 < 4.3.0", + expectedSkips: []string{"rhacs-operator.v4.2.1", "rhacs-operator.v4.2.2"}, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + version := semver.MustParse(tt.version) + var previousEntryVersion *semver.Version + if tt.previousEntryVersion != "" { + previousEntryVersion = semver.MustParse(tt.previousEntryVersion) + } + previousChannelVersion := semver.MustParse(tt.previousChannelVersion) + + var brokenVersions map[*semver.Version]bool + for _, bv := range tt.brokenVersions { + brokenVersion := semver.MustParse(bv) + if brokenVersions == nil { + brokenVersions = make(map[*semver.Version]bool) + } + brokenVersions[brokenVersion] = true + } + + entry := newChannelEntry(version, previousEntryVersion, previousChannelVersion, brokenVersions) + + assert.Equal(t, tt.expectedName, entry.Name) + assert.Equal(t, tt.expectedReplaces, entry.Replaces) + assert.Equal(t, tt.expectedSkipRange, entry.SkipRange) + assert.Equal(t, tt.expectedSkips, entry.Skips) + }) + } +} diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..327328b1 --- /dev/null +++ b/go.mod @@ -0,0 +1,19 @@ +module cataloggen + +go 1.24.4 + +require ( + github.com/Masterminds/semver/v3 v3.4.0 + github.com/goccy/go-yaml v1.18.0 + github.com/stretchr/testify v1.10.0 +) + +require github.com/kr/pretty v0.3.1 // indirect + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/google/go-containerregistry v0.20.2 + github.com/opencontainers/go-digest v1.0.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect +) diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..69d53f47 --- /dev/null +++ b/go.sum @@ -0,0 +1,27 @@ +github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0= +github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/goccy/go-yaml v1.18.0 h1:8W7wMFS12Pcas7KU+VVkaiCng+kG8QiFeFwzFb+rwuw= +github.com/goccy/go-yaml v1.18.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA= +github.com/google/go-containerregistry v0.20.2 h1:B1wPJ1SN/S7pB+ZAimcciVD+r+yV/l/DSArMxlbwseo= +github.com/google/go-containerregistry v0.20.2/go.mod h1:z38EKdKh4h7IP2gSfUUqEvalZBqs6AoLeWfUy34nQC8= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= +github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= +github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= +github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= +github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= +github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/icon.png b/icon.png new file mode 100644 index 00000000..7e4eac49 Binary files /dev/null and b/icon.png differ