8fb3a0b889
Switch container puppet tasks to use the module for management rather than the tripleo_container_manage role which has a bunch of unrelated tasks. Change-Id: I4398322a02f6f899ea226b60336da83fc841812f Depends-On: https://review.opendev.org/c/openstack/tripleo-ansible/+/796884
34 lines
1.6 KiB
YAML
34 lines
1.6 KiB
YAML
- name: Write container-puppet-tasks json file for {{ansible_facts['hostname'] | lower}} step {{step}}
|
|
no_log: True
|
|
copy:
|
|
content: "{{lookup ('vars', 'host_container_puppet_tasks_' ~ step, default=[]) | to_nice_json}}"
|
|
dest: "/var/lib/container-puppet/{{ ansible_check_mode | bool | ternary('check-mode/', '') }}container-puppet-tasks{{step}}.json"
|
|
force: yes
|
|
mode: '0600'
|
|
check_mode: no
|
|
tags:
|
|
- container_config_tasks
|
|
|
|
- name: Block for container-puppet tasks (bootstrap tasks) for step {{ step }} with tripleo-ansible
|
|
tags:
|
|
- container_config_tasks
|
|
block:
|
|
- name: "Generate container puppet configs for step {{ step }}"
|
|
container_puppet_config:
|
|
check_mode: '{{ ansible_check_mode | bool | ternary(1, 0) }}'
|
|
config_vol_prefix: "/var/lib/config-data{{ ansible_check_mode | bool | ternary('/check-mode', '') }}"
|
|
debug: "{{ docker_puppet_debug | bool }}"
|
|
net_host: true
|
|
no_archive: true
|
|
puppet_config: "/var/lib/container-puppet/{{ ansible_check_mode | bool | ternary('check-mode/', '') }}container-puppet-tasks{{ step }}.json"
|
|
short_hostname: "{{ ansible_facts['hostname'] | lower }}"
|
|
step: "{{ step }}"
|
|
|
|
- name: "Manage Puppet containers (bootstrap tasks) for step {{ step }}"
|
|
tripleo_container_manage:
|
|
config_id: "tripleo_puppet_step{{ step }}"
|
|
config_dir: "/var/lib/tripleo-config/container-puppet-config/step_{{ step }}"
|
|
config_patterns: 'container-puppet-*.json'
|
|
debug: "{{ docker_puppet_debug | bool }}"
|
|
concurrency: "{{ docker_puppet_process_count }}"
|