Skip to content

Commit e6e928c

Browse files
fix: Adding extra space on the VM to kind cluster to see if this solves the issue with memory not available with operator e2e tests. (#5102)
Adding extra space on the VM to kind cluster to see if this solves the issue with memory not available with operator e2e tests. Signed-off-by: lrangine <19699092+lokeshrangineni@users.noreply.github.com>
1 parent ed63895 commit e6e928c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/operator-e2e-integration-tests.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,15 @@ jobs:
4343

4444
- name: Create KIND cluster
4545
run: |
46-
kind create cluster --name $KIND_CLUSTER --wait 10m
46+
cat <<EOF | kind create cluster --name $KIND_CLUSTER --wait 10m --config=-
47+
kind: Cluster
48+
apiVersion: kind.x-k8s.io/v1alpha4
49+
nodes:
50+
- role: control-plane
51+
extraMounts:
52+
- hostPath: /tmp/kind
53+
containerPath: /var/lib/containerd
54+
EOF
4755
4856
- name: Set up kubernetes context
4957
run: |

0 commit comments

Comments
 (0)