tripleo-quickstart/roles/tripleo/undercloud/tasks/create-scripts.yml

22 lines
560 B
YAML

# Creat the scripts that will be used to deploy the undercloud
# environment.
- name: Create undercloud configuration
template:
src: "{{ undercloud_config_file }}"
dest: "./undercloud.conf"
mode: 0600
- name: Create undercloud install script
template:
src: "{{ undercloud_install_script }}"
dest: "{{ working_dir }}/undercloud-install.sh"
mode: 0744
- name: Create undercloud post-install script
template:
src: "{{ undercloud_post_install_script }}"
dest: "{{ working_dir }}/undercloud-post-install.sh"
mode: 0744