Skip to content

Commit

Permalink
Revert "Temporary workaround for kubernetes/minikube#5751"
Browse files Browse the repository at this point in the history
  • Loading branch information
maelk committed Oct 29, 2019
1 parent 47c0049 commit a3b680d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 03_launch_mgmt_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ if [ "${V1ALPHA2_SWITCH}" == true ]; then
fi
init_minikube
sudo su -l -c 'minikube start --docker-opt="default-ulimit=nofile=102400:102400"' "${USER}"
sudo su -l -c 'minikube start' "${USER}"
sudo su -l -c 'minikube ssh sudo ip addr add 172.22.0.2/24 dev eth2' "${USER}"
launch_baremetal_operator
apply_bm_hosts
Expand Down
2 changes: 1 addition & 1 deletion lib/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ differs(){
function init_minikube() {
#If the vm exists, it has already been initialized
if [[ "$(sudo virsh list --all)" != *"minikube"* ]]; then
sudo su -l -c 'minikube start --insecure-registry 192.168.111.1:5000 --docker-opt="default-ulimit=nofile=102400:102400"' "$USER"
sudo su -l -c "minikube start --insecure-registry 192.168.111.1:5000" "$USER"
# Pre-pull the image to reduce pod initialization time
for IMAGE_VAR in IRONIC_IMAGE IPA_DOWNLOADER_IMAGE IRONIC_INSPECTOR_IMAGE BAREMETAL_OPERATOR_IMAGE; do
IMAGE=${!IMAGE_VAR}
Expand Down

0 comments on commit a3b680d

Please sign in to comment.