Skip to content

Commit 5b4892c

Browse files
authored
🐛 Dev env bug fixes (#1599)
1 parent 95b628c commit 5b4892c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ wait-and-get-secret:
196196
install-cilium-in-wl-cluster: $(HELM)
197197
# Deploy cilium
198198
$(HELM) repo add cilium https://helm.cilium.io/
199-
$(HELM) repo update cilium \
199+
$(HELM) repo update cilium
200+
KUBECONFIG=$(WORKER_CLUSTER_KUBECONFIG) $(HELM) upgrade --install cilium cilium/cilium \
200201
--namespace kube-system \
201202
-f templates/cilium/cilium.yaml
202203

hack/kind-dev.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ set -o errexit
1818
set -o pipefail
1919
set -x
2020

21-
K8S_VERSION=v1.31.6
21+
# See `crane ls ghcr.io/fluxcd/kindest/node` for available versions
22+
K8S_VERSION=v1.31.5
2223

2324
REPO_ROOT=$(git rev-parse --show-toplevel)
2425
cd "${REPO_ROOT}" || exit 1

0 commit comments

Comments
 (0)