Compare commits
2 Commits
4d95b0ddbd
...
51e2bf3544
Author | SHA1 | Date | |
---|---|---|---|
|
51e2bf3544 | ||
|
375d5fa4c9 |
@ -1,7 +1,13 @@
|
|||||||
---
|
---
|
||||||
- hosts: all
|
- hosts: all
|
||||||
name: Dummy to gather facts
|
name: Dummy to gather facts
|
||||||
tasks: []
|
tasks:
|
||||||
|
- name: gather facts even if hosts are excluded.
|
||||||
|
setup:
|
||||||
|
delegate_to: "{{item}}"
|
||||||
|
delegate_facts: True
|
||||||
|
loop: "{{groups['all']}}"
|
||||||
|
|
||||||
|
|
||||||
- hosts: cinder-controller
|
- hosts: cinder-controller
|
||||||
become: True
|
become: True
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
---
|
---
|
||||||
- hosts: all
|
- hosts: all
|
||||||
become: True
|
become: True
|
||||||
|
vars_prompt:
|
||||||
|
- name: "docker_user"
|
||||||
|
prompt: "What is your p number?"
|
||||||
|
- name: "docker_pass"
|
||||||
|
prompt: "What is your password?"
|
||||||
|
private: yes
|
||||||
roles:
|
roles:
|
||||||
- common
|
- common
|
||||||
|
@ -31,5 +31,5 @@ openstack04 storage_volume=/dev/sdb1
|
|||||||
|
|
||||||
[nova-compute]
|
[nova-compute]
|
||||||
openstack03 physical_interface_mappings=provider:enp4s0f0
|
openstack03 physical_interface_mappings=provider:enp4s0f0
|
||||||
openstack04 physical_interface_mappings=provider:enp4s0f0
|
openstack04 physical_interface_mappings=provider:eno1
|
||||||
|
|
||||||
|
@ -27,3 +27,10 @@
|
|||||||
group: root
|
group: root
|
||||||
|
|
||||||
- import_tasks: docker.yml
|
- import_tasks: docker.yml
|
||||||
|
|
||||||
|
|
||||||
|
- name: Log into DockerHub
|
||||||
|
docker_login:
|
||||||
|
registry: registry.webhosting.rug.nl
|
||||||
|
username: "{{ docker_user }}"
|
||||||
|
password: "{{ docker_pass }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user