Skip to content

Commit

Permalink
chore(deps): update dependency kind to v0.26.0 (#1552)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency kind to v0.26.0

* update kind and kubeversions too

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Scott Aubrey <[email protected]>
  • Loading branch information
renovate[bot] and scottaubrey authored Dec 17, 2024
1 parent ca355ca commit bcafdb3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kubectl prefix:1.30
flux2 2.4.0
stern 1.26.0
kubie 0.23.0
kind 0.25.0
kind 0.26.0
kustomize 5.5.0
yq 4.44.6
kubeconform 0.6.4
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
KubeVersion = 1.27
NextKubeVersion = 1.28
KubeVersion = 1.30
NextKubeVersion = 1.31
RenderChart = echo "> Rendering $(1)..." && yq '.spec.values' $(1) | helm template --kube-version=$(KubeVersion) -f - $(shell yq '.metadata.name' $(1)) --repo $(shell yq '.spec.chart.repository' $(1)) $(shell yq '.spec.chart.name' $(1)) > /dev/null && echo ">> OK"
DryRunApply = echo "> Dry-run applying $(1)..." && kubectl apply -f $(1) --validate=true --dry-run=client > /dev/null && echo ">> OK"
DryRunApplyChart = echo "> Dry-run applying $(1)..." && yq '.spec.values' $(1) | helm template --kube-version=$(KubeVersion) -f - $(shell yq '.metadata.name' $(1)) --repo $(shell yq '.spec.chart.repository' $(1)) $(shell yq '.spec.chart.name' $(1)) | kubectl apply -f - --validate=true --dry-run=client > /dev/null && echo ">> OK"
Expand Down
2 changes: 1 addition & 1 deletion tests/run_cluster_in_kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ branch=${1:-master}
echo "Building KinD cluster using '$branch' branch"

kind delete cluster --name "$name"
kind create cluster --name "$name" --image=kindest/node:v1.28.9
kind create cluster --name "$name" --image=kindest/node:v1.30.8

# Install Flux with toleration to run controllers on the real node
kubectl create ns flux
Expand Down

0 comments on commit bcafdb3

Please sign in to comment.