Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions olam/create_instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@

- name: Configure new instances
hosts: all
become: true
gather_facts: false
vars_files:
- default_vars.yml
Expand Down Expand Up @@ -309,6 +310,12 @@
ansible.builtin.include_tasks: "olam_passwordless_setup.yml"
when: passwordless_ssh

- name: Install Oracle Linux Automation Manager
ansible.builtin.include_tasks: deploy-olam-tasks.yml
vars:
control_node_ip: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
when: inventory_hostname == 'olam-node'

- name: Update all rpm packages
ansible.builtin.import_playbook: update_all_rpms.yml
when: update_all
Expand Down
Loading