Skip to content

Commit f65d898

Browse files
author
DevOpsNatalie
committed
[fix] - kubectl
1 parent d9748f8 commit f65d898

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/benchmark.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,18 @@ jobs:
6060
run: |
6161
export KUBECONFIG=$HOME/.kube/config
6262
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
63+
kind create cluster \
64+
--kubeconfig $KUBECONFIG \
65+
--config=.github/workflows/kind-config.yaml \
66+
--name action
67+
kubectl cluster-info --context kind-action
68+
69+
# - 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
7075

7176

7277
- name: Install the CRD and Operator

0 commit comments

Comments
 (0)