bump tp v1.6.0
This commit is contained in:
		
							parent
							
								
									a63ad49ef8
								
							
						
					
					
						commit
						943a9ed954
					
				| 
						 | 
					@ -9,7 +9,7 @@ assignees: ''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Please, answer some short questions which should help us to understand your problem / question better?
 | 
					Please, answer some short questions which should help us to understand your problem / question better?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- **Which image of the operator are you using?** e.g. registry.opensource.zalan.do/acid/postgres-operator:v1.5.0
 | 
					- **Which image of the operator are you using?** e.g. registry.opensource.zalan.do/acid/postgres-operator:v1.6.0
 | 
				
			||||||
- **Where do you run it - cloud or metal? Kubernetes or OpenShift?** [AWS K8s | GCP ... | Bare Metal K8s]
 | 
					- **Where do you run it - cloud or metal? Kubernetes or OpenShift?** [AWS K8s | GCP ... | Bare Metal K8s]
 | 
				
			||||||
- **Are you running Postgres Operator in production?** [yes | no]
 | 
					- **Are you running Postgres Operator in production?** [yes | no]
 | 
				
			||||||
- **Type of issue?** [Bug report, question, feature request, etc.]
 | 
					- **Type of issue?** [Bug report, question, feature request, etc.]
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										16
									
								
								README.md
								
								
								
								
							
							
						
						
									
										16
									
								
								README.md
								
								
								
								
							| 
						 | 
					@ -14,21 +14,21 @@ pipelines with no access to Kubernetes API directly, promoting infrastructure as
 | 
				
			||||||
### Operator features
 | 
					### Operator features
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* Rolling updates on Postgres cluster changes, incl. quick minor version updates
 | 
					* Rolling updates on Postgres cluster changes, incl. quick minor version updates
 | 
				
			||||||
* Live volume resize without pod restarts (AWS EBS, PvC)
 | 
					* Live volume resize without pod restarts (AWS EBS, PVC)
 | 
				
			||||||
* Database connection pooler with PGBouncer
 | 
					* Database connection pooler with PGBouncer
 | 
				
			||||||
* Restore and cloning Postgres clusters (incl. major version upgrade)
 | 
					* Restore and cloning Postgres clusters (incl. major version upgrade)
 | 
				
			||||||
* Additionally logical backups to S3 bucket can be configured
 | 
					* Additionally logical backups to S3 bucket can be configured
 | 
				
			||||||
* Standby cluster from S3 WAL archive
 | 
					* Standby cluster from S3 WAL archive
 | 
				
			||||||
* Configurable for non-cloud environments
 | 
					* Configurable for non-cloud environments
 | 
				
			||||||
* Basic credential and user management on K8s, eases application deployments
 | 
					* Basic credential and user management on K8s, eases application deployments
 | 
				
			||||||
 | 
					* Support for custom TLS certificates
 | 
				
			||||||
* UI to create and edit Postgres cluster manifests
 | 
					* UI to create and edit Postgres cluster manifests
 | 
				
			||||||
* Works well on Amazon AWS, Google Cloud, OpenShift and locally on Kind
 | 
					* Works well on Amazon AWS, Google Cloud, OpenShift and locally on Kind
 | 
				
			||||||
* Support for custom TLS certificates
 | 
					 | 
				
			||||||
* Base support for AWS EBS gp3 migration (iops, throughput pending)
 | 
					* Base support for AWS EBS gp3 migration (iops, throughput pending)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### PostgreSQL features
 | 
					### PostgreSQL features
 | 
				
			||||||
 | 
					
 | 
				
			||||||
* Supports PostgreSQL 13, starting from 9.6+
 | 
					* Supports PostgreSQL 13, starting from 9.5+
 | 
				
			||||||
* Streaming replication cluster via Patroni
 | 
					* Streaming replication cluster via Patroni
 | 
				
			||||||
* Point-In-Time-Recovery with
 | 
					* Point-In-Time-Recovery with
 | 
				
			||||||
[pg_basebackup](https://www.postgresql.org/docs/11/app-pgbasebackup.html) /
 | 
					[pg_basebackup](https://www.postgresql.org/docs/11/app-pgbasebackup.html) /
 | 
				
			||||||
| 
						 | 
					@ -59,13 +59,13 @@ If you are new to the operator, you can skip this and just start using the Postg
 | 
				
			||||||
The Postgres operator supports Postgres 13 with the new Spilo Image that includes also the recent Patroni version to support PG13 settings.
 | 
					The Postgres operator supports Postgres 13 with the new Spilo Image that includes also the recent Patroni version to support PG13 settings.
 | 
				
			||||||
More work on optimizing restarts and rolling upgrades is pending.
 | 
					More work on optimizing restarts and rolling upgrades is pending.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
If you are already using the Postgres operator in older version with a Spilo 12 Docker Image you need to be aware of the changes for the backup path.
 | 
					If you are already using the Postgres operator in older version with a Spilo 12 Docker image you need to be aware of the changes for the backup path.
 | 
				
			||||||
We introduce the major version into the backup path to smooth the major version upgrade that is now supported manually.
 | 
					We introduce the major version into the backup path to smoothen the [major version upgrade](docs/administrator.md#minor-and-major-version-upgrade) that is now supported manually.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The new operator configuration, sets a compatilibty flag *enable_spilo_wal_path_compat* to make Spilo look in current path but also old format paths for wal segments.
 | 
					The new operator configuration can set a compatibility flag *enable_spilo_wal_path_compat* to make Spilo look for wal segments in the current path but also old format paths.
 | 
				
			||||||
This comes at potential perf. costs, and should be disabled after a few days.
 | 
					This comes at a potential performance cost and should be disabled after a few days.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The new Spilo 13 image is: `registry.opensource.zalan.do/acid/spilo-13:2.0-p1`
 | 
					The new Spilo 13 image is: `registry.opensource.zalan.do/acid/spilo-13:2.0-p2`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
The last Spilo 12 image is: `registry.opensource.zalan.do/acid/spilo-12:1.6-p5`
 | 
					The last Spilo 12 image is: `registry.opensource.zalan.do/acid/spilo-12:1.6-p5`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
apiVersion: v1
 | 
					apiVersion: v1
 | 
				
			||||||
name: postgres-operator-ui
 | 
					name: postgres-operator-ui
 | 
				
			||||||
version: 1.5.0
 | 
					version: 1.6.0
 | 
				
			||||||
appVersion: 1.5.0
 | 
					appVersion: 1.6.0
 | 
				
			||||||
home: https://github.com/zalando/postgres-operator
 | 
					home: https://github.com/zalando/postgres-operator
 | 
				
			||||||
description: Postgres Operator UI provides a graphical interface for a convenient database-as-a-service user experience
 | 
					description: Postgres Operator UI provides a graphical interface for a convenient database-as-a-service user experience
 | 
				
			||||||
keywords:
 | 
					keywords:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,9 +1,32 @@
 | 
				
			||||||
apiVersion: v1
 | 
					apiVersion: v1
 | 
				
			||||||
entries:
 | 
					entries:
 | 
				
			||||||
  postgres-operator-ui:
 | 
					  postgres-operator-ui:
 | 
				
			||||||
 | 
					  - apiVersion: v1
 | 
				
			||||||
 | 
					    appVersion: 1.6.0
 | 
				
			||||||
 | 
					    created: "2020-12-17T15:49:56.570324588+01:00"
 | 
				
			||||||
 | 
					    description: Postgres Operator UI provides a graphical interface for a convenient
 | 
				
			||||||
 | 
					      database-as-a-service user experience
 | 
				
			||||||
 | 
					    digest: 9ce86d53b4e79dc405aea5fe2feadd163dfbbde43205782c20206ac0ba9d5e4d
 | 
				
			||||||
 | 
					    home: https://github.com/zalando/postgres-operator
 | 
				
			||||||
 | 
					    keywords:
 | 
				
			||||||
 | 
					    - postgres
 | 
				
			||||||
 | 
					    - operator
 | 
				
			||||||
 | 
					    - ui
 | 
				
			||||||
 | 
					    - cloud-native
 | 
				
			||||||
 | 
					    - patroni
 | 
				
			||||||
 | 
					    - spilo
 | 
				
			||||||
 | 
					    maintainers:
 | 
				
			||||||
 | 
					    - email: opensource@zalando.de
 | 
				
			||||||
 | 
					      name: Zalando
 | 
				
			||||||
 | 
					    name: postgres-operator-ui
 | 
				
			||||||
 | 
					    sources:
 | 
				
			||||||
 | 
					    - https://github.com/zalando/postgres-operator
 | 
				
			||||||
 | 
					    urls:
 | 
				
			||||||
 | 
					    - postgres-operator-ui-1.6.0.tgz
 | 
				
			||||||
 | 
					    version: 1.6.0
 | 
				
			||||||
  - apiVersion: v1
 | 
					  - apiVersion: v1
 | 
				
			||||||
    appVersion: 1.5.0
 | 
					    appVersion: 1.5.0
 | 
				
			||||||
    created: "2020-06-04T17:06:37.153522579+02:00"
 | 
					    created: "2020-12-17T15:49:56.569780943+01:00"
 | 
				
			||||||
    description: Postgres Operator UI provides a graphical interface for a convenient
 | 
					    description: Postgres Operator UI provides a graphical interface for a convenient
 | 
				
			||||||
      database-as-a-service user experience
 | 
					      database-as-a-service user experience
 | 
				
			||||||
    digest: c91ea39e6d51d57f4048fb1b6ec53b40823f2690eb88e4e4f1a036367b9fdd61
 | 
					    digest: c91ea39e6d51d57f4048fb1b6ec53b40823f2690eb88e4e4f1a036367b9fdd61
 | 
				
			||||||
| 
						 | 
					@ -24,29 +47,4 @@ entries:
 | 
				
			||||||
    urls:
 | 
					    urls:
 | 
				
			||||||
    - postgres-operator-ui-1.5.0.tgz
 | 
					    - postgres-operator-ui-1.5.0.tgz
 | 
				
			||||||
    version: 1.5.0
 | 
					    version: 1.5.0
 | 
				
			||||||
  - apiVersion: v1
 | 
					generated: "2020-12-17T15:49:56.569108956+01:00"
 | 
				
			||||||
    appVersion: 1.4.0
 | 
					 | 
				
			||||||
    created: "2020-06-04T17:06:37.15302073+02:00"
 | 
					 | 
				
			||||||
    description: Postgres Operator UI provides a graphical interface for a convenient
 | 
					 | 
				
			||||||
      database-as-a-service user experience
 | 
					 | 
				
			||||||
    digest: 00e0eff7056d56467cd5c975657fbb76c8d01accd25a4b7aca81bc42aeac961d
 | 
					 | 
				
			||||||
    home: https://github.com/zalando/postgres-operator
 | 
					 | 
				
			||||||
    keywords:
 | 
					 | 
				
			||||||
    - postgres
 | 
					 | 
				
			||||||
    - operator
 | 
					 | 
				
			||||||
    - ui
 | 
					 | 
				
			||||||
    - cloud-native
 | 
					 | 
				
			||||||
    - patroni
 | 
					 | 
				
			||||||
    - spilo
 | 
					 | 
				
			||||||
    maintainers:
 | 
					 | 
				
			||||||
    - email: opensource@zalando.de
 | 
					 | 
				
			||||||
      name: Zalando
 | 
					 | 
				
			||||||
    - email: sk@sik-net.de
 | 
					 | 
				
			||||||
      name: siku4
 | 
					 | 
				
			||||||
    name: postgres-operator-ui
 | 
					 | 
				
			||||||
    sources:
 | 
					 | 
				
			||||||
    - https://github.com/zalando/postgres-operator
 | 
					 | 
				
			||||||
    urls:
 | 
					 | 
				
			||||||
    - postgres-operator-ui-1.4.0.tgz
 | 
					 | 
				
			||||||
    version: 1.4.0
 | 
					 | 
				
			||||||
generated: "2020-06-04T17:06:37.152369987+02:00"
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -68,10 +68,8 @@ spec:
 | 
				
			||||||
                  "resources_visible": true,
 | 
					                  "resources_visible": true,
 | 
				
			||||||
                  "users_visible": true,
 | 
					                  "users_visible": true,
 | 
				
			||||||
                  "postgresql_versions": [
 | 
					                  "postgresql_versions": [
 | 
				
			||||||
 | 
					                    "13",
 | 
				
			||||||
                    "12",
 | 
					                    "12",
 | 
				
			||||||
                    "11",
 | 
					                    "11"
 | 
				
			||||||
                    "10",
 | 
					 | 
				
			||||||
                    "9.6",
 | 
					 | 
				
			||||||
                    "9.5"
 | 
					 | 
				
			||||||
                  ]
 | 
					                  ]
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,7 +8,7 @@ replicaCount: 1
 | 
				
			||||||
image:
 | 
					image:
 | 
				
			||||||
  registry: registry.opensource.zalan.do
 | 
					  registry: registry.opensource.zalan.do
 | 
				
			||||||
  repository: acid/postgres-operator-ui
 | 
					  repository: acid/postgres-operator-ui
 | 
				
			||||||
  tag: v1.5.0-dirty
 | 
					  tag: v1.6.0
 | 
				
			||||||
  pullPolicy: "IfNotPresent"
 | 
					  pullPolicy: "IfNotPresent"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Optionally specify an array of imagePullSecrets.
 | 
					# Optionally specify an array of imagePullSecrets.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
apiVersion: v1
 | 
					apiVersion: v1
 | 
				
			||||||
name: postgres-operator
 | 
					name: postgres-operator
 | 
				
			||||||
version: 1.5.0
 | 
					version: 1.6.0
 | 
				
			||||||
appVersion: 1.5.0
 | 
					appVersion: 1.6.0
 | 
				
			||||||
home: https://github.com/zalando/postgres-operator
 | 
					home: https://github.com/zalando/postgres-operator
 | 
				
			||||||
description: Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes
 | 
					description: Postgres Operator creates and manages PostgreSQL clusters running in Kubernetes
 | 
				
			||||||
keywords:
 | 
					keywords:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,9 +1,31 @@
 | 
				
			||||||
apiVersion: v1
 | 
					apiVersion: v1
 | 
				
			||||||
entries:
 | 
					entries:
 | 
				
			||||||
  postgres-operator:
 | 
					  postgres-operator:
 | 
				
			||||||
 | 
					  - apiVersion: v1
 | 
				
			||||||
 | 
					    appVersion: 1.6.0
 | 
				
			||||||
 | 
					    created: "2020-12-17T15:46:21.948364251+01:00"
 | 
				
			||||||
 | 
					    description: Postgres Operator creates and manages PostgreSQL clusters running
 | 
				
			||||||
 | 
					      in Kubernetes
 | 
				
			||||||
 | 
					    digest: de1306a53dd8264a2703fe0867b43a13b1e378e6d81f6200ecdea1c8ef9d202d
 | 
				
			||||||
 | 
					    home: https://github.com/zalando/postgres-operator
 | 
				
			||||||
 | 
					    keywords:
 | 
				
			||||||
 | 
					    - postgres
 | 
				
			||||||
 | 
					    - operator
 | 
				
			||||||
 | 
					    - cloud-native
 | 
				
			||||||
 | 
					    - patroni
 | 
				
			||||||
 | 
					    - spilo
 | 
				
			||||||
 | 
					    maintainers:
 | 
				
			||||||
 | 
					    - email: opensource@zalando.de
 | 
				
			||||||
 | 
					      name: Zalando
 | 
				
			||||||
 | 
					    name: postgres-operator
 | 
				
			||||||
 | 
					    sources:
 | 
				
			||||||
 | 
					    - https://github.com/zalando/postgres-operator
 | 
				
			||||||
 | 
					    urls:
 | 
				
			||||||
 | 
					    - postgres-operator-1.6.0.tgz
 | 
				
			||||||
 | 
					    version: 1.6.0
 | 
				
			||||||
  - apiVersion: v1
 | 
					  - apiVersion: v1
 | 
				
			||||||
    appVersion: 1.5.0
 | 
					    appVersion: 1.5.0
 | 
				
			||||||
    created: "2020-06-04T17:06:49.41741489+02:00"
 | 
					    created: "2020-12-17T15:46:21.945665932+01:00"
 | 
				
			||||||
    description: Postgres Operator creates and manages PostgreSQL clusters running
 | 
					    description: Postgres Operator creates and manages PostgreSQL clusters running
 | 
				
			||||||
      in Kubernetes
 | 
					      in Kubernetes
 | 
				
			||||||
    digest: 198351d5db52e65cdf383d6f3e1745d91ac1e2a01121f8476f8b1be728b09531
 | 
					    digest: 198351d5db52e65cdf383d6f3e1745d91ac1e2a01121f8476f8b1be728b09531
 | 
				
			||||||
| 
						 | 
					@ -23,26 +45,4 @@ entries:
 | 
				
			||||||
    urls:
 | 
					    urls:
 | 
				
			||||||
    - postgres-operator-1.5.0.tgz
 | 
					    - postgres-operator-1.5.0.tgz
 | 
				
			||||||
    version: 1.5.0
 | 
					    version: 1.5.0
 | 
				
			||||||
  - apiVersion: v1
 | 
					generated: "2020-12-17T15:46:21.937893219+01:00"
 | 
				
			||||||
    appVersion: 1.4.0
 | 
					 | 
				
			||||||
    created: "2020-06-04T17:06:49.416001109+02:00"
 | 
					 | 
				
			||||||
    description: Postgres Operator creates and manages PostgreSQL clusters running
 | 
					 | 
				
			||||||
      in Kubernetes
 | 
					 | 
				
			||||||
    digest: f8b90fecfc3cb825b94ed17edd9d5cefc36ae61801d4568597b4a79bcd73b2e9
 | 
					 | 
				
			||||||
    home: https://github.com/zalando/postgres-operator
 | 
					 | 
				
			||||||
    keywords:
 | 
					 | 
				
			||||||
    - postgres
 | 
					 | 
				
			||||||
    - operator
 | 
					 | 
				
			||||||
    - cloud-native
 | 
					 | 
				
			||||||
    - patroni
 | 
					 | 
				
			||||||
    - spilo
 | 
					 | 
				
			||||||
    maintainers:
 | 
					 | 
				
			||||||
    - email: opensource@zalando.de
 | 
					 | 
				
			||||||
      name: Zalando
 | 
					 | 
				
			||||||
    name: postgres-operator
 | 
					 | 
				
			||||||
    sources:
 | 
					 | 
				
			||||||
    - https://github.com/zalando/postgres-operator
 | 
					 | 
				
			||||||
    urls:
 | 
					 | 
				
			||||||
    - postgres-operator-1.4.0.tgz
 | 
					 | 
				
			||||||
    version: 1.4.0
 | 
					 | 
				
			||||||
generated: "2020-06-04T17:06:49.414521538+02:00"
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
image:
 | 
					image:
 | 
				
			||||||
  registry: registry.opensource.zalan.do
 | 
					  registry: registry.opensource.zalan.do
 | 
				
			||||||
  repository: acid/postgres-operator
 | 
					  repository: acid/postgres-operator
 | 
				
			||||||
  tag: v1.5.0
 | 
					  tag: v1.6.0
 | 
				
			||||||
  pullPolicy: "IfNotPresent"
 | 
					  pullPolicy: "IfNotPresent"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Optionally specify an array of imagePullSecrets.
 | 
					# Optionally specify an array of imagePullSecrets.
 | 
				
			||||||
| 
						 | 
					@ -32,7 +32,7 @@ configGeneral:
 | 
				
			||||||
  # Select if setup uses endpoints (default), or configmaps to manage leader (DCS=k8s)
 | 
					  # Select if setup uses endpoints (default), or configmaps to manage leader (DCS=k8s)
 | 
				
			||||||
  # kubernetes_use_configmaps: false
 | 
					  # kubernetes_use_configmaps: false
 | 
				
			||||||
  # Spilo docker image
 | 
					  # Spilo docker image
 | 
				
			||||||
  docker_image: registry.opensource.zalan.do/acid/spilo-12:1.6-p3
 | 
					  docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p2
 | 
				
			||||||
  # max number of instances in Postgres cluster. -1 = no limit
 | 
					  # max number of instances in Postgres cluster. -1 = no limit
 | 
				
			||||||
  min_instances: -1
 | 
					  min_instances: -1
 | 
				
			||||||
  # min number of instances in Postgres cluster. -1 = no limit
 | 
					  # min number of instances in Postgres cluster. -1 = no limit
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
image:
 | 
					image:
 | 
				
			||||||
  registry: registry.opensource.zalan.do
 | 
					  registry: registry.opensource.zalan.do
 | 
				
			||||||
  repository: acid/postgres-operator
 | 
					  repository: acid/postgres-operator
 | 
				
			||||||
  tag: v1.5.0
 | 
					  tag: v1.6.0
 | 
				
			||||||
  pullPolicy: "IfNotPresent"
 | 
					  pullPolicy: "IfNotPresent"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Optionally specify an array of imagePullSecrets.
 | 
					# Optionally specify an array of imagePullSecrets.
 | 
				
			||||||
| 
						 | 
					@ -35,7 +35,7 @@ configGeneral:
 | 
				
			||||||
  # Select if setup uses endpoints (default), or configmaps to manage leader (DCS=k8s)
 | 
					  # Select if setup uses endpoints (default), or configmaps to manage leader (DCS=k8s)
 | 
				
			||||||
  # kubernetes_use_configmaps: "false"
 | 
					  # kubernetes_use_configmaps: "false"
 | 
				
			||||||
  # Spilo docker image
 | 
					  # Spilo docker image
 | 
				
			||||||
  docker_image: registry.opensource.zalan.do/acid/spilo-12:1.6-p3
 | 
					  docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p2
 | 
				
			||||||
  # max number of instances in Postgres cluster. -1 = no limit
 | 
					  # max number of instances in Postgres cluster. -1 = no limit
 | 
				
			||||||
  min_instances: "-1"
 | 
					  min_instances: "-1"
 | 
				
			||||||
  # min number of instances in Postgres cluster. -1 = no limit
 | 
					  # min number of instances in Postgres cluster. -1 = no limit
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -55,7 +55,7 @@ pipeline:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - id: build-operator-ui
 | 
					    - id: build-operator-ui
 | 
				
			||||||
      type: script
 | 
					      type: script
 | 
				
			||||||
      requires_human_approval: true
 | 
					
 | 
				
			||||||
      commands:
 | 
					      commands:
 | 
				
			||||||
        - desc: 'Prepare environment'
 | 
					        - desc: 'Prepare environment'
 | 
				
			||||||
          cmd: |
 | 
					          cmd: |
 | 
				
			||||||
| 
						 | 
					@ -83,7 +83,7 @@ pipeline:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    - id: build-logical-backup
 | 
					    - id: build-logical-backup
 | 
				
			||||||
      type: script
 | 
					      type: script
 | 
				
			||||||
      requires_human_approval: true
 | 
					
 | 
				
			||||||
      commands:
 | 
					      commands:
 | 
				
			||||||
        - desc: Build image
 | 
					        - desc: Build image
 | 
				
			||||||
          cmd: |
 | 
					          cmd: |
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,7 +8,7 @@ IFS=$'\n\t'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
readonly cluster_name="postgres-operator-e2e-tests"
 | 
					readonly cluster_name="postgres-operator-e2e-tests"
 | 
				
			||||||
readonly kubeconfig_path="/tmp/kind-config-${cluster_name}"
 | 
					readonly kubeconfig_path="/tmp/kind-config-${cluster_name}"
 | 
				
			||||||
readonly spilo_image="registry.opensource.zalan.do/acid/spilo-13:2.0-p1"
 | 
					readonly spilo_image="registry.opensource.zalan.do/acid/spilo-13:2.0-p2"
 | 
				
			||||||
readonly e2e_test_runner_image="registry.opensource.zalan.do/acid/postgres-operator-e2e-tests-runner:0.3"
 | 
					readonly e2e_test_runner_image="registry.opensource.zalan.do/acid/postgres-operator-e2e-tests-runner:0.3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export GOPATH=${GOPATH-~/go}
 | 
					export GOPATH=${GOPATH-~/go}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -11,7 +11,7 @@ from kubernetes import client
 | 
				
			||||||
from tests.k8s_api import K8s
 | 
					from tests.k8s_api import K8s
 | 
				
			||||||
from kubernetes.client.rest import ApiException
 | 
					from kubernetes.client.rest import ApiException
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SPILO_CURRENT = "registry.opensource.zalan.do/acid/spilo-13:2.0-p1"
 | 
					SPILO_CURRENT = "registry.opensource.zalan.do/acid/spilo-13:2.0-p2"
 | 
				
			||||||
SPILO_LAZY = "registry.opensource.zalan.do/acid/spilo-cdp-13:2.0-p145"
 | 
					SPILO_LAZY = "registry.opensource.zalan.do/acid/spilo-cdp-13:2.0-p145"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,7 +9,7 @@ metadata:
 | 
				
			||||||
#    "delete-date": "2020-08-31"  # can only be deleted on that day if "delete-date "key is configured
 | 
					#    "delete-date": "2020-08-31"  # can only be deleted on that day if "delete-date "key is configured
 | 
				
			||||||
#    "delete-clustername": "acid-test-cluster"  # can only be deleted when name matches if "delete-clustername" key is configured
 | 
					#    "delete-clustername": "acid-test-cluster"  # can only be deleted when name matches if "delete-clustername" key is configured
 | 
				
			||||||
spec:
 | 
					spec:
 | 
				
			||||||
  dockerImage: registry.opensource.zalan.do/acid/spilo-12:1.6-p3
 | 
					  dockerImage: registry.opensource.zalan.do/acid/spilo-13:2.0-p2
 | 
				
			||||||
  teamId: "acid"
 | 
					  teamId: "acid"
 | 
				
			||||||
  numberOfInstances: 2
 | 
					  numberOfInstances: 2
 | 
				
			||||||
  users:  # Application/Robot users
 | 
					  users:  # Application/Robot users
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -31,7 +31,7 @@ data:
 | 
				
			||||||
  # default_memory_request: 100Mi
 | 
					  # default_memory_request: 100Mi
 | 
				
			||||||
  # delete_annotation_date_key: delete-date
 | 
					  # delete_annotation_date_key: delete-date
 | 
				
			||||||
  # delete_annotation_name_key: delete-clustername
 | 
					  # delete_annotation_name_key: delete-clustername
 | 
				
			||||||
  docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p1
 | 
					  docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p2
 | 
				
			||||||
  # downscaler_annotations: "deployment-time,downscaler/*"
 | 
					  # downscaler_annotations: "deployment-time,downscaler/*"
 | 
				
			||||||
  # enable_admin_role_for_users: "true"
 | 
					  # enable_admin_role_for_users: "true"
 | 
				
			||||||
  # enable_crd_validation: "true"
 | 
					  # enable_crd_validation: "true"
 | 
				
			||||||
| 
						 | 
					@ -48,7 +48,6 @@ data:
 | 
				
			||||||
  # enable_postgres_team_crd_superusers: "false"
 | 
					  # enable_postgres_team_crd_superusers: "false"
 | 
				
			||||||
  enable_replica_load_balancer: "false"
 | 
					  enable_replica_load_balancer: "false"
 | 
				
			||||||
  # enable_shm_volume: "true"
 | 
					  # enable_shm_volume: "true"
 | 
				
			||||||
  enable_pgversion_env_var: "true"
 | 
					 | 
				
			||||||
  # enable_sidecars: "true"
 | 
					  # enable_sidecars: "true"
 | 
				
			||||||
  enable_spilo_wal_path_compat: "true"
 | 
					  enable_spilo_wal_path_compat: "true"
 | 
				
			||||||
  # enable_team_superuser: "false"
 | 
					  # enable_team_superuser: "false"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,7 +19,7 @@ spec:
 | 
				
			||||||
      serviceAccountName: postgres-operator
 | 
					      serviceAccountName: postgres-operator
 | 
				
			||||||
      containers:
 | 
					      containers:
 | 
				
			||||||
      - name: postgres-operator
 | 
					      - name: postgres-operator
 | 
				
			||||||
        image: registry.opensource.zalan.do/acid/postgres-operator:v1.5.0
 | 
					        image: registry.opensource.zalan.do/acid/postgres-operator:v1.6.0
 | 
				
			||||||
        imagePullPolicy: IfNotPresent
 | 
					        imagePullPolicy: IfNotPresent
 | 
				
			||||||
        resources:
 | 
					        resources:
 | 
				
			||||||
          requests:
 | 
					          requests:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,7 +3,7 @@ kind: OperatorConfiguration
 | 
				
			||||||
metadata:
 | 
					metadata:
 | 
				
			||||||
  name: postgresql-operator-default-configuration
 | 
					  name: postgresql-operator-default-configuration
 | 
				
			||||||
configuration:
 | 
					configuration:
 | 
				
			||||||
  docker_image: registry.opensource.zalan.do/acid/spilo-12:1.6-p3
 | 
					  docker_image: registry.opensource.zalan.do/acid/spilo-13:2.0-p2
 | 
				
			||||||
  # enable_crd_validation: true
 | 
					  # enable_crd_validation: true
 | 
				
			||||||
  # enable_lazy_spilo_upgrade: false
 | 
					  # enable_lazy_spilo_upgrade: false
 | 
				
			||||||
  enable_pgversion_env_var: true
 | 
					  enable_pgversion_env_var: true
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,7 +9,7 @@ spec:
 | 
				
			||||||
    size: 1Gi
 | 
					    size: 1Gi
 | 
				
			||||||
  numberOfInstances: 1
 | 
					  numberOfInstances: 1
 | 
				
			||||||
  postgresql:
 | 
					  postgresql:
 | 
				
			||||||
    version: "12"
 | 
					    version: "13"
 | 
				
			||||||
# Make this a standby cluster and provide the s3 bucket path of source cluster for continuous streaming.
 | 
					# Make this a standby cluster and provide the s3 bucket path of source cluster for continuous streaming.
 | 
				
			||||||
  standby:
 | 
					  standby:
 | 
				
			||||||
    s3_wal_path: "s3://path/to/bucket/containing/wal/of/source/cluster/"
 | 
					    s3_wal_path: "s3://path/to/bucket/containing/wal/of/source/cluster/"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -39,7 +39,7 @@ func (c *Controller) importConfigurationFromCRD(fromCRD *acidv1.OperatorConfigur
 | 
				
			||||||
	result.EnableSpiloWalPathCompat = fromCRD.EnableSpiloWalPathCompat
 | 
						result.EnableSpiloWalPathCompat = fromCRD.EnableSpiloWalPathCompat
 | 
				
			||||||
	result.EtcdHost = fromCRD.EtcdHost
 | 
						result.EtcdHost = fromCRD.EtcdHost
 | 
				
			||||||
	result.KubernetesUseConfigMaps = fromCRD.KubernetesUseConfigMaps
 | 
						result.KubernetesUseConfigMaps = fromCRD.KubernetesUseConfigMaps
 | 
				
			||||||
	result.DockerImage = util.Coalesce(fromCRD.DockerImage, "registry.opensource.zalan.do/acid/spilo-12:1.6-p3")
 | 
						result.DockerImage = util.Coalesce(fromCRD.DockerImage, "registry.opensource.zalan.do/acid/spilo-13:2.0-p2")
 | 
				
			||||||
	result.Workers = util.CoalesceUInt32(fromCRD.Workers, 8)
 | 
						result.Workers = util.CoalesceUInt32(fromCRD.Workers, 8)
 | 
				
			||||||
	result.MinInstances = fromCRD.MinInstances
 | 
						result.MinInstances = fromCRD.MinInstances
 | 
				
			||||||
	result.MaxInstances = fromCRD.MaxInstances
 | 
						result.MaxInstances = fromCRD.MaxInstances
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -149,7 +149,7 @@ type Config struct {
 | 
				
			||||||
	WatchedNamespace        string            `name:"watched_namespace"` // special values: "*" means 'watch all namespaces', the empty string "" means 'watch a namespace where operator is deployed to'
 | 
						WatchedNamespace        string            `name:"watched_namespace"` // special values: "*" means 'watch all namespaces', the empty string "" means 'watch a namespace where operator is deployed to'
 | 
				
			||||||
	KubernetesUseConfigMaps bool              `name:"kubernetes_use_configmaps" default:"false"`
 | 
						KubernetesUseConfigMaps bool              `name:"kubernetes_use_configmaps" default:"false"`
 | 
				
			||||||
	EtcdHost                string            `name:"etcd_host" default:""` // special values: the empty string "" means Patroni will use K8s as a DCS
 | 
						EtcdHost                string            `name:"etcd_host" default:""` // special values: the empty string "" means Patroni will use K8s as a DCS
 | 
				
			||||||
	DockerImage             string            `name:"docker_image" default:"registry.opensource.zalan.do/acid/spilo-12:1.6-p3"`
 | 
						DockerImage             string            `name:"docker_image" default:"registry.opensource.zalan.do/acid/spilo-13:2.0-p2"`
 | 
				
			||||||
	SidecarImages           map[string]string `name:"sidecar_docker_images"` // deprecated in favour of SidecarContainers
 | 
						SidecarImages           map[string]string `name:"sidecar_docker_images"` // deprecated in favour of SidecarContainers
 | 
				
			||||||
	SidecarContainers       []v1.Container    `name:"sidecars"`
 | 
						SidecarContainers       []v1.Container    `name:"sidecars"`
 | 
				
			||||||
	PodServiceAccountName   string            `name:"pod_service_account_name" default:"postgres-pod"`
 | 
						PodServiceAccountName   string            `name:"pod_service_account_name" default:"postgres-pod"`
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -20,7 +20,7 @@ spec:
 | 
				
			||||||
      serviceAccountName: postgres-operator-ui
 | 
					      serviceAccountName: postgres-operator-ui
 | 
				
			||||||
      containers:
 | 
					      containers:
 | 
				
			||||||
        - name: "service"
 | 
					        - name: "service"
 | 
				
			||||||
          image: registry.opensource.zalan.do/acid/postgres-operator-ui:v1.5.0-dirty
 | 
					          image: registry.opensource.zalan.do/acid/postgres-operator-ui:v1.6.0
 | 
				
			||||||
          ports:
 | 
					          ports:
 | 
				
			||||||
            - containerPort: 8081
 | 
					            - containerPort: 8081
 | 
				
			||||||
              protocol: "TCP"
 | 
					              protocol: "TCP"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -23,11 +23,9 @@ default_operator_ui_config='{
 | 
				
			||||||
  "cost_core": 0.0575,
 | 
					  "cost_core": 0.0575,
 | 
				
			||||||
  "cost_memory": 0.014375,
 | 
					  "cost_memory": 0.014375,
 | 
				
			||||||
  "postgresql_versions": [
 | 
					  "postgresql_versions": [
 | 
				
			||||||
 | 
					    "13",
 | 
				
			||||||
    "12",
 | 
					    "12",
 | 
				
			||||||
    "11",
 | 
					    "11"
 | 
				
			||||||
    "10",
 | 
					 | 
				
			||||||
    "9.6",
 | 
					 | 
				
			||||||
    "9.5"
 | 
					 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  "static_network_whitelist": {
 | 
					  "static_network_whitelist": {
 | 
				
			||||||
    "localhost": ["172.0.0.1/32"]
 | 
					    "localhost": ["172.0.0.1/32"]
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue