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
2 changes: 2 additions & 0 deletions olam/create_instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,8 @@
inventory_hostname in
groups['control']|default([])
+ groups['server']|default([])
+ groups['execution']|default([])
+ groups['db']|default([])

- name: Configure passwordless SSH
ansible.builtin.include_tasks: "passwordless_setup.yml"
Expand Down
1 change: 1 addition & 0 deletions olam/default_vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ use_olam_pah: false
add_pah_ports: false
use_freeipa: false
use_git: false
add_cluster_ports: false

use_kvm: false
create_vm: false
Expand Down
1 change: 1 addition & 0 deletions olam/deploy_olam_single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@
- name: Provision olam ansible container environment
containers.podman.podman_image:
name: container-registry.oracle.com/oracle_linux_automation_manager/olam-ee
tag: 2.2
become: true
become_user: awx

Expand Down
2 changes: 1 addition & 1 deletion olam/provision_git_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
scope: global
value: main

- name: Initialize a bare repo
- name: Initialize a bare repo # noqa: command-instead-of-module
ansible.builtin.shell: |
git init --bare
args:
Expand Down
16 changes: 15 additions & 1 deletion olam/templates/ingress_security_rules.j2
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,18 @@ instance_ingress_security_rules:
destination_port_range:
max: 443
min: 443
{% endif %}
{% endif %}
{% if add_cluster_ports %}
- source: "10.0.0.0/24"
protocol: 6
tcp_options:
destination_port_range:
max: 5432
min: 5432
- source: "10.0.0.0/24"
protocol: 6
tcp_options:
destination_port_range:
max: 27199
min: 27199
{% endif %}