Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Update k8s version for 1.28 compatibility #3684

Merged
merged 1 commit into from
Nov 1, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ MSG="parameter missing."
HOME=${HOME:?$MSG}

KIND_VERSION="v${KIND_VERSION:-"0.20.0"}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kind is v1.27.3 I think this upgrade

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here it says the latest version for kind is 0.20.0, maybe you are mixing up with the kindest version for the cluster? @gizas

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yes maybe seen the node version in my local tests. So Ignore this comment

KUBERNETES_VERSION="${KUBERNETES_VERSION:-"1.27.3"}"
KUBERNETES_VERSION="${KUBERNETES_VERSION:-"1.28.0"}"

KUBECTL_CMD="${HOME}/bin/kubectl"

Expand Down
2 changes: 1 addition & 1 deletion e2e/_suites/kubernetes-autodiscover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ This is an example of the optional configuration:
export ELASTIC_AGENT_VERSION=7.12.0 # version of Elastic Agent to use
export GITHUB_CHECK_SHA1=0123456789 # to select snapshots built by beats-ci
export KIND_VERSION="0.20.0" # version of kind
export KUBERNETES_VERSION="1.27.3" # version of the cluster to be passed to kind
export KUBERNETES_VERSION="1.28.0" # version of the cluster to be passed to kind
```

3. Install dependencies.
Expand Down
2 changes: 1 addition & 1 deletion internal/config/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- docker
- kind (>= 0.20.0)
- kubectl (>= 1.27.3)
- kubectl (>= 1.28.0)

## Deployment

Expand Down