Skip to content

Commit

Permalink
Template changes to support RHEL9 on ARM64 for PEM (agent and server)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwicinas authored and nidhibhammar committed Nov 25, 2024
1 parent 18345f7 commit 1268b28
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions install_template/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,9 @@ products:
- name: RHEL 9 or OL 9
arch: x86_64
supported versions: [9]
- name: RHEL 9 or OL 9
arch: arm64
supported versions: [9]
- name: RHEL 9
arch: ppc64le
supported versions: [9]
Expand Down Expand Up @@ -731,6 +734,9 @@ products:
- name: RHEL 9 or OL 9
arch: x86_64
supported versions: [9]
- name: RHEL 9 or OL 9
arch: arm64
supported versions: [9]
- name: RHEL 9
arch: ppc64le
supported versions: [9]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{% extends "products/postgres-enterprise-manager-agent/base.njk" %}
{% set platformBaseTemplate = "rhel-9-or-ol-9" %}
{% block prerequisites %}{% endblock prerequisites %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{% extends "products/postgres-enterprise-manager-server/base.njk" %}
{% set platformBaseTemplate = "rhel-9-or-ol-9" %}
{% set ssutilsName %}sslutils_<x> postgresql<x>-contrib{% endset %}
{% set ssutilsExtendedName %}edb-postgresextended<x>-contrib{% endset %}
{% set ssutilsExtendedFirstName %}edb-postgresextended<x>-sslutils{% endset %}
{% block prerequisites %}{% endblock prerequisites %}
{% block firewallCommand %}```shell
firewall-cmd --permanent --zone=public --add-port=8443/tcp

firewall-cmd --reload
```{% endblock firewallCommand %}

0 comments on commit 1268b28

Please sign in to comment.