We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e5f972 commit 0179d93Copy full SHA for 0179d93
.github/actions/kind-create/action.yaml
@@ -44,4 +44,11 @@ runs:
44
kind get kubeconfig --name ${{ inputs.kind_cluster_name }} > $kubeconfig_path
45
chmod 600 $kubeconfig_path
46
echo "kubeconfig=$(echo $kubeconfig_path)" >> $GITHUB_OUTPUT
47
+ run: |
48
+ echo "Install cloud-provider-kind"
49
+ go install sigs.k8s.io/cloud-provider-kind@latest
50
+ kubectl label node e2e-kind-control-plane node.kubernetes.io/exclude-from-external-load-balancers-
51
+node/e2e-kind-control-plane unlabeled
52
+ echo "Run Cloud Provider Kind to enable LoadBalancer"
53
+ ~/go/bin/cloud-provider-kind
54
shell: bash
0 commit comments