Skip to content
This repository has been archived by the owner on Apr 19, 2021. It is now read-only.

Latest commit

 

History

History
14 lines (13 loc) · 456 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 456 Bytes
#!/usr/bin/env bash
apt update
apt install software-properties-common
apt-add-repository --yes --update ppa:ansible/ansible
apt install ansible
ansible-galaxy collection install -r requirements.yaml
pip install pyvmomi
wget https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.ova -O /tmp/ubuntu-18.04-server-cloudimg-amd64.ova
export ANSIBLE_HOST_KEY_CHECKING=False
ansible-playbook -i hosts cluster.yaml

plan