Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move to Operator-SDK 1.34.1 bumping OLM and K8s versions #1139

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.33.0 |
| OperatorSDK | `operator-sdk` | v1.34.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.33.0
export OPERATOR_SDK_DL_URL=https://github.com/operator-framework/operator-sdk/releases/download/v1.34.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.33.0 |
| OperatorSDK | `operator-sdk` | v1.34.1 |
| OpenShift Client | `oc` | v4.10.0 |
| Podman | `podman` | v3.0 |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var _ = Describe("ScorecardBasicCheck", func() {
"kind": "Test",
"apiVersion": "scorecard.operatorframework.io/v1alpha3",
"spec": {
"image": "quay.io/operator-framework/scorecard-test:latest",
"image": "quay.io/operator-framework/scorecard-test:1.34.1",
"entrypoint": [
"scorecard-test",
"olm-bundle-validation"
Expand Down
2 changes: 1 addition & 1 deletion internal/policy/operator/scorecard_olm_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var _ = Describe("ScorecardBasicCheck", func() {
"kind": "Test",
"apiVersion": "scorecard.operatorframework.io/v1alpha3",
"spec": {
"image": "quay.io/operator-framework/scorecard-test:latest",
"image": "quay.io/operator-framework/scorecard-test:1.34.1",
"entrypoint": [
"scorecard-test",
"olm-bundle-validation"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ metadata:
capabilities: Basic Install
createdAt: "2022-12-16T20:14:33Z"
operators.openshift.io/infrastructure-features: '["Disconnected"]'
operators.operatorframework.io/builder: operator-sdk-v1.33.0
operators.operatorframework.io/builder: operator-sdk-v1.34.1
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
name: simple-disconnected-operator.v0.0.1
namespace: placeholder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ annotations:
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: simple-disconnected-operator
operators.operatorframework.io.bundle.channels.v1: alpha
operators.operatorframework.io.metrics.builder: operator-sdk-v1.33.0
operators.operatorframework.io.metrics.builder: operator-sdk-v1.34.1
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3

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.33.0",
"scorecard": "quay.io/operator-framework/scorecard-test:v1.34.1",
}

// imageList takes the images mapping and represents them using just
Expand Down