Skip to content

Commit 32401d1

Browse files
authored
Update OLM bindata to add OLM v0.23.1 (#6283)
Signed-off-by: Catherine Chan-Tse <cchantse@redhat.com>
1 parent 12cbf79 commit 32401d1

File tree

5 files changed

+65
-54
lines changed

5 files changed

+65
-54
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ generate: build # Generate CLI docs and samples
4343
go generate ./...
4444

4545
.PHONY: bindata
46-
OLM_VERSIONS = 0.20.0 0.21.2 0.22.0
46+
OLM_VERSIONS = 0.21.2 0.22.0 0.23.1
4747
bindata: ## Update project bindata
4848
./hack/generate/olm_bindata.sh $(OLM_VERSIONS)
4949
$(MAKE) fix

internal/bindata/olm/manifests.go

Lines changed: 61 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/bindata/olm/versions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package olm
1616

1717
var availableVersions = map[string]struct{}{
18-
"0.20.0": {},
1918
"0.21.2": {},
2019
"0.22.0": {},
20+
"0.23.1": {},
2121
}
2222

2323
// HasVersion returns whether version maps to released OLM manifests as bindata.

internal/testutils/olm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
)
2727

2828
const (
29-
OlmVersionForTestSuite = "0.22.0"
29+
OlmVersionForTestSuite = "0.23.1"
3030
)
3131

3232
var makefilePackagemanifestsFragment = `

website/content/en/docs/overview/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ By project type (replace `${IMAGE_VERSION}` with base image version in your proj
9292

9393
Operator SDK officially supports the latest 3 minor versions of OLM present at the time of a given Operator SDK release. These versions of OLM manifests are packaged with the SDK binary in the form of `bindata` to support low-latency installations of OLM with [`operator-sdk olm install`][olm-install-cmd]. Any other version installed with this command may work but is not tested nor officially supported.
9494

95-
Currently, the officially supported OLM Versions are: 0.20.0, 0.21.2, and 0.22.0
95+
Currently, the officially supported OLM Versions are: 0.21.2, 0.22.0, and 0.23.1
9696

9797
## Platform support
9898

0 commit comments

Comments
 (0)