Skip to content

Commit b008e0a

Browse files
authored
Merge branch 'main' into K8SPG-637
2 parents 4c2e32a + 35cc754 commit b008e0a

File tree

14 files changed

+51
-6
lines changed

14 files changed

+51
-6
lines changed

build/crd/crunchy/generated/postgres-operator.crunchydata.com_postgresclusters.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17756,6 +17756,8 @@ spec:
1775617756
format: int64
1775717757
type: integer
1775817758
type: array
17759+
tlsOnly:
17760+
type: boolean
1775917761
userInterface:
1776017762
description: The specification of a user interface that connects to
1776117763
PostgreSQL.

build/crd/percona/generated/pgv2.percona.com_perconapgclusters.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17427,6 +17427,8 @@ spec:
1742717427
pattern: ^repo[1-4]
1742817428
type: string
1742917429
type: object
17430+
tlsOnly:
17431+
type: boolean
1743017432
unmanaged:
1743117433
description: |-
1743217434
Suspends the rollout and reconciliation of changes made to the

config/crd/bases/pgv2.percona.com_perconapgclusters.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17833,6 +17833,8 @@ spec:
1783317833
pattern: ^repo[1-4]
1783417834
type: string
1783517835
type: object
17836+
tlsOnly:
17837+
type: boolean
1783617838
unmanaged:
1783717839
description: |-
1783817840
Suspends the rollout and reconciliation of changes made to the

config/crd/bases/postgres-operator.crunchydata.com_postgresclusters.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17667,6 +17667,8 @@ spec:
1766717667
minimum: 1
1766817668
type: integer
1766917669
type: array
17670+
tlsOnly:
17671+
type: boolean
1767017672
userInterface:
1767117673
description: The specification of a user interface that connects to
1767217674
PostgreSQL.

deploy/bundle.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18126,6 +18126,8 @@ spec:
1812618126
pattern: ^repo[1-4]
1812718127
type: string
1812818128
type: object
18129+
tlsOnly:
18130+
type: boolean
1812918131
unmanaged:
1813018132
description: |-
1813118133
Suspends the rollout and reconciliation of changes made to the
@@ -43350,6 +43352,8 @@ spec:
4335043352
minimum: 1
4335143353
type: integer
4335243354
type: array
43355+
tlsOnly:
43356+
type: boolean
4335343357
userInterface:
4335443358
description: The specification of a user interface that connects to
4335543359
PostgreSQL.

deploy/cr.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ spec:
2424
# name: cluster1-cert
2525
# customReplicationTLSSecret:
2626
# name: replication1-cert
27+
# tlsOnly: false
2728

2829
# standby:
2930
# enabled: true

deploy/crd.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18126,6 +18126,8 @@ spec:
1812618126
pattern: ^repo[1-4]
1812718127
type: string
1812818128
type: object
18129+
tlsOnly:
18130+
type: boolean
1812918131
unmanaged:
1813018132
description: |-
1813118133
Suspends the rollout and reconciliation of changes made to the
@@ -43350,6 +43352,8 @@ spec:
4335043352
minimum: 1
4335143353
type: integer
4335243354
type: array
43355+
tlsOnly:
43356+
type: boolean
4335343357
userInterface:
4335443358
description: The specification of a user interface that connects to
4335543359
PostgreSQL.

deploy/cw-bundle.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18126,6 +18126,8 @@ spec:
1812618126
pattern: ^repo[1-4]
1812718127
type: string
1812818128
type: object
18129+
tlsOnly:
18130+
type: boolean
1812918131
unmanaged:
1813018132
description: |-
1813118133
Suspends the rollout and reconciliation of changes made to the
@@ -43350,6 +43352,8 @@ spec:
4335043352
minimum: 1
4335143353
type: integer
4335243354
type: array
43355+
tlsOnly:
43356+
type: boolean
4335343357
userInterface:
4335443358
description: The specification of a user interface that connects to
4335543359
PostgreSQL.

go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,19 @@ require (
3030
go.opentelemetry.io/otel/trace v1.33.0
3131
go.uber.org/zap v1.27.0
3232
golang.org/x/crypto v0.32.0
33-
google.golang.org/grpc v1.69.2
33+
google.golang.org/grpc v1.69.4
3434
gotest.tools/v3 v3.5.1
3535
k8s.io/api v0.32.0
3636
k8s.io/apimachinery v0.32.0
3737
k8s.io/client-go v0.32.0
3838
k8s.io/component-base v0.32.0
39-
sigs.k8s.io/controller-runtime v0.19.3
39+
sigs.k8s.io/controller-runtime v0.19.4
4040
sigs.k8s.io/yaml v1.4.0
4141
)
4242

4343
require (
4444
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
45+
github.com/fsnotify/fsnotify v1.7.0 // indirect
4546
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
4647
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
4748
github.com/gorilla/websocket v1.5.0 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,8 @@ google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyac
363363
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
364364
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
365365
google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk=
366-
google.golang.org/grpc v1.69.2 h1:U3S9QEtbXC0bYNvRtcoklF3xGtLViumSYxWykJS+7AU=
367-
google.golang.org/grpc v1.69.2/go.mod h1:vyjdE6jLBI76dgpDojsFGNaHlxdjXN9ghpnd2o7JGZ4=
366+
google.golang.org/grpc v1.69.4 h1:MF5TftSMkd8GLw/m0KM6V8CMOCY6NZ1NQDPGFgbTt4A=
367+
google.golang.org/grpc v1.69.4/go.mod h1:vyjdE6jLBI76dgpDojsFGNaHlxdjXN9ghpnd2o7JGZ4=
368368
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
369369
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
370370
google.golang.org/protobuf v1.36.1 h1:yBPeRvTftaleIgM3PZ/WBIZ7XM/eEYAaEyCwvyjq/gk=
@@ -408,8 +408,8 @@ k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f h1:GA7//TjRY9yWGy1poLzYYJ
408408
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f/go.mod h1:R/HEjbvWI0qdfb8viZUeVZm0X6IZnxAydC7YU42CMw4=
409409
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 h1:M3sRQVHv7vB20Xc2ybTt7ODCeFj6JSWYFzOFnYeS6Ro=
410410
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
411-
sigs.k8s.io/controller-runtime v0.19.3 h1:XO2GvC9OPftRst6xWCpTgBZO04S2cbp0Qqkj8bX1sPw=
412-
sigs.k8s.io/controller-runtime v0.19.3/go.mod h1:j4j87DqtsThvwTv5/Tc5NFRyyF/RF0ip4+62tbTSIUM=
411+
sigs.k8s.io/controller-runtime v0.19.4 h1:SUmheabttt0nx8uJtoII4oIP27BVVvAKFvdvGFwV/Qo=
412+
sigs.k8s.io/controller-runtime v0.19.4/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
413413
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 h1:/Rv+M11QRah1itp8VhT6HoVx1Ray9eB4DBr+K+/sCJ8=
414414
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3/go.mod h1:18nIHnGi6636UCz6m8i4DhaJ65T6EruyzmoQqI2BVDo=
415415
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 h1:MdmvkGuXi/8io6ixD5wud3vOLwc1rj0aNqRlpuvjmwA=

0 commit comments

Comments
 (0)