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 284ca597..f685d3b4 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:d4feb579a84ead49894ec71fe54f14300992e202f3491d9bb22b62cc57affd49 + image: registry.redhat.io/ubi9/go-toolset@sha256:2e8adc5be8eba060e919a6f7309a7b5ef09dd72d3ae9e747b9eb02e96f35a0f5 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 b41b0949..cb4af34e 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 9c9f7d8d..8ad2294d 100644 --- a/README.md +++ b/README.md @@ -9,96 +9,30 @@ OperatorHub. ### Restarting Konflux pipeline If some pipeline failed, you can restart it by commenting in the PR `/test ` (e.g. `/test operator-index-ocp-v4-16-on-push`). -See more in [our docs](https://spaces.redhat.com/display/StackRox/How+to+everything+Konflux+for+RHACS#HowtoeverythingKonfluxforRHACS-Howtore-runpipelines). +See more in [our docs](https://spaces.redhat.com/spaces/StackRox/pages/702155579/How+to+re-run+Konflux+pipelines). ### 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: quay.io/rhacs-eng/release-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. -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. It would look like this: ```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: quay.io/rhacs-eng/release-operator-bundle@sha256:c82e8330c257e56eb43cb5fa7b0c842a7f7f0414e32e26a792ef36817cb5ca02 + version: 4.7.9 ``` + * 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. +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. Update catalogs (follow [updating catalogs steps](#updating-catalogs)) +5. 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 @@ -108,7 +42,7 @@ make clean && make valid-catalogs ``` Note: this will take a while. -If a new bundle was added then you should see that `catalog-bundle-object/rhacs-operator/catalog.json` and `catalog-csv-metadata/rhacs-operator/catalog.json` files are changed. +If a new bundle was added then you should see that `catalog-template.yaml`, `catalog-bundle-object/rhacs-operator/catalog.json` and `catalog-csv-metadata/rhacs-operator/catalog.json` files are changed. #### Historical note diff --git a/bundles.yaml b/bundles.yaml new file mode 100644 index 00000000..915d6ac2 --- /dev/null +++ b/bundles.yaml @@ -0,0 +1,248 @@ +# 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.7.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:6d6b2696a12d49cf3403e338a0e028187473b6f43ef2b0bd72c7701200ac8e2e + version: 4.6.10 + - 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:c7f894ab773d1d389656d13ed88fbf575faddd95c5b8396c6593ab3f993f331e + version: 4.7.7 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3659fb7acda8c7a7dc86795a942be7be0c339dd83c8763010cb89dcb09458222 + version: 4.7.8 + - 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 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:323f62203914d00b29a6f8c1a1230bbbf19ab14c8c4c70bf0474dd87c493d4f2 + version: 4.8.5 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:57a4b1a83e9fde88b7036214af7755f7596af46b1d80c2a3487a52fcb0e58451 + version: 4.8.6 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:02a50a53dddbbdd749b0b6cc01f555308ab3c16045130d07483bfddd6861de42 + version: 4.9.0 + - image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9312c096fef02f70b642551338fdf968ec6657ff0385f51c13767d8b29afc76d + version: 4.9.1 diff --git a/catalog-bundle-object/rhacs-operator/catalog.json b/catalog-bundle-object/rhacs-operator/catalog.json index 7d10fbd3..6f5daa78 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", @@ -883,49 +1574,31 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" } ] @@ -972,97 +1645,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" } ] @@ -1109,97 +1746,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -1291,97 +1892,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -1518,97 +2083,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -1795,97 +2324,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -2127,97 +2620,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -2504,97 +2961,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -2916,97 +3337,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -3338,97 +3723,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -19155,140 +19504,875 @@ "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.channel", "name": "rhacs-4.6" }, - "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" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.10" + }, + "message": "This Operator version is no longer supported. Use 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 eb7315b2..d205914a 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" }, { @@ -883,49 +1574,31 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" } ] @@ -972,97 +1645,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" } ] @@ -1109,97 +1746,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -1291,97 +1892,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -1518,97 +2083,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -1795,97 +2324,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -2127,97 +2620,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -2504,97 +2961,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -2916,97 +3337,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -3338,97 +3723,61 @@ { "name": "rhacs-operator.v4.1.1", "replaces": "rhacs-operator.v4.1.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.1" }, { "name": "rhacs-operator.v4.1.2", "replaces": "rhacs-operator.v4.1.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.2" }, { "name": "rhacs-operator.v4.1.3", "replaces": "rhacs-operator.v4.1.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.3" }, { "name": "rhacs-operator.v4.1.4", "replaces": "rhacs-operator.v4.1.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.4" }, { "name": "rhacs-operator.v4.1.5", "replaces": "rhacs-operator.v4.1.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.5" }, { "name": "rhacs-operator.v4.1.6", "replaces": "rhacs-operator.v4.1.5", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.0.0 < 4.1.6" }, { "name": "rhacs-operator.v4.2.0", "replaces": "rhacs-operator.v4.1.6", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.0" }, { "name": "rhacs-operator.v4.2.1", "replaces": "rhacs-operator.v4.2.0", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.1" }, { "name": "rhacs-operator.v4.2.2", "replaces": "rhacs-operator.v4.2.1", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.2" }, { "name": "rhacs-operator.v4.2.3", "replaces": "rhacs-operator.v4.2.2", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.3" }, { "name": "rhacs-operator.v4.2.4", "replaces": "rhacs-operator.v4.2.3", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.4" }, { "name": "rhacs-operator.v4.2.5", "replaces": "rhacs-operator.v4.2.4", - "skips": [ - "rhacs-operator.v4.1.0" - ], "skipRange": ">= 4.1.0 < 4.2.5" }, { @@ -161269,140 +161618,875 @@ "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.channel", "name": "rhacs-4.6" }, - "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" + }, + { + "reference": { + "schema": "olm.bundle", + "name": "rhacs-operator.v4.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.10" + }, + "message": "This Operator version is no longer supported. Use 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 e29dcd2c..7fe19f07 100644 --- a/catalog-template.yaml +++ b/catalog-template.yaml @@ -1,1542 +1,3180 @@ ---- +#-------------------------------------------------------------------------------- +# 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" +- 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" +- 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + - 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + - 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + - 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + - 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.6.10 + replaces: rhacs-operator.v4.6.9 + skipRange: ">= 4.5.0 < 4.6.10" +- 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + - 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.6.10 + replaces: rhacs-operator.v4.6.9 + skipRange: ">= 4.5.0 < 4.6.10" + - name: rhacs-operator.v4.7.0 + replaces: rhacs-operator.v4.6.10 + 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.7.7 + replaces: rhacs-operator.v4.7.6 + skipRange: ">= 4.6.0 < 4.7.7" + - name: rhacs-operator.v4.7.8 + replaces: rhacs-operator.v4.7.7 + skipRange: ">= 4.6.0 < 4.7.8" +- 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + - 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.6.10 + replaces: rhacs-operator.v4.6.9 + skipRange: ">= 4.5.0 < 4.6.10" + - name: rhacs-operator.v4.7.0 + replaces: rhacs-operator.v4.6.10 + 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.7.7 + replaces: rhacs-operator.v4.7.6 + skipRange: ">= 4.6.0 < 4.7.7" + - name: rhacs-operator.v4.7.8 + replaces: rhacs-operator.v4.7.7 + skipRange: ">= 4.6.0 < 4.7.8" + - name: rhacs-operator.v4.8.0 + replaces: rhacs-operator.v4.7.8 + 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" + - name: rhacs-operator.v4.8.5 + replaces: rhacs-operator.v4.8.4 + skipRange: ">= 4.7.0 < 4.8.5" + - name: rhacs-operator.v4.8.6 + replaces: rhacs-operator.v4.8.5 + skipRange: ">= 4.7.0 < 4.8.6" +- schema: olm.channel + name: rhacs-4.9 + 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" + - name: rhacs-operator.v4.1.2 + replaces: rhacs-operator.v4.1.1 + skipRange: ">= 4.0.0 < 4.1.2" + - name: rhacs-operator.v4.1.3 + replaces: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.3" + - name: rhacs-operator.v4.1.4 + replaces: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.4" + - name: rhacs-operator.v4.1.5 + replaces: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.5" + - name: rhacs-operator.v4.1.6 + replaces: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.6" + - name: rhacs-operator.v4.2.0 + replaces: rhacs-operator.v4.1.6 + skipRange: ">= 4.1.0 < 4.2.0" + - name: rhacs-operator.v4.2.1 + replaces: rhacs-operator.v4.2.0 + skipRange: ">= 4.1.0 < 4.2.1" + - name: rhacs-operator.v4.2.2 + replaces: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.2" + - name: rhacs-operator.v4.2.3 + replaces: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.3" + - name: rhacs-operator.v4.2.4 + replaces: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.4" + - name: rhacs-operator.v4.2.5 + replaces: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.5" + - 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.6.10 + replaces: rhacs-operator.v4.6.9 + skipRange: ">= 4.5.0 < 4.6.10" + - name: rhacs-operator.v4.7.0 + replaces: rhacs-operator.v4.6.10 + 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.7.7 + replaces: rhacs-operator.v4.7.6 + skipRange: ">= 4.6.0 < 4.7.7" + - name: rhacs-operator.v4.7.8 + replaces: rhacs-operator.v4.7.7 + skipRange: ">= 4.6.0 < 4.7.8" + - name: rhacs-operator.v4.8.0 + replaces: rhacs-operator.v4.7.8 + 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" + - name: rhacs-operator.v4.8.5 + replaces: rhacs-operator.v4.8.4 + skipRange: ">= 4.7.0 < 4.8.5" + - name: rhacs-operator.v4.8.6 + replaces: rhacs-operator.v4.8.5 + skipRange: ">= 4.7.0 < 4.8.6" + - name: rhacs-operator.v4.9.0 + replaces: rhacs-operator.v4.8.6 + skipRange: ">= 4.8.0 < 4.9.0" + - name: rhacs-operator.v4.9.1 + replaces: rhacs-operator.v4.9.0 + skipRange: ">= 4.8.0 < 4.9.1" - 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' - skips: - - rhacs-operator.v4.1.0 - - &bundle-4-1-2 - name: rhacs-operator.v4.1.2 + skipRange: ">= 4.0.0 < 4.1.1" + - 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 - - &bundle-4-1-3 - name: rhacs-operator.v4.1.3 + skipRange: ">= 4.0.0 < 4.1.2" + - 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 - - &bundle-4-1-4 - name: rhacs-operator.v4.1.4 + skipRange: ">= 4.0.0 < 4.1.3" + - 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 - - &bundle-4-1-5 - name: rhacs-operator.v4.1.5 + skipRange: ">= 4.0.0 < 4.1.4" + - 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 - - &bundle-4-1-6 - name: rhacs-operator.v4.1.6 + skipRange: ">= 4.0.0 < 4.1.5" + - 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 - - - &bundle-4-2-0 - name: rhacs-operator.v4.2.0 + skipRange: ">= 4.0.0 < 4.1.6" + - 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 - - &bundle-4-2-1 - name: rhacs-operator.v4.2.1 + skipRange: ">= 4.1.0 < 4.2.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 - - &bundle-4-2-2 - name: rhacs-operator.v4.2.2 + skipRange: ">= 4.1.0 < 4.2.1" + - 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 - - &bundle-4-2-3 - name: rhacs-operator.v4.2.3 + skipRange: ">= 4.1.0 < 4.2.2" + - 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 - - &bundle-4-2-4 - name: rhacs-operator.v4.2.4 + skipRange: ">= 4.1.0 < 4.2.3" + - 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 - - &bundle-4-2-5 - name: rhacs-operator.v4.2.5 + skipRange: ">= 4.1.0 < 4.2.4" + - 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 - - - &bundle-4-3-0 - name: rhacs-operator.v4.3.0 + skipRange: ">= 4.1.0 < 4.2.5" + - 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-6-10 - name: rhacs-operator.v4.6.10 + skipRange: ">= 4.5.0 < 4.6.9" + - name: rhacs-operator.v4.6.10 replaces: rhacs-operator.v4.6.9 - skipRange: '>= 4.5.0 < 4.6.10' - - - &bundle-4-7-0 - name: rhacs-operator.v4.7.0 + skipRange: ">= 4.5.0 < 4.6.10" + - name: rhacs-operator.v4.7.0 replaces: rhacs-operator.v4.6.10 - 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-7-7 - name: rhacs-operator.v4.7.7 + skipRange: ">= 4.6.0 < 4.7.6" + - name: rhacs-operator.v4.7.7 replaces: rhacs-operator.v4.7.6 - skipRange: '>= 4.6.0 < 4.7.7' - - &bundle-4-7-8 - name: rhacs-operator.v4.7.8 + skipRange: ">= 4.6.0 < 4.7.7" + - name: rhacs-operator.v4.7.8 replaces: rhacs-operator.v4.7.7 - skipRange: '>= 4.6.0 < 4.7.8' - - - &bundle-4-8-0 - name: rhacs-operator.v4.8.0 + skipRange: ">= 4.6.0 < 4.7.8" + - name: rhacs-operator.v4.8.0 replaces: rhacs-operator.v4.7.8 - 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' - - &bundle-4-8-5 - name: rhacs-operator.v4.8.5 + skipRange: ">= 4.7.0 < 4.8.4" + - name: rhacs-operator.v4.8.5 replaces: rhacs-operator.v4.8.4 - skipRange: '>= 4.7.0 < 4.8.5' - - &bundle-4-8-6 - name: rhacs-operator.v4.8.6 + skipRange: ">= 4.7.0 < 4.8.5" + - name: rhacs-operator.v4.8.6 replaces: rhacs-operator.v4.8.5 - skipRange: '>= 4.7.0 < 4.8.6' - - - &bundle-4-9-0 - name: rhacs-operator.v4.9.0 + skipRange: ">= 4.7.0 < 4.8.6" + - name: rhacs-operator.v4.9.0 replaces: rhacs-operator.v4.8.6 - skipRange: '>= 4.8.0 < 4.9.0' - - &bundle-4-9-1 - name: rhacs-operator.v4.9.1 + skipRange: ">= 4.8.0 < 4.9.0" + - name: rhacs-operator.v4.9.1 replaces: rhacs-operator.v4.9.0 - skipRange: '>= 4.8.0 < 4.9.1' - -- 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 - - *bundle-4-6-10 - -- 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-6-10 - - - *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-7-7 - - *bundle-4-7-8 - -- 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-6-10 - - - *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-7-7 - - *bundle-4-7-8 - - - *bundle-4-8-0 - - *bundle-4-8-1 - - *bundle-4-8-2 - - *bundle-4-8-3 - - *bundle-4-8-4 - - *bundle-4-8-5 - - *bundle-4-8-6 - -- schema: olm.channel - name: rhacs-4.9 - 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-6-10 - - - *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-7-7 - - *bundle-4-7-8 - - - *bundle-4-8-0 - - *bundle-4-8-1 - - *bundle-4-8-2 - - *bundle-4-8-3 - - *bundle-4-8-4 - - *bundle-4-8-5 - - *bundle-4-8-6 - - - *bundle-4-9-0 - - *bundle-4-9-1 - + skipRange: ">= 4.8.0 < 4.9.1" - 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 + 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.6 - 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" + - reference: + schema: olm.bundle + name: rhacs-operator.v4.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.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.6.10 + message: "This Operator version is no longer supported. Use 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.6.10 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:6d6b2696a12d49cf3403e338a0e028187473b6f43ef2b0bd72c7701200ac8e2e - 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.7.7 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:c7f894ab773d1d389656d13ed88fbf575faddd95c5b8396c6593ab3f993f331e - schema: olm.bundle - # 4.7.8 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:3659fb7acda8c7a7dc86795a942be7be0c339dd83c8763010cb89dcb09458222 - 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 - schema: olm.bundle - # 4.8.5 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:323f62203914d00b29a6f8c1a1230bbbf19ab14c8c4c70bf0474dd87c493d4f2 - schema: olm.bundle - # 4.8.6 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:57a4b1a83e9fde88b7036214af7755f7596af46b1d80c2a3487a52fcb0e58451 - schema: olm.bundle - # 4.9.0 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:02a50a53dddbbdd749b0b6cc01f555308ab3c16045130d07483bfddd6861de42 - schema: olm.bundle - # 4.9.1 image: registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:9312c096fef02f70b642551338fdf968ec6657ff0385f51c13767d8b29afc76d diff --git a/cmd/generate-catalog/generate.go b/cmd/generate-catalog/generate.go new file mode 100644 index 00000000..98fc16c6 --- /dev/null +++ b/cmd/generate-catalog/generate.go @@ -0,0 +1,397 @@ +package main + +import ( + // needed for digest algorithm validation + _ "crypto/sha256" + + "encoding/base64" + "fmt" + "log" + "os" + "slices" + + semver "github.com/Masterminds/semver/v3" + "github.com/goccy/go-yaml" + "github.com/opencontainers/go-digest" + + "github.com/distribution/reference" +) + +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" + latestChannelDeprecationMessage = "The `latest` channel is no longer supported. Use the `stable` channel." + latestChannelName = "latest" + stableChannelName = "stable" +) + +var ( + headComment = []string{ + "--------------------------------------------------------------------------------", + " DO NOT EDIT. This file is generated by cmd/generate-catalog/generate.go script.", + " Any manual changes will be overwritten.", + "--------------------------------------------------------------------------------", + } + latestChannelFromVersion = semver.New(3, 62, 0, "", "") + latestChannelUntilVersion = semver.New(4, 0, 0, "", "") + stableChannelFromVersion = latestChannelUntilVersion + stableChannelUntilVersion = semver.New(9999, 0, 0, "", "") +) + +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) + deprecations := generateDeprecations(config.Versions, channels, config.OldestSupportedVersion) + 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) + } + + 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, + }) + } + + 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 !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, + Images: images, + Versions: versions, + }, nil +} + +// 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 +} + +// 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 +} + +// 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 +} + +// validateImageReference checks that the given image reference string is a valid container image reference and includes a registry, repository and digest. +// Also check that tag is not present. See tag related issue: https://redhat-internal.slack.com/archives/C031USXS2FJ/p1755792504667849?thread_ts=1755622785.895239&cid=C031USXS2FJ +func validateImageReference(imageRef string) error { + ref, err := reference.Parse(imageRef) + if err != nil { + return fmt.Errorf("cannot parse string as container image reference %s: %w", imageRef, err) + } + + canonical, ok := ref.(reference.Canonical) + if !ok || canonical.Digest() == "" { + return fmt.Errorf("image reference %s does not include a digest", imageRef) + } + if canonical.Digest().Algorithm() != digest.SHA256 { + return fmt.Errorf("image reference %s digest algorithm is not sha256", imageRef) + } + + if reference.Domain(canonical) == "" { + return fmt.Errorf("image reference %s needs the registry to be explicitly defined", imageRef) + } + if tagged, ok := ref.(reference.Tagged); ok && tagged.Tag() != "" { + return fmt.Errorf("image reference %s should not contain a tag", imageRef) + } + + return 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 +} + +// generateChannels creates channels based on the provided versions. +func generateChannels(versions []*semver.Version) []Channel { + latestLineage := newChannelLineage(latestChannelName, latestChannelFromVersion, latestChannelUntilVersion) + stableLineage := newChannelLineage(stableChannelName, stableChannelFromVersion, stableChannelUntilVersion) + lineages := []channelLineage{latestLineage, stableLineage} + + emptyChannels := generateEmptyChannels(versions) + assignChannels(lineages, emptyChannels) + + entries := generateChannelEntries(versions) + assignChannelEntries(lineages, entries) + + channels := flattenChannels(lineages) + adjustStartingEntries(channels) + return channels +} + +// generateEmptyChannels creates empty (without []ChannelEntry) channels for each unique Y-Stream version found in the provided versions. +func generateEmptyChannels(versions []*semver.Version) []Channel { + channels := make([]Channel, 0) + var previousYStream *semver.Version + + for _, v := range versions { + yStream := makeYStreamVersion(v) + if yStream.Equal(previousYStream) { + // If we saw the same Y-Stream version, we already created a channel for it. + continue + } + + channel := newChannel(yStream) + channels = append(channels, channel) + + previousYStream = yStream + } + return channels +} + +// assignChannels assigns channels to the appropriate channel lineages based on their Y-Stream versions. +func assignChannels(lineages []channelLineage, channels []Channel) { + for _, ch := range channels { + for i := range lineages { + if versionBelongsToChannelLineage(ch.yStreamVersion, lineages[i]) { + lineages[i].YStreamChannels = append(lineages[i].YStreamChannels, ch) + } + } + } +} + +// generateChannelEntries creates channel entries for each version, setting the appropriate `replaces` and `skipRange` fields. +func generateChannelEntries(versions []*semver.Version) []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) + e.setReplaces(previousEntryVersion) + e.setSkipRange(previousYStreamVersion, v) + channelEntries = append(channelEntries, e) + + previousEntryVersion = v + } + + return channelEntries +} + +// assignChannelEntries assigns channel entries to the appropriate channels within each lineage. +func assignChannelEntries(lineages []channelLineage, entries []ChannelEntry) { + for _, entry := range entries { + for i := range lineages { + if versionBelongsToChannelLineage(entry.version, lineages[i]) { + for j := range lineages[i].YStreamChannels { + if channelShouldHaveEntry(lineages[i].YStreamChannels[j], entry) { + lineages[i].YStreamChannels[j].Entries = append(lineages[i].YStreamChannels[j].Entries, entry) + } + } + lineages[i].MainChannel.Entries = append(lineages[i].MainChannel.Entries, entry) + } + } + } +} + +func versionBelongsToChannelLineage(version *semver.Version, lineage channelLineage) bool { + return lineage.FromVersion.LessThanEqual(version) && lineage.UntilVersion.GreaterThan(version) +} + +func channelShouldHaveEntry(channel Channel, entry ChannelEntry) bool { + lesserX := entry.version.Major() < channel.yStreamVersion.Major() + sameXVersion := entry.version.Major() == channel.yStreamVersion.Major() + belongsToYStream := entry.version.Minor() <= channel.yStreamVersion.Minor() + return lesserX || (sameXVersion && belongsToYStream) +} + +// flattenChannels flattens channels from multiple ChannelLineages into a single slice. +func flattenChannels(lineages []channelLineage) []Channel { + var channels []Channel + for _, lineage := range lineages { + channels = append(channels, lineage.YStreamChannels...) + channels = append(channels, lineage.MainChannel) + } + return channels +} + +// adjustStartingEntries clears the `replaces` field for the first entry in each channel according to OLM requirements. +func adjustStartingEntries(channels []Channel) { + for i := range channels { + if len(channels[i].Entries) > 0 { + channels[i].Entries[0].clearReplaces() + } + } +} + +// generateDeprecations creates an object with a list of deprecations based on the provided versions. +func generateDeprecations(versions []*semver.Version, channels []Channel, oldestSupportedVersion *semver.Version) 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 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 +} diff --git a/cmd/generate-catalog/generate_test.go b/cmd/generate-catalog/generate_test.go new file mode 100644 index 00000000..5c2059b5 --- /dev/null +++ b/cmd/generate-catalog/generate_test.go @@ -0,0 +1,671 @@ +package main + +import ( + "testing" + + semver "github.com/Masterminds/semver/v3" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" +) + +func TestReadInputFile(t *testing.T) { + tests := []struct { + name string + filePath string + expectedError string + validate func(t *testing.T, config Configuration) + }{ + { + name: "Valid input file", + filePath: "testdata/valid_input.yaml", + validate: func(t *testing.T, config Configuration) { + assert.Equal(t, "4.0.0", config.OldestSupportedVersion.String()) + assert.Len(t, config.Images, 4) + assert.Len(t, config.Versions, 4) + + assert.Equal(t, "example.com/image@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf", config.Images[0].Image) + assert.Equal(t, "3.62.0", config.Images[0].Version.String()) + + assert.Equal(t, "3.62.0", config.Versions[0].String()) + assert.Equal(t, "4.0.0", config.Versions[1].String()) + assert.Equal(t, "4.1.0", config.Versions[2].String()) + assert.Equal(t, "4.2.0", config.Versions[3].String()) + }, + }, + { + 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 image version", + filePath: "testdata/invalid_image_version.yaml", + expectedError: "invalid version", + }, + { + name: "Image reference without digest", + filePath: "testdata/image_without_digest.yaml", + expectedError: "does not include a digest", + }, + { + 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: "Non-existent file", + filePath: "testdata/non_existent.yaml", + expectedError: "failed to read testdata/non_existent.yaml", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + config, err := readInputFile(tt.filePath) + + if tt.expectedError != "" { + assert.Error(t, err) + assert.Contains(t, err.Error(), tt.expectedError) + } else { + require.NoError(t, err) + tt.validate(t, config) + } + }) + } +} + +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: "repository name must have at least one component", + }, + { + name: "Image reference without digest", + image: "example.com/image:v1.0.0", + expectedError: "does not include a digest", + }, + { + name: "Image reference without digest or tag", + image: "example.com/image", + expectedError: "does not include a digest", + }, + { + name: "Image reference with unsupported digest algorithm", + image: "example.com/image@md5:9241e37fcf7f3f88c5e944bd46b0a268", + expectedError: "unsupported digest algorithm", + }, + { + name: "Image reference with invalid sha256 digest", + image: "example.com/image@sha256:invaliddigest", + expectedError: "invalid reference format", + }, + { + name: "Image reference with not sha256 digest algorithm", + image: "example.com/image@sha384:fdbd8e75a67f29f701a4e040385e2e23986303ea10239211af907fcbb83578b3e417cb71ce646efd0819dd8c088de1bd", + expectedError: "digest algorithm is not sha256", + }, + { + name: "Image reference without registry", + image: "bare-image-name-without-registry@sha256:6cdcf20771f9c46640b466f804190d00eaf2e59caee6d420436e78b283d177bf", + expectedError: "needs the registry to be explicitly defined", + }, + { + name: "Image reference with both tag and digest", + image: "registry.example.com/repo/image:v1.0.0@sha256:7fd7595e6a61352088f9a3a345be03a6c0b9caa0bbc5ddd8c61ba1d38b2c3b8e", + expectedError: "should not contain a tag", + }, + } + + 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) + } + }) + } +} + +func TestGetAllVersions(t *testing.T) { + images := []BundleImage{ + {Image: "img1", Version: v("1.0.0")}, + {Image: "img2", Version: v("2.0.0")}, + {Image: "img3", Version: v("3.0.0")}, + } + + versions := getAllVersions(images) + + assert.Len(t, versions, 3) + assert.Equal(t, "1.0.0", versions[0].String()) + assert.Equal(t, "2.0.0", versions[1].String()) + assert.Equal(t, "3.0.0", versions[2].String()) +} + +func TestValidateVersionsAreSorted(t *testing.T) { + tests := []struct { + name string + versions []*semver.Version + expectedError string + }{ + { + name: "Sorted versions", + versions: []*semver.Version{ + v("1.0.0"), + v("1.0.1"), + v("1.1.0"), + v("2.0.0"), + v("3.0.0-pre.1"), + v("3.0.0"), + }, + }, + { + name: "Single version", + versions: []*semver.Version{ + v("1.0.0"), + }, + }, + { + name: "Empty versions", + versions: []*semver.Version{}, + }, + { + name: "Unsorted versions", + versions: []*semver.Version{ + v("2.0.0"), + v("1.0.0"), + }, + expectedError: "versions are not sorted in ascending order", + }, + { + name: "Duplicate versions", + versions: []*semver.Version{ + v("1.0.0"), + v("1.0.0"), + }, + expectedError: "versions are not sorted in ascending order", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + err := validateVersionsAreSorted(tt.versions) + + if tt.expectedError != "" { + assert.Error(t, err) + assert.Contains(t, err.Error(), tt.expectedError) + } else { + assert.NoError(t, err) + } + }) + } +} + +func TestHasGapInVersions(t *testing.T) { + tests := []struct { + name string + versions []*semver.Version + expectedError string + }{ + { + name: "No gaps in patch versions", + versions: []*semver.Version{ + v("1.0.0"), + v("1.0.1"), + v("1.0.2"), + }, + }, + { + name: "No gaps in minor versions", + versions: []*semver.Version{ + v("1.0.0"), + v("1.1.0"), + v("1.2.0"), + }, + }, + { + name: "No gaps in major versions", + versions: []*semver.Version{ + v("1.0.0"), + v("2.0.0"), + v("3.0.0"), + }, + }, + { + name: "Mixed version increments without gaps", + versions: []*semver.Version{ + v("1.0.0"), + v("1.0.1"), + v("1.1.0"), + v("2.0.0"), + }, + }, + { + name: "Gap in patch versions", + versions: []*semver.Version{ + v("1.0.0"), + v("1.0.2"), + }, + expectedError: "unexpected version sequence", + }, + { + name: "Gap in minor versions", + versions: []*semver.Version{ + v("1.0.0"), + v("1.2.0"), + }, + expectedError: "unexpected version sequence", + }, + { + name: "Gap in major versions", + versions: []*semver.Version{ + v("1.0.0"), + v("3.0.0"), + }, + expectedError: "unexpected version sequence", + }, + { + name: "Single version has no gaps", + versions: []*semver.Version{ + v("1.0.0"), + }, + }, + { + name: "Empty versions slice has no gaps", + versions: []*semver.Version{}, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + err := hasGapInVersions(tt.versions) + + if tt.expectedError != "" { + assert.Error(t, err) + assert.Contains(t, err.Error(), tt.expectedError) + } else { + assert.NoError(t, err) + } + }) + } +} + +func TestGenerateEmptyChannels(t *testing.T) { + tests := []struct { + name string + versions []*semver.Version + expectedChannels []string + }{ + { + name: "Single Y-stream versions", + versions: []*semver.Version{ + v("3.62.0"), + v("3.62.1"), + v("3.62.2"), + }, + expectedChannels: []string{"rhacs-3.62"}, + }, + { + name: "Multiple Y-stream versions", + versions: []*semver.Version{ + v("3.62.0"), + v("3.62.1"), + v("4.0.0"), + v("4.0.1"), + v("4.1.0"), + }, + expectedChannels: []string{"rhacs-3.62", "rhacs-4.0", "rhacs-4.1"}, + }, + { + name: "No versions", + versions: []*semver.Version{}, + expectedChannels: []string{}, + }, + { + name: "Major version jump", + versions: []*semver.Version{ + v("3.62.0"), + v("4.0.0"), + v("5.0.0"), + }, + expectedChannels: []string{"rhacs-3.62", "rhacs-4.0", "rhacs-5.0"}, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + channels := generateEmptyChannels(tt.versions) + assert.Equal(t, tt.expectedChannels, collectChannelNames(channels)) + }) + } +} + +func TestGenerateChannelEntries(t *testing.T) { + versions := []*semver.Version{ + v("3.62.0"), + v("3.62.1"), + v("4.0.0"), + v("4.0.1"), + v("4.0.2"), + v("4.1.0"), + v("4.1.1"), + } + entries := generateChannelEntries(versions) + + assert.Len(t, entries, len(versions)) + // Clearing `Replaces` for the starting version is done in a different function, so we expect it to be set here. + assertChannelEntry(t, entries[0], "rhacs-operator.v3.62.0", "rhacs-operator.v3.61.0", ">= 3.61.0 < 3.62.0") + assertChannelEntry(t, entries[1], "rhacs-operator.v3.62.1", "rhacs-operator.v3.62.0", ">= 3.61.0 < 3.62.1") + assertChannelEntry(t, entries[2], "rhacs-operator.v4.0.0", "rhacs-operator.v3.62.1", ">= 3.62.0 < 4.0.0") + assertChannelEntry(t, entries[3], "rhacs-operator.v4.0.1", "rhacs-operator.v4.0.0", ">= 3.62.0 < 4.0.1") + assertChannelEntry(t, entries[4], "rhacs-operator.v4.0.2", "rhacs-operator.v4.0.1", ">= 3.62.0 < 4.0.2") + assertChannelEntry(t, entries[5], "rhacs-operator.v4.1.0", "rhacs-operator.v4.0.2", ">= 4.0.0 < 4.1.0") + assertChannelEntry(t, entries[6], "rhacs-operator.v4.1.1", "rhacs-operator.v4.1.0", ">= 4.0.0 < 4.1.1") +} + +func TestGenerateDeprecations(t *testing.T) { + versions := []*semver.Version{ + v("3.62.0"), + v("3.62.1"), + v("4.0.0"), + v("4.1.0"), + } + channels := []Channel{ + channel(t, "3.62"), + {Name: "latest"}, + channel(t, "4.0"), + channel(t, "4.1"), + {Name: "stable"}, + } + oldestSupportedVersion := v("4.0.0") + + deprecations := generateDeprecations(versions, channels, oldestSupportedVersion) + + assert.Equal(t, olmDeprecationsSchema, deprecations.Schema) + assert.Equal(t, rhacsOperator, deprecations.Package) + + assert.Len(t, deprecations.Entries, 4) + assertContainsDeprecationEntry(t, deprecations.Entries, olmChannelSchema, "latest", latestChannelDeprecationMessage) + assertContainsDeprecationEntry(t, deprecations.Entries, olmChannelSchema, "rhacs-3.62", channelDeprecationMessage) + assertContainsDeprecationEntry(t, deprecations.Entries, olmBundleSchema, "rhacs-operator.v3.62.0", bundleDeprecationMessage) + assertContainsDeprecationEntry(t, deprecations.Entries, olmBundleSchema, "rhacs-operator.v3.62.1", bundleDeprecationMessage) +} + +func TestGenerateBundles(t *testing.T) { + images := []BundleImage{ + {Image: "registry.io/bundle1@sha256:abc123", Version: v("1.0.0")}, + {Image: "registry.io/bundle2@sha256:def456", Version: v("2.0.0")}, + } + + bundles := generateBundles(images) + + assert.Len(t, bundles, len(images)) + assert.Equal(t, olmBundleSchema, bundles[0].Schema) + assert.Equal(t, olmBundleSchema, bundles[1].Schema) + assert.Equal(t, "registry.io/bundle1@sha256:abc123", bundles[0].Image) + assert.Equal(t, "registry.io/bundle2@sha256:def456", bundles[1].Image) +} + +func TestAssignChannels(t *testing.T) { + latestLineage := newChannelLineage("latest", v("3.62.0"), v("4.0.0")) + stableLineage := newChannelLineage("stable", v("4.0.0"), v("9999.0.0")) + lineages := []channelLineage{latestLineage, stableLineage} + + channels := []Channel{ + channel(t, "3.62"), + channel(t, "4.0"), + channel(t, "4.1"), + } + + assignChannels(lineages, channels) + + assert.Len(t, lineages[0].YStreamChannels, 1) + assert.Equal(t, "latest", lineages[0].MainChannel.Name) + assert.Equal(t, "rhacs-3.62", lineages[0].YStreamChannels[0].Name) + + assert.Len(t, lineages[1].YStreamChannels, 2) + assert.Equal(t, "stable", lineages[1].MainChannel.Name) + assert.Equal(t, "rhacs-4.0", lineages[1].YStreamChannels[0].Name) + assert.Equal(t, "rhacs-4.1", lineages[1].YStreamChannels[1].Name) +} + +func TestAssignChannelEntries(t *testing.T) { + latestLineage := newChannelLineage("latest", v("3.62.0"), v("4.0.0")) + latestLineage.YStreamChannels = []Channel{ + channel(t, "3.62"), + } + + stableLineage := newChannelLineage("stable", v("4.0.0"), v("9999.0.0")) + stableLineage.YStreamChannels = []Channel{ + channel(t, "4.0"), + channel(t, "4.1"), + channel(t, "5.0"), + } + + entries := []ChannelEntry{ + // "latest" Entries + {version: v("3.62.0")}, + {version: v("3.62.1")}, + // "stable" Entries + {version: v("4.0.0")}, + {version: v("4.0.1")}, + {version: v("4.1.0")}, + {version: v("5.0.0")}, + {version: v("5.0.1")}, + } + + lineages := []channelLineage{latestLineage, stableLineage} + assignChannelEntries(lineages, entries) + + latestLineage = lineages[0] + stableLineage = lineages[1] + + // Verify contents of "latest" lineage + assert.Len(t, latestLineage.YStreamChannels, 1) + + assert.Equal(t, "rhacs-3.62", latestLineage.YStreamChannels[0].Name) + assertChannelContents(t, latestLineage.YStreamChannels[0], "3.62.0", "3.62.1") + + assert.Equal(t, latestChannelName, latestLineage.MainChannel.Name) + assertChannelContents(t, latestLineage.MainChannel, "3.62.0", "3.62.1") + + // Verify contents of "stable" lineage + assert.Len(t, stableLineage.YStreamChannels, 3) + + assert.Equal(t, "rhacs-4.0", stableLineage.YStreamChannels[0].Name) + assertChannelContents(t, stableLineage.YStreamChannels[0], "4.0.0", "4.0.1") + + assert.Equal(t, "rhacs-4.1", stableLineage.YStreamChannels[1].Name) + assertChannelContents(t, stableLineage.YStreamChannels[1], "4.0.0", "4.0.1", "4.1.0") + + assert.Equal(t, "rhacs-5.0", stableLineage.YStreamChannels[2].Name) + assertChannelContents(t, stableLineage.YStreamChannels[2], "4.0.0", "4.0.1", "4.1.0", "5.0.0", "5.0.1") + + assert.Equal(t, stableChannelName, stableLineage.MainChannel.Name) + assertChannelContents(t, stableLineage.MainChannel, "4.0.0", "4.0.1", "4.1.0", "5.0.0", "5.0.1") +} + +func TestFlattenChannels(t *testing.T) { + latestLineage := newChannelLineage("latest", v("3.62.0"), v("4.0.0")) + latestLineage.YStreamChannels = []Channel{ + {Name: "rhacs-3.62"}, + } + + stableLineage := newChannelLineage("stable", v("4.0.0"), v("9999.0.0")) + stableLineage.YStreamChannels = []Channel{ + channel(t, "4.0"), + channel(t, "4.1"), + } + + lineages := []channelLineage{latestLineage, stableLineage} + channels := flattenChannels(lineages) + + expectedChannels := []string{"rhacs-3.62", "latest", "rhacs-4.0", "rhacs-4.1", "stable"} + assert.Equal(t, expectedChannels, collectChannelNames(channels)) +} + +func TestClearReplacesForStartingEntries(t *testing.T) { + channels := []Channel{ + { + Name: "rhacs-3.62", + yStreamVersion: v("3.62.0"), + Entries: []ChannelEntry{ + {Name: "rhacs-operator.v3.62.0", Replaces: "rhacs-operator.v3.61.0", version: v("3.62.0")}, + }, + }, + { + Name: "rhacs-4.0", + yStreamVersion: v("4.0.0"), + Entries: []ChannelEntry{ + {Name: "rhacs-operator.v4.0.0", Replaces: "rhacs-operator.v3.62.1", version: v("4.0.0")}, + {Name: "rhacs-operator.v4.0.1", Replaces: "rhacs-operator.v4.0.0", version: v("4.0.1")}, + {Name: "rhacs-operator.v4.0.2", Replaces: "rhacs-operator.v4.0.1", version: v("4.0.2")}, + }, + }, + { + Name: "rhacs-4.1", + yStreamVersion: v("4.1.0"), + Entries: []ChannelEntry{}, + }, + } + + adjustStartingEntries(channels) + + assert.Empty(t, channels[0].Entries[0].Replaces) + + assert.Empty(t, channels[1].Entries[0].Replaces) + assert.Equal(t, "rhacs-operator.v4.0.0", channels[1].Entries[1].Replaces) + assert.Equal(t, "rhacs-operator.v4.0.1", channels[1].Entries[2].Replaces) + + assert.Len(t, channels[2].Entries, 0) +} + +func TestChannelShouldHaveEntry(t *testing.T) { + tests := []struct { + name string + channelVersion string + entryVersion string + expectedToHave bool + }{ + { + name: "Entry belongs to channel", + channelVersion: "4.0", + entryVersion: "4.0.1", + expectedToHave: true, + }, + { + name: "Entry is exact Y-stream version", + channelVersion: "4.0", + entryVersion: "4.0.0", + expectedToHave: true, + }, + { + name: "Entry is from newer Y-stream", + channelVersion: "4.0", + entryVersion: "4.1.0", + expectedToHave: false, + }, + { + name: "Entry is from older Major version", + channelVersion: "5.0", + entryVersion: "4.0.0", + expectedToHave: true, + }, + { + name: "Entry is from older Y-stream", + channelVersion: "4.1", + entryVersion: "4.0.6", + expectedToHave: true, + }, + { + name: "Entry minor equals channel minor", + channelVersion: "4.1", + entryVersion: "4.1.5", + expectedToHave: true, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + channel := channel(t, tt.channelVersion) + entry := ChannelEntry{version: v(tt.entryVersion)} + + result := channelShouldHaveEntry(channel, entry) + + assert.Equal(t, tt.expectedToHave, result) + }) + } +} + +// v is a shorthand for semver.MustParse +func v(version string) *semver.Version { + return semver.MustParse(version) +} + +func channel(t *testing.T, yStreamVersion string) Channel { + t.Helper() + assert.Regexp(t, `^\d+\.\d+$`, yStreamVersion) + return newChannel(v(yStreamVersion)) +} + +func collectChannelNames(channels []Channel) []string { + names := make([]string, len(channels)) + for i, ch := range channels { + names[i] = ch.Name + } + return names +} + +func assertChannelEntry(t *testing.T, entry ChannelEntry, name, replaces, skipRange string) { + t.Helper() + assert.Equal(t, name, entry.Name) + assert.Equal(t, replaces, entry.Replaces) + assert.Equal(t, skipRange, entry.SkipRange) +} + +func assertChannelContents(t *testing.T, channel Channel, expectedVersions ...string) { + t.Helper() + assert.Len(t, channel.Entries, len(expectedVersions)) + actualVersions := make([]string, len(channel.Entries)) + for i, entry := range channel.Entries { + actualVersions[i] = entry.version.String() + } + assert.Equal(t, expectedVersions, actualVersions) +} + +func assertContainsDeprecationEntry(t *testing.T, entries []DeprecationEntry, schema, name, message string) { + t.Helper() + found := false + for _, entry := range entries { + if entry.Reference.Name == name { + assert.Equal(t, schema, entry.Reference.Schema) + assert.Equal(t, message, entry.Message) + found = true + break + } + } + assert.True(t, found, "expected to find deprecation entry with name=%s", name) +} 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..edeebc09 --- /dev/null +++ b/cmd/generate-catalog/testdata/image_without_digest.yaml @@ -0,0 +1,6 @@ +oldest_supported_version: 4.6.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_image_version.yaml b/cmd/generate-catalog/testdata/invalid_image_version.yaml new file mode 100644 index 00000000..2d057305 --- /dev/null +++ b/cmd/generate-catalog/testdata/invalid_image_version.yaml @@ -0,0 +1,4 @@ +oldest_supported_version: 3.62.0 +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..bd787619 --- /dev/null +++ b/cmd/generate-catalog/testdata/invalid_oldest_supported_version.yaml @@ -0,0 +1,6 @@ +oldest_supported_version: "not-a-valid-semantic-version" +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_image_version.yaml b/cmd/generate-catalog/testdata/not_strict_image_version.yaml new file mode 100644 index 00000000..2848c8e2 --- /dev/null +++ b/cmd/generate-catalog/testdata/not_strict_image_version.yaml @@ -0,0 +1,4 @@ +oldest_supported_version: 3.62.0 +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..37161f53 --- /dev/null +++ b/cmd/generate-catalog/testdata/not_strict_oldest_supported_version.yaml @@ -0,0 +1,6 @@ +oldest_supported_version: 4.6 +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..abd67928 --- /dev/null +++ b/cmd/generate-catalog/testdata/valid_input.yaml @@ -0,0 +1,10 @@ +oldest_supported_version: 4.0.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..81048cf6 --- /dev/null +++ b/cmd/generate-catalog/types.go @@ -0,0 +1,280 @@ +package main + +import ( + "fmt" + + semver "github.com/Masterminds/semver/v3" +) + +const ( + rhacsOperator = "rhacs-operator" + olmTemplateSchema = "olm.template.basic" + olmPackageSchema = "olm.package" + olmChannelSchema = "olm.channel" + olmDeprecationsSchema = "olm.deprecations" + olmBundleSchema = "olm.bundle" +) + +// Input 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. +// - Images - a list of bundle images with their versions. +type Input struct { + OldestSupportedVersion string `yaml:"oldest_supported_version"` + Images []InputBundleImage `yaml:"images"` +} + +type InputBundleImage struct { + Image string `yaml:"image"` + Version string `yaml:"version"` +} + +// Configuration describes domain logic configuration for the catalog template generation. +type Configuration struct { + OldestSupportedVersion *semver.Version + Images []BundleImage + Versions []*semver.Version +} + +type BundleImage struct { + Image string + Version *semver.Version +} + +// CatalogTemplate describes catalog template structure which is used to generate the catalog YAML file. +// It has to contain entries with schema equal to: "olm.package", "olm.channel", "olm.deprecations" or "olm.bundle". +// 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"` + 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"` +} + +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 slice 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)) + } +} + +// newChannel creates 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), + } +} + +func makeYStreamVersion(v *semver.Version) *semver.Version { + return semver.New(v.Major(), v.Minor(), 0, "", "") +} + +// 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: '>= < ' +func newChannelEntry(version *semver.Version) ChannelEntry { + return ChannelEntry{ + Name: generateBundleName(version), + version: version, + } +} + +func (e *ChannelEntry) setReplaces(previousEntryVersion *semver.Version) { + e.Replaces = generateBundleName(previousEntryVersion) +} + +func (e *ChannelEntry) clearReplaces() { + e.Replaces = "" +} + +func (e *ChannelEntry) setSkipRange(skipRangeFrom, skipRangeTo *semver.Version) { + e.SkipRange = fmt.Sprintf(">= %s < %s", skipRangeFrom, skipRangeTo) +} + +// newDeprecations creates 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, + } +} + +// newChannelDeprecationEntry creates 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, + } +} + +// newBundleDeprecationEntry creates 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, + } +} + +// newBundleEntry creates 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, + } +} + +func generateBundleName(version *semver.Version) string { + return fmt.Sprintf("%s.v%s", rhacsOperator, version) +} + +// channelLineage is a helper struct for the generation time. +// It groups channels together. There's a main one, it's the most complete including all versions in this lineage, and there are Y-Stream channels that are subsets of the main one. +type channelLineage struct { + MainChannel Channel // The main channel (e.g., "stable" or "latest") which contains all versions associated with this channel lineage (e.g., stable: 4.0.x, 4.1.x, etc.) + YStreamChannels []Channel + FromVersion *semver.Version // Inclusive lower bound of versions associated with this channel lineage. + UntilVersion *semver.Version // Exclusive upper bound of versions associated with this channel lineage. +} + +func newChannelLineage(name string, from, until *semver.Version) channelLineage { + mainChannel := Channel{ + Schema: olmChannelSchema, + Name: name, + Package: rhacsOperator, + } + return channelLineage{ + MainChannel: mainChannel, + FromVersion: from, + UntilVersion: until, + } +} diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..2618ca22 --- /dev/null +++ b/go.mod @@ -0,0 +1,17 @@ +module github.com/stackrox/operator-index + +go 1.24.4 + +require ( + github.com/Masterminds/semver/v3 v3.4.0 + github.com/goccy/go-yaml v1.19.0 + github.com/stretchr/testify v1.11.1 +) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/distribution/reference v0.6.0 + github.com/opencontainers/go-digest v1.0.0 + 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..42f1e261 --- /dev/null +++ b/go.sum @@ -0,0 +1,18 @@ +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/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/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk= +github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E= +github.com/goccy/go-yaml v1.19.0 h1:EmkZ9RIsX+Uq4DYFowegAuJo8+xdX3T/2dwNPXbxEYE= +github.com/goccy/go-yaml v1.19.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA= +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/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= +github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +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