khuedoan-homelab/test/multipass-cloud-init.yaml
2021-02-15 00:33:50 +07:00

16 lines
697 B
YAML

#cloud-config
runcmd:
- snap install --classic kubectl terraform
- snap install lxd terraform
- snap install kubectl --classic
- curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
- apt-add-repository "deb [arch=$(dpkg --print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
- apt install terraform
- sudo apt-get update
- sudo apt-get install -y apt-transport-https
- curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
- echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee -a /etc/apt/sources.list.d/kubernetes.list
- sudo apt-get update
- sudo apt-get install -y kubectl