From 7a9372e8e0348399c71465faaeba13662c11464a Mon Sep 17 00:00:00 2001 From: Tatiana Krishtop Date: Mon, 1 May 2023 12:48:31 +0200 Subject: [PATCH] Bump operator-sdk to 1.28.1 to unlock the lastest Preflight for DCI Signed-off-by: Tatiana Krishtop --- Dockerfile | 2 +- README.md | 2 +- Vagrantfile | 2 +- docs/dev/README.md | 2 +- internal/runtime/assets.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b928b3ac..f47c658e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ LABEL ARCH=${ARCH} LABEL OS=${OS} # Define versions for dependencies -ARG OPERATOR_SDK_VERSION=1.28.0 +ARG OPERATOR_SDK_VERSION=1.28.1 # Add preflight binary COPY --from=builder /go/src/preflight/preflight /usr/local/bin/preflight diff --git a/README.md b/README.md index 6c1a9d09..7e194449 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ functional, and in your path. | Name | Tool cli | Minimum version | |----------------- |:-----------------:|----------------:| -| OperatorSDK | `operator-sdk` | v1.28.0 | +| OperatorSDK | `operator-sdk` | v1.28.1 | See our [Vagrantfile](Vagrantfile) for more information on setting up a development environment. Some checks may also require access to an OpenShift diff --git a/Vagrantfile b/Vagrantfile index 05fca628..62f0e5f2 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -32,7 +32,7 @@ Vagrant.configure("2") do |config| rm oc.tar.gz export ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac) export OS=$(uname | awk '{print tolower($0)}') - export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.28.0 + export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.28.1 curl -LO ${OPERATOR_SDK_DL_URL}/operator-sdk_${OS}_${ARCH} chmod +x operator-sdk_${OS}_${ARCH} && sudo mv operator-sdk_${OS}_${ARCH} /usr/local/bin/operator-sdk echo "PATH=/usr/local/go/bin:$PATH" >> /home/vagrant/.bashrc diff --git a/docs/dev/README.md b/docs/dev/README.md index 9ee0ebe1..3628bcc1 100644 --- a/docs/dev/README.md +++ b/docs/dev/README.md @@ -15,7 +15,7 @@ functional, and in your path. | Name | Tool cli | Minimum version | |----------------- |:-----------------:|----------------:| -| OperatorSDK | `operator-sdk` | v1.28.0 | +| OperatorSDK | `operator-sdk` | v1.28.1 | | OpenShift Client | `oc` | v4.7.19 | | Podman | `podman` | v3.0 | diff --git a/internal/runtime/assets.go b/internal/runtime/assets.go index 154a8a81..15e3f348 100644 --- a/internal/runtime/assets.go +++ b/internal/runtime/assets.go @@ -21,7 +21,7 @@ import ( // to be used outside of this package. var images = map[string]string{ // operator policy, operator-sdk scorecard - "scorecard": "quay.io/operator-framework/scorecard-test:v1.28.0", + "scorecard": "quay.io/operator-framework/scorecard-test:v1.28.1", } // imageList takes the images mapping and represents them using just