Skip to content

Commit ac8d204

Browse files
author
Jonathan S. Katz
committed
Bump to 4.3.0 vs. -beta.3
While a shortlived change, this needed to happen.
1 parent aa646be commit ac8d204

File tree

6 files changed

+31
-31
lines changed

6 files changed

+31
-31
lines changed

docs/content/advanced/custom-configuration.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ specify all of the configuration files. It is entirely up to your use case
3434
to determine which to use.
3535

3636
An example set of configuration files and a script to create the
37-
global configMap is found at
37+
global configMap is found at
3838
```
3939
$PGOROOT/examples/custom-config
4040
```
@@ -79,7 +79,7 @@ and avoid defining a global configMap.
7979
## Modifying PostgreSQL Cluster Configuration
8080

8181
Once a PostgreSQL cluster has been initialized, its configuration settings
82-
can be updated and modified as needed. This done by modifying the
82+
can be updated and modified as needed. This done by modifying the
8383
`<clusterName>-pgha-config` ConfigMap that is created for each individual
8484
PostgreSQL cluster.
8585

@@ -94,7 +94,7 @@ and cluster's configuration can be
9494
[found here](https://access.crunchydata.com/documentation/patroni/latest/settings/index.html#settings).
9595
Please proceed with caution when modiying configuration, especially those settings
9696
applied by default by Operator. Certain settings are required for normal operation
97-
of the Operator and the PostgreSQL clusters it creates, and altering these
97+
of the Operator and the PostgreSQL clusters it creates, and altering these
9898
settings could result in expected behavior.
9999

100100
### Types of Configuration
@@ -104,15 +104,15 @@ Within the `<clusterName>-pgha-config` ConfigMap are two forms of configuration:
104104
- **Distributed Configuration Store (DCS):** Cluster-wide
105105
configuration settings that are applied to all database servers in the PostgreSQL
106106
cluster
107-
- **Local Database:** Configuration settings that are applied
108-
individually to each database server (i.e. the primary and each replica) within
107+
- **Local Database:** Configuration settings that are applied
108+
individually to each database server (i.e. the primary and each replica) within
109109
the cluster.
110110

111111
The DCS configuration settings are stored within the `<clusterName>-pgha-config`
112-
ConfigMap in a configuration named `<clusterName>-dcs-config`, while the local
112+
ConfigMap in a configuration named `<clusterName>-dcs-config`, while the local
113113
database configurations are stored in one or more configurations named
114-
`<severName>-dcs-config` (with one local configuration for the primary and each
115-
replica within the cluster). Please note that
114+
`<serverName>-local-config` (with one local configuration for the primary and each
115+
replica within the cluster). Please note that
116116
[as described here](https://access.crunchydata.com/documentation/patroni/latest/dynamic_configuration/),
117117
certain settings can only be applied via the DCS to ensure they are uniform among
118118
the primary and all replicas within the cluster.
@@ -121,7 +121,7 @@ The following is an example of the both the DCS and primary configuration settin
121121
as stored in the `<clusterName>-pgha-config` ConfigMap for a cluster named `mycluster`.
122122
Please note the `mycluster-dcs-config` configuration defining the DCS configuration
123123
for `mycluster`, along with the `mycluster-local-config` configuration defining the
124-
local configuration for the database server named `mycluster`, which is the current
124+
local configuration for the database server named `mycluster`, which is the current
125125
primary within the PostgreSQL cluster.
126126

127127
```bash
@@ -190,11 +190,11 @@ postgresql:
190190

191191
In order to update a cluster's configuration settings and then apply
192192
those settings (e.g. to the DCS and/or any individual database servers), the
193-
DCS and local configuration settings within the `<clusterName>-pgha-config`
194-
ConfigMap can be modified. This can be done using the various commands
193+
DCS and local configuration settings within the `<clusterName>-pgha-config`
194+
ConfigMap can be modified. This can be done using the various commands
195195
available using the `kubectl` client (or the `oc` client if using OpenShift)
196196
for modifying Kubernetes resources. For instance, the following command can be
197-
utilized to open the ConfigMap in a local text editor, and then update the
197+
utilized to open the ConfigMap in a local text editor, and then update the
198198
various cluster configurations as needed:
199199

200200
```bash
@@ -219,7 +219,7 @@ postgresql:
219219
```
220220
221221
The various key/value pairs provided within the `paramters` section result in the
222-
configuration of the same settings within the `postgresql.conf` file. Please note that
222+
configuration of the same settings within the `postgresql.conf` file. Please note that
223223
settings applied locally to a database server take precendence over those set via the DCS (with the
224224
exception being those that must be set via the DCS, as
225225
[described here](https://access.crunchydata.com/documentation/patroni/latest/dynamic_configuration/)).
@@ -247,7 +247,7 @@ $ kubectl exec -it mycluster-6f89d8bb85-pnlwz -- patronictl list
247247
+-----------------------------+-----------+--------+---------+----+-----------+-----------------+
248248
```
249249

250-
Here we can see that the ` mycluster-6f89d8bb85-pnlwz` server is pending a restart,
250+
Here we can see that the ` mycluster-6f89d8bb85-pnlwz` server is pending a restart,
251251
which can then be accomplished as follows:
252252

253253
```bash
@@ -259,7 +259,7 @@ $ kubectl exec -it mycluster-6f89d8bb85-pnlwz -- patronictl restart mycluster my
259259
+-----------------------------+-----------+--------+---------+----+-----------+
260260
When should the restart take place (e.g. 2020-04-29T17:23) [now]: now
261261
Are you sure you want to restart members mycluster-6f89d8bb85-pnlwz? [y/N]: y
262-
Restart if the PostgreSQL version is less than provided (e.g. 9.5.2) []:
262+
Restart if the PostgreSQL version is less than provided (e.g. 9.5.2) []:
263263
Success: restart on member mycluster-6f89d8bb85-pnlwz
264264
```
265265

@@ -268,15 +268,15 @@ database container within the PostgreSQL cluster being updated.
268268

269269
### Refreshing Configuration Settings
270270

271-
If necessary, it is possible to refresh the configuration stored within the
271+
If necessary, it is possible to refresh the configuration stored within the
272272
`<clusterName>-pgha-config` ConfigMap with a fresh copy of either the DCS
273273
configuration and/or the configuration for one or more local database servers.
274-
This is specifically done by fully deleting a configuration from the
274+
This is specifically done by fully deleting a configuration from the
275275
`<clusterName>-pgha-config` ConfigMap. Once a configuration has been deleted,
276-
the Operator will detect this and refresh the ConfigMap with a fresh copy of
276+
the Operator will detect this and refresh the ConfigMap with a fresh copy of
277277
that specific configuration.
278278

279-
For instance, the following `kubectl patch` command can be utilized to
279+
For instance, the following `kubectl patch` command can be utilized to
280280
remove the `mycluster-dcs-config` configuration from the example above,
281281
causing that specific configuration to be refreshed with a fresh copy of
282282
the DCS configuration settings for `mycluster`:

docs/content/installation/other/bash.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The Operator follows a golang project structure, you can create a structure as f
3131
cd $HOME/odev/src/github.com/crunchydata
3232
git clone https://github.com/CrunchyData/postgres-operator.git
3333
cd postgres-operator
34-
git checkout v4.3.0-beta.3
34+
git checkout v4.3.0
3535

3636

3737
This creates a directory structure under your HOME directory name *odev* and clones the current Operator version to that structure.

installers/ansible/inventory

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ namespace='pgouser1,pgouser2'
9393
# CentOS7 images can be found in dockerhub: https://hub.docker.com/u/crunchydata
9494
# RHEL7 images are available to Crunchy customers: https://access.crunchydata.com/login/
9595
ccp_image_prefix='registry.developers.crunchydata.com/crunchydata'
96-
ccp_image_tag='centos7-12.2-4.3.0-beta.3'
96+
ccp_image_tag='centos7-12.2-4.3.0'
9797

9898
# Name of a Secret containing credentials for container image registries.
9999
# Provide a path to the Secret manifest to be installed in each namespace. (optional)
@@ -102,7 +102,7 @@ ccp_image_pull_secret_manifest=''
102102

103103
# Crunchy PostgreSQL Operator images to use. The tags centos7 and rhel7 are acceptable.
104104
pgo_image_prefix='registry.developers.crunchydata.com/crunchydata'
105-
pgo_image_tag='centos7-4.3.0-beta.3'
105+
pgo_image_tag='centos7-4.3.0'
106106

107107
# Name of a Secret containing credentials for container image registries.
108108
# Provide a path to the Secret manifest to be installed in each namespace. (optional)
@@ -111,7 +111,7 @@ pgo_image_tag='centos7-4.3.0-beta.3'
111111

112112
# PGO Client Install
113113
pgo_client_install='true'
114-
pgo_client_version='v4.3.0-beta.3'
114+
pgo_client_version='v4.3.0'
115115

116116
# PGO Apiserver TLS Settings
117117
#pgo_tls_no_verify='false'

installers/gcp-marketplace/inventory.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ pgo_operator_namespace='${OPERATOR_NAMESPACE}'
1616
namespace=''
1717

1818
ccp_image_prefix='registry.developers.crunchydata.com/crunchydata'
19-
ccp_image_tag='centos7-12.2-4.3.0-beta.3'
19+
ccp_image_tag='centos7-12.2-4.3.0'
2020
ccp_image_pull_secret=''
2121
ccp_image_pull_secret_manifest=''
2222
pgo_image_prefix='registry.developers.crunchydata.com/crunchydata'
23-
pgo_image_tag='centos7-4.3.0-beta.3'
23+
pgo_image_tag='centos7-4.3.0'
2424

2525
pgo_image='${OPERATOR_IMAGE}'
2626
pgo_event_image='${OPERATOR_IMAGE_EVENT}'
@@ -29,7 +29,7 @@ pgo_scheduler_image='${OPERATOR_IMAGE_SCHEDULER}'
2929

3030
# PGO Client Install
3131
pgo_client_install='false'
32-
pgo_client_version='v4.3.0-beta.3'
32+
pgo_client_version='v4.3.0'
3333

3434
backrest='true'
3535
badger='false'

installers/kubectl/client-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# This script should be run after the operator has been deployed
1515
export PGO_OPERATOR_NAMESPACE="${PGO_OPERATOR_NAMESPACE:-pgo}"
1616
PGO_USER_ADMIN="${PGO_USER_ADMIN:-pgouser-admin}"
17-
PGO_CLIENT_VERSION="${PGO_CLIENT_VERSION:-v4.3.0-beta.3}"
17+
PGO_CLIENT_VERSION="${PGO_CLIENT_VERSION:-v4.3.0}"
1818
PGO_CLIENT_URL="https://github.com/CrunchyData/postgres-operator/releases/download/${PGO_CLIENT_VERSION}"
1919

2020
# Checks operating system and determines which binary to download

installers/kubectl/postgres-operator.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
containers:
3535
- name: pgo-deploy
3636
command: ["/pgo-deploy.sh"]
37-
image: registry.developers.crunchydata.com/crunchydata/pgo-deployer:centos7-4.3.0-beta.3
37+
image: registry.developers.crunchydata.com/crunchydata/pgo-deployer:centos7-4.3.0
3838
imagePullPolicy: IfNotPresent
3939
env:
4040
- name: ANSIBLE_CONFIG
@@ -54,7 +54,7 @@ spec:
5454
- name: CCP_IMAGE_PREFIX
5555
value: "registry.developers.crunchydata.com/crunchydata"
5656
- name: CCP_IMAGE_TAG
57-
value: "centos7-12.2-4.3.0-beta.3"
57+
value: "centos7-12.2-4.3.0"
5858
- name: DB_PASSWORD_LENGTH
5959
value: "24"
6060
- name: DB_PORT
@@ -94,11 +94,11 @@ spec:
9494
- name: PGO_ADMIN_USERNAME
9595
value: "admin"
9696
- name: PGO_CLIENT_VERSION
97-
value: "v4.3.0-beta.3"
97+
value: "v4.3.0"
9898
- name: PGO_IMAGE_PREFIX
9999
value: "registry.developers.crunchydata.com/crunchydata"
100100
- name: PGO_IMAGE_TAG
101-
value: "centos7-4.3.0-beta.3"
101+
value: "centos7-4.3.0"
102102
- name: PGO_INSTALLATION_NAME
103103
value: "devtest"
104104
- name: PGO_OPERATOR_NAMESPACE

0 commit comments

Comments
 (0)