Skip to content

Commit

Permalink
fix ci regression
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat committed Jan 28, 2024
1 parent 4788255 commit 8d47b16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
branches:
- main
paths-ignore:
- "Makefile"
- "devcontainer/**"
- ".devcontainer/**"
- ".pulumi/**"
Expand All @@ -19,7 +18,6 @@ on:
branches:
- main
paths-ignore:
- "Makefile"
- "devcontainer/**"
- ".devcontainer/**"
- ".pulumi/**"
Expand Down
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,14 @@ talos: clean-all talos-cluster talos-ready wait-all-pods
kind-cluster:
@echo "Creating Kind Cluster..."
@direnv allow
@mkdir -p /home/vscode/.kube .kube || true
@touch /home/vscode/.kube/config .kube/config || true
@chmod 600 /home/vscode/.kube/config .kube/config || true
@mkdir -p .kube || true
@touch .kube/config || true
@chmod 600 .kube/config || true
@sudo docker volume create cilium-worker-n01
@sudo docker volume create cilium-worker-n02
@sudo docker volume create cilium-control-plane-n01
@sudo kind create cluster --wait 1m --retain --config=hack/kind.yaml
@sudo kind get clusters
@sudo kind get kubeconfig --name cilium | tee /home/vscode/.kube/config 1>/dev/null || true
@sudo kind get kubeconfig --name cilium | tee ${KUBE_CONFIG_FILE} 1>/dev/null
@sudo chown -R $(id -u):$(id -g) ${KUBE_CONFIG_FILE}
@pulumi config set kubernetes kind
Expand Down

0 comments on commit 8d47b16

Please sign in to comment.