Skip to content

Commit 462c4a5

Browse files
authored
Make sure correct version of operator-sdk is always used (#728)
* Make sure the correct version of operator-sdk is always used This PR installs operator-sdk to ./bin which makes sure that always correct version of operator-sdk is used. Signed-off-by: Pavol Loffay <[email protected]> * Create dir Signed-off-by: Pavol Loffay <[email protected]> * Fix Signed-off-by: Pavol Loffay <[email protected]>
1 parent d4fe9bb commit 462c4a5

File tree

4 files changed

+7
-22
lines changed

4 files changed

+7
-22
lines changed

.github/workflows/continuous-integration.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ jobs:
2525
- name: "install kustomize"
2626
run: ./hack/install-kustomize.sh
2727

28-
- uses: jpkrohling/[email protected]
29-
with:
30-
operator-sdk-version: v1.17.0
31-
3228
- name: "basic checks"
3329
run: make ci
3430

.github/workflows/release.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ jobs:
2121
- name: "install kustomize"
2222
run: ./hack/install-kustomize.sh
2323

24-
- uses: jpkrohling/[email protected]
25-
with:
26-
operator-sdk-version: v1.17.0
27-
2824
- name: "generate release resources"
2925
run: make release-artifacts IMG_PREFIX="ghcr.io/open-telemetry/opentelemetry-operator"
3026

.github/workflows/scorecard.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,5 @@ jobs:
3939
- name: "wait until cluster is ready"
4040
run: kubectl wait --timeout=5m --for=condition=available deployment/coredns -n kube-system
4141

42-
- uses: jpkrohling/[email protected]
43-
with:
44-
operator-sdk-version: v1.17.0
45-
4642
- name: "run scorecard test"
4743
run: make scorecard-tests

Makefile

+7-10
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ endif
4747
KUBE_VERSION ?= 1.21
4848
KIND_CONFIG ?= kind-$(KUBE_VERSION).yaml
4949

50+
OPERATOR_SDK_VERSION ?= 1.17.0
51+
5052
CERTMANAGER_VERSION ?= 1.6.1
5153

5254
ifndef ignore-not-found
@@ -152,7 +154,7 @@ prepare-e2e: kuttl set-test-image-vars set-image-controller container start-kind
152154
$(KUSTOMIZE) build config/crd -o tests/_build/crds/
153155

154156
.PHONY: scorecard-tests
155-
scorecard-tests:
157+
scorecard-tests: operator-sdk
156158
$(OPERATOR_SDK) scorecard -w=5m bundle || (echo "scorecard test failed" && exit 1)
157159

158160
.PHONY: set-test-image-vars
@@ -263,20 +265,15 @@ else
263265
KIND=$(shell which kind)
264266
endif
265267

268+
OPERATOR_SDK = $(shell pwd)/bin/operator-sdk
266269
.PHONY: operator-sdk
267270
operator-sdk:
268-
ifeq (, $(shell which operator-sdk))
269271
@{ \
270272
set -e ;\
271-
echo "" ;\
272-
echo "ERROR: operator-sdk not found." ;\
273-
echo "Please check https://sdk.operatorframework.io for installation instructions and try again." ;\
274-
echo "" ;\
275-
exit 1 ;\
273+
[ -d bin ] || mkdir bin ;\
274+
curl -L -o $(OPERATOR_SDK) https://github.com/operator-framework/operator-sdk/releases/download/v${OPERATOR_SDK_VERSION}/operator-sdk_`go env GOOS`_`go env GOARCH`;\
275+
chmod +x $(OPERATOR_SDK) ;\
276276
}
277-
else
278-
OPERATOR_SDK=$(shell which operator-sdk)
279-
endif
280277

281278
# Generate bundle manifests and metadata, then validate generated files.
282279
.PHONY: bundle

0 commit comments

Comments
 (0)