Created
May 13, 2020 18:33
-
-
Save defenestratexp/79dcecb8cdd701d1088418d96dee3a94 to your computer and use it in GitHub Desktop.
Failing ansible playbook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# playbooks/launch_container.yml | |
--- | |
- hosts: cloud_servers | |
connection: lxd | |
tasks: | |
- name: Launch a container on remote | |
lxd_container: | |
trust_password: myhellasecurepasskey | |
url: https://lxdremote.example.com:8443 | |
name: sandbox1 | |
state: started | |
source: | |
type: image | |
mode: pull | |
server: https://images.linuxcontainers.org | |
protocol: simplestreams | |
alias: ubuntu/xenial/amd64 | |
profiles: ["default"] | |
wait_for_ipv4_addresses: true | |
timeout: 600 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment