Skip to content

Commit f76581b

Browse files
committed
Use correct OPM version with 3 parts
1 parent 262dc19 commit f76581b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

internal/plugins/manifests/v2/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232

3333
// Version of `opm` to download and use for building index images.
3434
// This version's release artifacts *must* contain a binary for multiple arches; certain releases do not.
35-
const opmVersion = "v1.18"
35+
const opmVersion = "v1.18.0"
3636

3737
const filePath = "Makefile"
3838

testdata/ansible/memcached-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ ifeq (,$(shell which opm 2>/dev/null))
140140
@{ \
141141
set -e ;\
142142
mkdir -p $(dir $(OPM)) ;\
143-
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18/$(OS)-$(ARCH)-opm ;\
143+
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18.0/$(OS)-$(ARCH)-opm ;\
144144
chmod +x $(OPM) ;\
145145
}
146146
else

testdata/go/v2/memcached-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ ifeq (,$(shell which opm 2>/dev/null))
169169
set -e ;\
170170
mkdir -p $(dir $(OPM)) ;\
171171
OS=$(shell go env GOOS) && ARCH=$(shell go env GOARCH) && \
172-
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18/$${OS}-$${ARCH}-opm ;\
172+
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18.0/$${OS}-$${ARCH}-opm ;\
173173
chmod +x $(OPM) ;\
174174
}
175175
else

testdata/go/v3/memcached-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ ifeq (,$(shell which opm 2>/dev/null))
169169
set -e ;\
170170
mkdir -p $(dir $(OPM)) ;\
171171
OS=$(shell go env GOOS) && ARCH=$(shell go env GOARCH) && \
172-
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18/$${OS}-$${ARCH}-opm ;\
172+
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18.0/$${OS}-$${ARCH}-opm ;\
173173
chmod +x $(OPM) ;\
174174
}
175175
else

testdata/helm/memcached-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ ifeq (,$(shell which opm 2>/dev/null))
140140
@{ \
141141
set -e ;\
142142
mkdir -p $(dir $(OPM)) ;\
143-
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18/$(OS)-$(ARCH)-opm ;\
143+
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18.0/$(OS)-$(ARCH)-opm ;\
144144
chmod +x $(OPM) ;\
145145
}
146146
else

website/content/en/docs/upgrading-sdk-version/v1.6.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ ifeq (,$(shell which opm 2>/dev/null))
178178
@{ \
179179
set -e ;\
180180
mkdir -p $(dir $(OPM)) ;\
181-
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18/$(OS)-$(ARCH)-opm ;\
181+
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18.0/$(OS)-$(ARCH)-opm ;\
182182
chmod +x $(OPM) ;\
183183
}
184184
else

website/content/en/docs/upgrading-sdk-version/v1.6.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ ifeq (,$(shell which opm 2>/dev/null))
178178
@{ \
179179
set -e ;\
180180
mkdir -p $(dir $(OPM)) ;\
181-
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18/$(OS)-$(ARCH)-opm ;\
181+
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.18.0/$(OS)-$(ARCH)-opm ;\
182182
chmod +x $(OPM) ;\
183183
}
184184
else

0 commit comments

Comments
 (0)