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

Bump versions for k8s 1.24 #5843

Merged
merged 29 commits into from
Jun 10, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
23ceb3c
Bump versions for k8s 1.24
asmacdo Jun 8, 2022
0cf7b68
updates to resolve test failures
everettraven Jun 9, 2022
1cf485a
update changelog
everettraven Jun 9, 2022
668b932
update sanity go version
everettraven Jun 9, 2022
b896866
update to go 1.18
everettraven Jun 9, 2022
c86b4f7
updates for golangci-lint
everettraven Jun 9, 2022
5fcb47a
update some go1.18 lint issues
everettraven Jun 9, 2022
20b71e9
commit go.mod
everettraven Jun 9, 2022
c192f3c
update more lint problems
everettraven Jun 9, 2022
0b0083c
update java plugin
everettraven Jun 9, 2022
4c9c554
Merge branch 'master' into 2142-bump-k8s124
everettraven Jun 9, 2022
cdd2ae2
update go.mod
everettraven Jun 9, 2022
b053e48
update actions to use go 1.18
everettraven Jun 9, 2022
b7b0924
update changelog
everettraven Jun 9, 2022
3be29e0
update changelog as per review
everettraven Jun 9, 2022
3692d27
update changelog
everettraven Jun 9, 2022
2ff0f7a
update changelog
everettraven Jun 9, 2022
1974fe0
update changelog
everettraven Jun 9, 2022
4ad8f19
update changelog
everettraven Jun 9, 2022
e3cca5f
update changelog
everettraven Jun 9, 2022
d7cde37
updates to changelog per reviews
everettraven Jun 9, 2022
1ccecca
more changelog
everettraven Jun 9, 2022
b30c7a8
address nits
everettraven Jun 9, 2022
d3af0c6
update opm
everettraven Jun 10, 2022
7493c7a
update Go in docker images
everettraven Jun 10, 2022
729873c
update go in docs
everettraven Jun 10, 2022
9e71934
add newline to changelog
everettraven Jun 10, 2022
9a5fbdd
add opm detailed entries
everettraven Jun 10, 2022
c7bb4f8
fix changelog failure
everettraven Jun 10, 2022
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
14 changes: 14 additions & 0 deletions changelog/fragments/k8s-1.24-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,17 @@ entries:
- description: >
For Helm Hybrid (hybrid.helm/v1-alpha) language based operator: Upgrade dependency from `v0.0.10` to `v0.0.11`. [More info](https://github.com/operator-framework/helm-operator-plugins/releases)
breaking: false

- description: >
For Go (go/v3, go/v2), Ansible (ansible/v1), Helm (helm/v1), and Helm Hybrid (hybrid.helm/v1-alpha) language based operators: Bump OPM version from `v1.19.1` to `v1.23.0`
camilamacedo86 marked this conversation as resolved.
Show resolved Hide resolved
everettraven marked this conversation as resolved.
Show resolved Hide resolved
breaking: false
migration:
header: For Go (go/v3, go/v2), Ansible (ansible/v1), Helm (helm/v1), and Helm Hybrid (hybrid.helm/v1-alpha) language based operators - Bump OPM version from `v1.19.1` to `v1.23.0`
body: |
To update your project to use OPM `v1.23.0`:

1. In the `Makefile`:

- Replace `curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.19.1/$${OS}-$${ARCH}-opm` with `curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23.0/$${OS}-$${ARCH}-opm`

2. Run `make opm`
2 changes: 1 addition & 1 deletion internal/plugins/manifests/v2/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (

// Version of `opm` to download and use for building index images.
// This version's release artifacts *must* contain a binary for multiple arches; certain releases do not.
const opmVersion = "v1.19.1"
const opmVersion = "v1.23.0"

const filePath = "Makefile"

Expand Down
2 changes: 1 addition & 1 deletion testdata/ansible/memcached-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ ifeq (,$(shell which opm 2>/dev/null))
@{ \
set -e ;\
mkdir -p $(dir $(OPM)) ;\
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.19.1/$(OS)-$(ARCH)-opm ;\
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23.0/$(OS)-$(ARCH)-opm ;\
chmod +x $(OPM) ;\
}
else
Expand Down
2 changes: 1 addition & 1 deletion testdata/go/v2/memcached-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ ifeq (,$(shell which opm 2>/dev/null))
set -e ;\
mkdir -p $(dir $(OPM)) ;\
OS=$(shell go env GOOS) && ARCH=$(shell go env GOARCH) && \
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.19.1/$${OS}-$${ARCH}-opm ;\
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23.0/$${OS}-$${ARCH}-opm ;\
chmod +x $(OPM) ;\
}
else
Expand Down
2 changes: 1 addition & 1 deletion testdata/go/v3/memcached-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ ifeq (,$(shell which opm 2>/dev/null))
set -e ;\
mkdir -p $(dir $(OPM)) ;\
OS=$(shell go env GOOS) && ARCH=$(shell go env GOARCH) && \
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.19.1/$${OS}-$${ARCH}-opm ;\
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23.0/$${OS}-$${ARCH}-opm ;\
chmod +x $(OPM) ;\
}
else
Expand Down
2 changes: 1 addition & 1 deletion testdata/helm/memcached-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ ifeq (,$(shell which opm 2>/dev/null))
@{ \
set -e ;\
mkdir -p $(dir $(OPM)) ;\
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.19.1/$(OS)-$(ARCH)-opm ;\
curl -sSLo $(OPM) https://github.com/operator-framework/operator-registry/releases/download/v1.23.0/$(OS)-$(ARCH)-opm ;\
chmod +x $(OPM) ;\
}
else
Expand Down