Skip to content

Commit

Permalink
Bump operator-sdk to 1.28.1 to unlock the lastest Preflight for DCI
Browse files Browse the repository at this point in the history
Signed-off-by: Tatiana Krishtop <tkrishto@redhat.com>
  • Loading branch information
tkrishtop authored and acornett21 committed May 2, 2023
1 parent bbef218 commit 7a9372e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand Down
2 changes: 1 addition & 1 deletion internal/runtime/assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7a9372e

Please sign in to comment.