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 d9748f8 commit f65d898Copy full SHA for f65d898
.github/workflows/benchmark.yml
@@ -60,13 +60,18 @@ jobs:
60
run: |
61
export KUBECONFIG=$HOME/.kube/config
62
export KIND_EXPERIMENTAL_DOCKER_NETWORK=${{ job.container.network }}
63
-
64
- - name: Create k8s Kind Cluster
65
- uses: helm/[email protected]
66
- with:
67
- kubectl_version: v1.28.0
68
- cluster_name: action
69
- config: .github/workflows/kind-config.yaml
+ kind create cluster \
+ --kubeconfig $KUBECONFIG \
+ --config=.github/workflows/kind-config.yaml \
+ --name action
+ kubectl cluster-info --context kind-action
+
+# - name: Create k8s Kind Cluster
70
+# uses: helm/[email protected]
71
+# with:
72
+# kubectl_version: v1.28.0
73
+# cluster_name: action
74
+# config: .github/workflows/kind-config.yaml
75
76
77
- name: Install the CRD and Operator
0 commit comments