Skip to content

Commit 61c77cb

Browse files
Update Containerized installation inventory variable references (#2370)
Update inventory variable references to match INI formatting For example, change from: `gateway_nginx_http_port: 8500` to `gateway_nginx_http_port=8500` Containerized installer has mix of json and ini https://issues.redhat.com/browse/AAP-33697
1 parent 7647463 commit 61c77cb

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

downstream/assemblies/platform/assembly-aap-containerized-installation.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ include::snippets/container-upgrades.adoc[]
2929
* A {RHEL} (RHEL) 9.2 based host. Use a minimal operating system base install.
3030
* A non-root user for the {RHEL} host, with sudo or other Ansible supported privilege escalation (sudo recommended). This user is responsible for the installation of containerized {PlatformNameShort}.
3131
* SSH public key authentication for the non-root user. For guidelines on setting up SSH public key authentication for the non-root user, see link:https://access.redhat.com/solutions/4110681[How to configure SSH public key authentication for passwordless login].
32-
** SSH keys are only required when installing on remote hosts. If doing a self contained local VM based installation, you can use `ansible_connection: local`.
32+
** SSH keys are only required when installing on remote hosts. If doing a self contained local VM based installation, you can use `ansible_connection=local`.
3333
* Internet access from the {RHEL} host if you are using the default online installation method.
3434
* The appropriate network ports are open if a firewall is in place. For more information about the ports to open, see link:{URLTopologies}/container-topologies[Container topologies] in _{TitleTopologies}_.
3535

downstream/modules/platform/ref-accessing-control-auto-hub-eda-control.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ After the installation completes, the default protocol and ports used for {Platf
1212
You can customize the ports with the following variables:
1313

1414
----
15-
gateway_nginx_http_port: 8500
16-
gateway_nginx_https_port: 8501
15+
gateway_nginx_http_port=8500
16+
gateway_nginx_https_port=8501
1717
----
1818

1919
If you want to disable HTTPS, set `gateway_nginx_disable_https` to `true`:
2020

2121
----
22-
gateway_nginx_disable_https: true
22+
gateway_nginx_disable_https=true
2323
----
2424

2525
.Accessing the platform UI

downstream/modules/platform/ref-containerized-troubleshoot-install.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ callbacks_enabled = ansible.posix.profile_tasks
3434
This error is due to `manifest.zip` license files that are larger than the `nginx_client_max_body_size` setting. If this error occurs, you will need to change the installation inventory file to include the following variables:
3535

3636
----
37-
nginx_disable_hsts: false
38-
nginx_http_port: 8081
39-
nginx_https_port: 8444
40-
nginx_client_max_body_size: 20m
41-
nginx_user_headers: []
37+
nginx_disable_hsts=false
38+
nginx_http_port=8081
39+
nginx_https_port=8444
40+
nginx_client_max_body_size=20m
41+
nginx_user_headers=[]
4242
----
4343

4444
The current default setting of `20m` should be enough to avoid this issue.

0 commit comments

Comments
 (0)