Skip to content

Commit

Permalink
Fix kind version
Browse files Browse the repository at this point in the history
  • Loading branch information
HoustonPutman committed Aug 28, 2023
1 parent 57015ec commit b2502fc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
strategy:
matrix:
go-version: [ '1.20' ]
kube-version: [ 'v1.24.16' ]
kube-version: [ 'v1.24.15' ]
solr-version: [ '9' ] # [ '8', '9' ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/e2e-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ $ make e2e-tests TEST_SEED=89724023 SOLR_IMAGE=apache/solr-nightly:10.0.0-SNAPSH
Default is `solr:8.11`.
- **KUBERETES_VERSION** - A full Kubernetes version, starting with `v`, to use when creating the KinD Cluster.
To find a list of all possible versions, check the [KinD Node Docker tags](https://hub.docker.com/r/kindest/node/tags).
Default is `v1.24.16`.
Default is `v1.24.15`.

### Filtering tests

Expand Down
4 changes: 2 additions & 2 deletions hack/release/smoke_test/test_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Test the release candidate in a Kind cluster
-l Base location of the staged artifacts. Can be a URL or relative or absolute file path.
-i Solr Operator docker image to use (Optional, defaults to apache/solr-operator:<version>)
-g GPG Key (fingerprint) used to sign the artifacts (Optional, if not provided then the helm chart will not be verified)
-k Kubernetes Version to test with (full tag, e.g. v1.24.16) (Optional, defaults to a compatible version)
-k Kubernetes Version to test with (full tag, e.g. v1.24.15) (Optional, defaults to a compatible version)
-t Full solr image, or image tag (for the official Solr image), to test with (e.g. apache/solr-nightly:9.0.0, 8.11). (Optional, defaults to a compatible version)
EOF
}
Expand Down Expand Up @@ -74,7 +74,7 @@ if [[ -z "${LOCATION:-}" ]]; then
echo "Specify an base artifact location -l, or through the LOCATION env var" >&2 && exit 1
fi
if [[ -z "${KUBERNETES_VERSION:-}" ]]; then
KUBERNETES_VERSION="v1.24.16"
KUBERNETES_VERSION="v1.24.15"
fi
if [[ -z "${SOLR_IMAGE:-}" ]]; then
SOLR_IMAGE="${SOLR_VERSION:-9}"
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/manage_e2e_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ if [[ -z "${OPERATOR_IMAGE:-}" ]]; then
echo "Specify a Docker image for the Solr Operator through -i, or through the OPERATOR_IMAGE env var" >&2 && exit 1
fi
if [[ -z "${KUBERNETES_VERSION:-}" ]]; then
KUBERNETES_VERSION="v1.24.16"
KUBERNETES_VERSION="v1.24.15"
fi
if [[ -z "${SOLR_IMAGE:-}" ]]; then
SOLR_IMAGE="${SOLR_VERSION:-8.11}"
Expand Down

0 comments on commit b2502fc

Please sign in to comment.