Skip to content

Commit 7b94060

Browse files
authored
fix validation for S3ForcePathStyle (zalando#841)
1 parent e2a9b03 commit 7b94060

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/postgres-operator/crds/postgresqls.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
s3_secret_access_key:
9595
type: string
9696
s3_force_path_style:
97-
type: string
97+
type: boolean
9898
s3_wal_path:
9999
type: string
100100
timestamp:

manifests/postgresql.crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
s3_secret_access_key:
5959
type: string
6060
s3_force_path_style:
61-
type: string
61+
type: boolean
6262
s3_wal_path:
6363
type: string
6464
timestamp:

pkg/apis/acid.zalan.do/v1/crds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ var PostgresCRDResourceValidation = apiextv1beta1.CustomResourceValidation{
160160
Type: "string",
161161
},
162162
"s3_force_path_style": {
163-
Type: "string",
163+
Type: "boolean",
164164
},
165165
"s3_wal_path": {
166166
Type: "string",

0 commit comments

Comments
 (0)