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

Infinispan 14.0.32 #2151

Merged
merged 2 commits into from
Sep 25, 2024
Merged
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
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ make bundle-build bundle-push VERSION=<latest-version> IMG=<operator-image> BUND
To create an Operator release perform the following:

1. Update Operand references:
- `SERVER_TAGS` in `Jenkinsfile` and `scripts/ci/kind.sh` to include the image tage all supported Operands
- `SERVER_TAGS` in `scripts/ci/kind.sh` to include the image tage all supported Operands
- `INFINISPAN_OPERAND_VERSIONS` json in `config/manager/manager.yaml` includes the latest Infinispan Server releases. Do not use the floating tags for an Operand image, e.g. `13.0`.
- `server_image_version` in `documentation/asciidoc/topics/attributes/community-attributes.adoc` to point to the latest Operand version
- `test/e2e/utils/common.go` VersionManager JSON to include the latest Operand
Expand Down Expand Up @@ -145,8 +145,6 @@ Cross-Site tests require you to create two k8s Kind clusters or utilize already
$ source scripts/ci/configure-xsite.sh $KIND_VERSION $METALLB_VERSION
```

Actual `$KIND_VERSION` and `$METALLB_VERSION` values can be explored inside the `Jenkinsfile` file

To test locally in running Kind clusters, run:
```
$ go test -v ./test/e2e/xsite/ -timeout 30m
Expand Down
4 changes: 4 additions & 0 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ spec:
{
"upstream-version": "14.0.27",
"image": "quay.io/infinispan/server:14.0.27.Final"
},
{
"upstream-version": "14.0.32",
"image": "quay.io/infinispan/server:14.0.32.Final"
},
{
"upstream-version": "15.0.0",
Expand Down
1 change: 1 addition & 0 deletions documentation/asciidoc/topics/ref_supported_versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ You can upgrade the version of your cluster between supported {brandname} versio
14.0.21
14.0.24
14.0.27
14.0.32
15.0.0
15.0.3
15.0.4
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Modified version of the script found at https://kind.sigs.k8s.io/docs/user/local-registry/#create-a-cluster-and-registry
set -o errexit

SERVER_TAGS=${SERVER_TAGS:-'14.0.1.Final 14.0.6.Final 14.0.9.Final 14.0.13.Final 14.0.17.Final 14.0.19.Final 14.0.20.Final 14.0.21.Final 14.0.24.Final 14.0.27.Final 14.0 15.0.0.Final 15.0.3.Final 15.0.4.Final 15.0.5.Final 15.0.8.Final 15.0'}
SERVER_TAGS=${SERVER_TAGS:-'14.0.1.Final 14.0.6.Final 14.0.9.Final 14.0.13.Final 14.0.17.Final 14.0.19.Final 14.0.20.Final 14.0.21.Final 14.0.24.Final 14.0.27.Final 14.0.32.Final 14.0 15.0.0.Final 15.0.3.Final 15.0.4.Final 15.0.5.Final 15.0.8.Final 15.0'}
DOCKER_REGISTRY_IMAGE=${DOCKER_REGISTRY_IMAGE:-"quay.io/infinispan-test/registry:2"}
KINDEST_IMAGE=${KINDEST_IMAGE:-"quay.io/infinispan-test/kindest-node"}
KINDEST_NODE_VERSION=${KINDEST_NODE_VERSION:-'v1.25.16'}
Expand Down
4 changes: 4 additions & 0 deletions test/e2e/utils/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ var VersionManager = func() *version.Manager {
"downstream-version": "0.2.9-1",
"upstream-version": "14.0.27",
"image": "quay.io/infinispan/server:14.0.27.Final"
},{
"downstream-version": "0.2.10-1",
"upstream-version": "14.0.32",
"image": "quay.io/infinispan/server:14.0.32.Final"
},{
"downstream-version": "0.3.0-1",
"upstream-version": "15.0.0",
Expand Down
Loading