Skip to content

Commit 4b5f453

Browse files
committed
update deploy CRDs and bump Helm chart version
Signed-off-by: Kamil Markowicz <kamil@markowicz.net>
1 parent e253c7c commit 4b5f453

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

charts/ext-postgres-operator/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: ext-postgres-operator
33
description: |
44
A Helm chart for the External Postgres operator
5-
5+
66
helm repo add ext-postgres-operator https://movetokube.github.io/postgres-operator/
77
helm upgrade --install -n operators ext-postgres-operator ext-postgres-operator/ext-postgres-operator --version 1.2.3
88
@@ -11,10 +11,10 @@ type: application
1111
# This is the chart version. This version number should be incremented each time you make changes
1212
# to the chart and its templates, including the app version.
1313
# Versions are expected to follow Semantic Versioning (https://semver.org/)
14-
version: 1.2.6
14+
version: 1.2.7
1515

1616
# This is the version number of the application being deployed. This version number should be
1717
# incremented each time you make changes to the application. Versions are not expected to
1818
# follow Semantic Versioning. They should reflect the version the application is using.
1919
# It is recommended to use it with quotes.
20-
appVersion: "1.3.3"
20+
appVersion: "1.3.5"

charts/ext-postgres-operator/crds/db.movetokube.com_postgresusers_crd.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ spec:
3737
type: object
3838
database:
3939
type: string
40+
labels:
41+
additionalProperties:
42+
type: string
43+
type: object
4044
privileges:
4145
type: string
4246
role:

deploy/crds/db_v1alpha1_postgresuser_cr.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ spec:
77
role: username
88
database: my-db # This references the Postgres CR
99
secretName: my-secret
10-
privileges: OWNER # Can be OWNER/READ/WRITE
10+
privileges: OWNER # Can be OWNER/READ/WRITE
11+
labels: # optional labels to propagate to the secret
12+
custom-label: custom-value

0 commit comments

Comments
 (0)