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

Add k8s version number for kind cluster #46

Merged
merged 1 commit into from
Dec 23, 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
3 changes: 2 additions & 1 deletion .github/workflows/periodic_conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

env:
KIND_VERSION: v0.20.0
K8S_VERSION: v1.29.0

jobs:
test:
Expand All @@ -28,7 +29,7 @@ jobs:

- name: Create kind cluster with three nodes
run: |
cat <<EOF | kind create cluster --config=-
cat <<EOF | kind create cluster --image kindest/node:${K8S_VERSION} --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/periodic_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

env:
KIND_VERSION: v0.20.0
K8S_VERSION: v1.29.0

jobs:
test:
Expand All @@ -28,7 +29,7 @@ jobs:

- name: Create kind cluster with three nodes
run: |
cat <<EOF | kind create cluster --config=-
cat <<EOF | kind create cluster --image kindest/node:${K8S_VERSION} --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on: push

env:
KIND_VERSION: v0.20.0
K8S_VERSION: v1.29.0

jobs:
test:
Expand All @@ -30,7 +31,7 @@ jobs:

- name: Create kind cluster
run: |
kind create cluster
kind create cluster --image kindest/node:${K8S_VERSION}

- name: Set up kubectl
run: |
Expand Down
Loading