73d9f090b118a34742fb3ad667ec38387d0b4a87
[integration.git] / test / mocks / mass-pnf-sim / deployment / heat / cloud-config.yaml
1 #cloud-config
2 package_upgrade: true
3 packages:
4   - apt-transport-https
5   - ca-certificates
6   - gnupg-agent
7   - software-properties-common
8   - docker-ce
9   - docker-ce-cli
10   - containerd.io
11 # Docker's apt key needs to be injected early in the boot as 'apt' cloud-init
12 #  module doesn't support configuring key from file
13 bootcmd:
14   - [curl, "https://download.docker.com/linux/ubuntu/gpg", -o, /run/docker.key]
15   - [apt-key, add, /run/docker.key]
16 apt:
17   sources:
18     docker:
19       source: "deb [arch=amd64] https://download.docker.com/linux/ubuntu $RELEASE stable"