Skip to content

Commit 0370f30

Browse files
modified version for OLM (#4995)
* modified version for OLM * modified olm.go file from etstutils Signed-off-by: laxmikantbpandhare <[email protected]>
1 parent 60d25c5 commit 0370f30

File tree

5 files changed

+28
-28
lines changed

5 files changed

+28
-28
lines changed

Makefile

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

4444
.PHONY: bindata
45-
OLM_VERSIONS = 0.16.1 0.17.0 0.18.1
45+
OLM_VERSIONS = 0.16.1 0.17.0 0.18.2
4646
bindata: ## Update project bindata
4747
./hack/generate/olm_bindata.sh $(OLM_VERSIONS)
4848
$(MAKE) fix

internal/bindata/olm/manifests.go

Lines changed: 24 additions & 24 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
@@ -17,7 +17,7 @@ package olm
1717
var availableVersions = map[string]struct{}{
1818
"0.16.1": {},
1919
"0.17.0": {},
20-
"0.18.1": {},
20+
"0.18.2": {},
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.18.1"
29+
OlmVersionForTestSuite = "0.18.2"
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 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.16.1, 0.17.0 and 0.18.1.
95+
Currently, the officially supported OLM Versions are: 0.16.1, 0.17.0 and 0.18.2.
9696

9797
## Platform support
9898

0 commit comments

Comments
 (0)