Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 doc/supported_integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ the last minor version that supports it (v1.16).

## Kubernetes

The SPIRE project currently supports Kubernetes 1.18 through 1.20. Later
The SPIRE project currently supports Kubernetes 1.18 through 1.21. Later
versions may also work but are not explicitly exercised by integration tests.
4 changes: 3 additions & 1 deletion test/integration/common
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,14 @@ download-kubectl() {
}

start-kind-cluster() {
K8SIMAGE=kindest/node:v1.21.1@sha256:fae9a58f17f18f06aeac9772ca8b5ac680ebbed985e266f711d936e91d113bad

local kind_path=$1
local kind_name=$2
local kind_config_path=$3

log-info "starting cluster..."
"${kind_path}" create cluster --name "${kind_name}" --config "${kind_config_path}" || fail-now "unable to create cluster"
"${kind_path}" create cluster --name "${kind_name}" --config "${kind_config_path}" --image "${K8SIMAGE}" || fail-now "unable to create cluster"
}

load-images() {
Expand Down