Skip to content

Commit

Permalink
Merge pull request #10 from fluxcd/kubernetes-v1.3.0
Browse files Browse the repository at this point in the history
Update Kubernetes to v1.30.0
  • Loading branch information
stefanprodan authored May 14, 2024
2 parents a202726 + fdd1fed commit edef232
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
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

0 comments on commit edef232

Please sign in to comment.