-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3659 from EnterpriseDB/release/2023-02-14
Release: 2023-02-14
- Loading branch information
Showing
1,506 changed files
with
82,912 additions
and
7,602 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...template/templates/products/edb-postgres-extended-server/almalinux-8-or-rocky-linux-8.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} | ||
{% set platformBaseTemplate = "almalinux-8-or-rocky-linux-8" %} | ||
{% block installCommand %} | ||
{{ super() }} | ||
{% endblock installCommand %} |
17 changes: 17 additions & 0 deletions
17
install_template/templates/products/edb-postgres-extended-server/base.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% extends "platformBase/" + platformBaseTemplate + '.njk' %} | ||
{% set packageName = packageName or 'edb-postgresextended<xx>-server edb-postgresextended<xx>-contrib' %} | ||
{% import "platformBase/_deploymentConstants.njk" as deploy %} | ||
{% block frontmatter %} | ||
{# | ||
If you modify deployment path here, please first copy the old expression | ||
and add it to the list under "redirects:" below - this ensures we don't | ||
break any existing links. | ||
#} | ||
deployPath: pge/{{ product.version }}/installing/linux_{{platform.arch}}/pge_{{deploy.map_platform[platform.name]}}.mdx | ||
redirects: | ||
{% endblock frontmatter %} | ||
{% block installCommand %} | ||
{{super()}} | ||
Where `<xx>` is the version of EDB Postgres Extended Server you are installing. For example, if you are installing version 15, the package name would be `edb-postgresextended15`. | ||
|
||
{% endblock installCommand %} |
5 changes: 5 additions & 0 deletions
5
install_template/templates/products/edb-postgres-extended-server/centos-7.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} | ||
{% set platformBaseTemplate = "centos-7" %} | ||
{% block installCommand %} | ||
{{ super() }} | ||
{% endblock installCommand %} |
11 changes: 11 additions & 0 deletions
11
install_template/templates/products/edb-postgres-extended-server/debian-10.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "products/edb-postgres-extended-server/debian.njk" %} | ||
{% set platformBaseTemplate = "debian-10" %} | ||
{% set packageName %}edb-postgresextended-<xx> edb-postgresextended-<xx>-contrib{% endset %} | ||
{% block installCommand %} | ||
```shell | ||
sudo {{ packageManager }} {{ packageManagerNoninteractive }} install {{ packageName }} | ||
``` | ||
|
||
Where `<xx>` is the version of EDB Postgres Extended Server you are installing. For example, if you are installing version 15, the package name would be `edb-postgresextended-15`. | ||
|
||
{% endblock installCommand %} |
11 changes: 11 additions & 0 deletions
11
install_template/templates/products/edb-postgres-extended-server/debian-11.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "products/edb-postgres-extended-server/debian.njk" %} | ||
{% set platformBaseTemplate = "debian-11" %} | ||
{% set packageName %}edb-postgresextended-<xx> edb-postgresextended-<xx>-contrib{% endset %} | ||
{% block installCommand %} | ||
```shell | ||
sudo {{ packageManager }} {{ packageManagerNoninteractive }} install {{ packageName }} | ||
``` | ||
|
||
Where `<xx>` is the version of EDB Postgres Extended Server you are installing. For example, if you are installing version 15, the package name would be `edb-postgresextended-15`. | ||
|
||
{% endblock installCommand %} |
3 changes: 3 additions & 0 deletions
3
install_template/templates/products/edb-postgres-extended-server/debian-9.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{% extends "products/edb-postgres-extended-server/debian.njk" %} | ||
{% set platformBaseTemplate = "debian-9" %} | ||
{% set packageName %}edb-postgresextended<xx>{% endset %} |
4 changes: 4 additions & 0 deletions
4
install_template/templates/products/edb-postgres-extended-server/debian.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} | ||
{% block debian_ubuntu %}This section steps you through getting started with your cluster including logging in, ensuring the installation was successful, connecting to your cluster, and creating the user password. | ||
|
||
```shell{% endblock debian_ubuntu %} |
5 changes: 5 additions & 0 deletions
5
install_template/templates/products/edb-postgres-extended-server/rhel-7-or-ol-7.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} | ||
{% set platformBaseTemplate = "rhel-7-or-ol-7" %} | ||
{% block installCommand %} | ||
{{ super() }} | ||
{% endblock installCommand %} |
6 changes: 6 additions & 0 deletions
6
install_template/templates/products/edb-postgres-extended-server/rhel-7_ppc64le.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{% extends "products/edb-postgres-extended-server/rhel-7-or-ol-7.njk" %} | ||
{% set includePPC = true %} | ||
{% set packageName %}edb-postgresextended<xx>{% endset %} | ||
{% block installCommand %} | ||
{{ super() }} | ||
{% endblock installCommand %} |
5 changes: 5 additions & 0 deletions
5
install_template/templates/products/edb-postgres-extended-server/rhel-8-or-ol-8.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} | ||
{% set platformBaseTemplate = "rhel-8-or-ol-8" %} | ||
{% block installCommand %} | ||
{{ super() }} | ||
{% endblock installCommand %} |
2 changes: 2 additions & 0 deletions
2
install_template/templates/products/edb-postgres-extended-server/rhel-8_ppc64le.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{% extends "products/edb-postgres-extended-server/rhel-8-or-ol-8.njk" %} | ||
{% set includePPC = true %} |
3 changes: 3 additions & 0 deletions
3
install_template/templates/products/edb-postgres-extended-server/sles-12.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} | ||
{% set platformBaseTemplate = "sles-12" %} | ||
{% set packageManager = "zypper" %} |
2 changes: 2 additions & 0 deletions
2
install_template/templates/products/edb-postgres-extended-server/sles-12_ppc64le.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{% extends "products/edb-postgres-extended-server/sles-12.njk" %} | ||
{% set includePPC = true %} |
3 changes: 3 additions & 0 deletions
3
install_template/templates/products/edb-postgres-extended-server/sles-15.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} | ||
{% set platformBaseTemplate = "sles-15" %} | ||
{% set packageManager = "zypper" %} |
2 changes: 2 additions & 0 deletions
2
install_template/templates/products/edb-postgres-extended-server/sles-15_ppc64le.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{% extends "products/edb-postgres-extended-server/sles-15.njk" %} | ||
{% set includePPC = true %} |
3 changes: 3 additions & 0 deletions
3
install_template/templates/products/edb-postgres-extended-server/ubuntu-18.04.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{% extends "products/edb-postgres-extended-server/ubuntu.njk" %} | ||
{% set platformBaseTemplate = "ubuntu-18.04" %} | ||
{% set packageName %}edb-postgresextended-<xx> edb-postgresextended-<xx>-contrib{% endset %} |
3 changes: 3 additions & 0 deletions
3
install_template/templates/products/edb-postgres-extended-server/ubuntu-20.04.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{% extends "products/edb-postgres-extended-server/ubuntu.njk" %} | ||
{% set platformBaseTemplate = "ubuntu-20.04" %} | ||
{% set packageName %}edb-postgresextended-<xx> edb-postgresextended-<xx>-contrib{% endset %} |
7 changes: 7 additions & 0 deletions
7
install_template/templates/products/edb-postgres-extended-server/ubuntu-22.04.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{% extends "products/edb-postgres-extended-server/ubuntu.njk" %} | ||
{% set platformBaseTemplate = "ubuntu-22.04" %} | ||
{% set packageName %}edb-postgresextended-<xx> edb-postgresextended-<xx>-contrib{% endset %} | ||
{% block frontmatter %} | ||
{# remove this block when Ubuntu 22 is released #} | ||
{% endblock frontmatter %} | ||
|
1 change: 1 addition & 0 deletions
1
install_template/templates/products/edb-postgres-extended-server/ubuntu.njk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{% extends "products/edb-postgres-extended-server/base.njk" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
product_docs/docs/edb_plus/36/03_installing_edb_plus/01_installing_prereq.mdx
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
3aae4cd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Published on https://edb-docs.netlify.app as production
🚀 Deployed on https://63eb7811d9df271a1a154f80--edb-docs.netlify.app
3aae4cd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Published on https://edb-docs-staging.netlify.app as production
🚀 Deployed on https://63eb78a0ade4b11b114bf714--edb-docs-staging.netlify.app