diff --git a/Dockerfile b/Dockerfile index fd2a310c..401d0617 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,7 @@ LABEL OS=${OS} # Define versions for dependencies ARG OPENSHIFT_CLIENT_VERSION=4.7.19 -ARG OPERATOR_SDK_VERSION=1.22.2 +ARG OPERATOR_SDK_VERSION=1.26.0 # Add preflight binary COPY --from=builder /go/src/preflight/preflight /usr/local/bin/preflight diff --git a/README.md b/README.md index b41978a9..e38778dc 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ functional, and in your path. | Name | Tool cli | Minimum version | |----------------- |:-----------------:|----------------:| -| OperatorSDK | `operator-sdk` | v1.22.2 | +| OperatorSDK | `operator-sdk` | v1.26.0 | | OpenShift Client | `oc` | v4.7.19 | See our [Vagrantfile](Vagrantfile) for more information on setting up a diff --git a/Vagrantfile b/Vagrantfile index 67fcb590..25c2a38e 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.22.2 + export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.26.0 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 d7849446..bc05730c 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.22.2 | +| OperatorSDK | `operator-sdk` | v1.26.0 | | OpenShift Client | `oc` | v4.7.19 | | Podman | `podman` | v3.0 | diff --git a/internal/runtime/assets.go b/internal/runtime/assets.go index a3255a1c..8831b2f1 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.22.2", + "scorecard": "quay.io/operator-framework/scorecard-test:v1.26.0", } // imageList takes the images mapping and represents them using just