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

Update Kubernetes to v1.30.0 #10

Merged
merged 1 commit into from
May 14, 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
2 changes: 2 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
run: make tools
- name: Create cluster
run: make up
env:
KIND_NODE_IMAGE: ghcr.io/fluxcd/kindest/node:v1.30.0-amd64
- name: Push modules
run: make timoni-push
- name: Install Flux
Expand Down
2 changes: 1 addition & 1 deletion RESULTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ registry at the same time.
**Specs**

- GitHub hosted-runner (ubuntu-latest-16-cores)
- Kubernetes Kind (v1.28.0 / 3 nodes)
- Kubernetes Kind (3 nodes)
- Flux source-controller (1CPU / 1Gi / concurrency 10)
- Flux kustomize-controller (2CPU / 1Gi / concurrency 20)
- Flux helm-controller (2CPU / 1Gi / concurrency 10)
Expand Down
5 changes: 5 additions & 0 deletions scripts/kind-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ reg_cluster_port='5000'
node_image='kindest/node:v1.29.2'

install_cluster() {

if [[ -n "${KIND_NODE_IMAGE}" ]]; then
node_image="${KIND_NODE_IMAGE}"
fi

cat <<EOF | kind create cluster --name ${CLUSTER_NAME} --wait 5m --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
Expand Down
Loading