Skip to content

Commit b289761

Browse files
author
armab
committed
Add a workaround for minikube with K8s 1.18
1 parent e0260a3 commit b289761

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.circleci/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,16 @@ jobs:
7979
- minikube/minikube-install:
8080
# https://github.com/kubernetes/minikube/releases
8181
version: v1.10.1
82+
- run:
83+
name: Install dependencies
84+
command: |
85+
sudo apt -y update
86+
# K8s 1.18 requires conntrack
87+
# See: https://github.com/kubernetes/minikube/issues/7179
88+
sudo apt -y install conntrack
8289
- run:
8390
name: Create new K8s cluster
84-
command: sudo -E minikube start --vm-driver=none --cpus $(nproc) --memory 4096
91+
command: sudo -E minikube start --vm-driver=none
8592
environment:
8693
CHANGE_MINIKUBE_NONE_USER: true
8794
- helm/install-helm-on-cluster

0 commit comments

Comments
 (0)