Skip to content

Commit d0de039

Browse files
Jonathan S. Katzjkatz
authored andcommitted
Have the installers default to v4.3.0-beta.3
This should make it easier to set up and test the installers, and also allows me to test one thing in particular around the installers.
1 parent ba52a3d commit d0de039

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

docs/content/installation/other/ansible/_index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ weight: 100
88
# Crunchy Data PostgreSQL Operator Playbooks
99

1010
The Crunchy Data PostgreSQL Operator Playbooks contain [Ansible](https://www.ansible.com/)
11-
roles for installing and managing the [Crunchy Data PostgreSQL Operator](https://access.crunchydata.com/documentation/postgres-operator/4.3.0/installation/install-with-ansible/).
11+
roles for installing and managing the [Crunchy Data PostgreSQL Operator]({{< relref "/installation/install-with-ansible/_index.html" >}}).
1212

1313
## Features
1414

1515
The playbooks provided allow users to:
1616

1717
* install PostgreSQL Operator on Kubernetes and OpenShift
18-
* install PostgreSQL Operator from a Linux, Mac or Windows(Ubuntu subsystem)host
18+
* install PostgreSQL Operator from a Linux, Mac or Windows (Ubuntu subsystem) host
1919
* generate TLS certificates required by the PostgreSQL Operator
2020
* configure PostgreSQL Operator settings from a single inventory file
2121
* support a variety of deployment models
@@ -24,5 +24,4 @@ The playbooks provided allow users to:
2424

2525
* [Ansible](https://www.ansible.com/)
2626
* [Crunchy Data](https://www.crunchydata.com/)
27-
* [Crunchy Data PostgreSQL Operator Documentation](https://crunchydata.github.io/postgres-operator/stable/)
2827
* [Crunchy Data PostgreSQL Operator Project](https://github.com/CrunchyData/postgres-operator)

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
34+
git checkout v4.3.0-beta.3
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'
96+
ccp_image_tag='centos7-12.2-4.3.0-beta.3'
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'
105+
pgo_image_tag='centos7-4.3.0-beta.3'
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'
111111

112112
# PGO Client Install
113113
pgo_client_install='true'
114-
pgo_client_version='v4.3.0'
114+
pgo_client_version='v4.3.0-beta.3'
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'
19+
ccp_image_tag='centos7-12.2-4.3.0-beta.3'
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'
23+
pgo_image_tag='centos7-4.3.0-beta.3'
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'
32+
pgo_client_version='v4.3.0-beta.3'
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}"
17+
PGO_CLIENT_VERSION="${PGO_CLIENT_VERSION:-v4.3.0-beta.3}"
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
37+
image: registry.developers.crunchydata.com/crunchydata/pgo-deployer:centos7-4.3.0-beta.3
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"
57+
value: "centos7-12.2-4.3.0-beta.3"
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"
97+
value: "v4.3.0-beta.3"
9898
- name: PGO_IMAGE_PREFIX
9999
value: "registry.developers.crunchydata.com/crunchydata"
100100
- name: PGO_IMAGE_TAG
101-
value: "centos7-4.3.0"
101+
value: "centos7-4.3.0-beta.3"
102102
- name: PGO_INSTALLATION_NAME
103103
value: "devtest"
104104
- name: PGO_OPERATOR_NAMESPACE

0 commit comments

Comments
 (0)