File tree Expand file tree Collapse file tree 12 files changed +113
-54
lines changed Expand file tree Collapse file tree 12 files changed +113
-54
lines changed Original file line number Diff line number Diff line change @@ -424,10 +424,10 @@ spec:
424
424
default : " Cluster"
425
425
master_dns_name_format :
426
426
type : string
427
- default : " {cluster}.{team }.{hostedzone}"
427
+ default : " {cluster}.{namespace }.{hostedzone}"
428
428
replica_dns_name_format :
429
429
type : string
430
- default : " {cluster}-repl.{team }.{hostedzone}"
430
+ default : " {cluster}-repl.{namespace }.{hostedzone}"
431
431
aws_or_gcp :
432
432
type : object
433
433
properties :
Original file line number Diff line number Diff line change @@ -269,9 +269,9 @@ configLoadBalancer:
269
269
# define external traffic policy for the load balancer
270
270
external_traffic_policy : " Cluster"
271
271
# defines the DNS name string template for the master load balancer cluster
272
- master_dns_name_format : " {cluster}.{team }.{hostedzone}"
272
+ master_dns_name_format : " {cluster}.{namespace }.{hostedzone}"
273
273
# defines the DNS name string template for the replica load balancer cluster
274
- replica_dns_name_format : " {cluster}-repl.{team }.{hostedzone}"
274
+ replica_dns_name_format : " {cluster}-repl.{namespace }.{hostedzone}"
275
275
276
276
# options to aid debugging of the operator itself
277
277
configDebug :
Original file line number Diff line number Diff line change @@ -617,15 +617,15 @@ In the CRD-based configuration they are grouped under the `load_balancer` key.
617
617
618
618
* ** master_dns_name_format** defines the DNS name string template for the
619
619
master load balancer cluster. The default is
620
- ` {cluster}.{team }.{hostedzone} ` , where ` {cluster} ` is replaced by the cluster
621
- name, ` {team } ` is replaced with the team name and ` {hostedzone} ` is replaced
620
+ ` {cluster}.{namespace }.{hostedzone} ` , where ` {cluster} ` is replaced by the cluster
621
+ name, ` {namespace } ` is replaced with the namespace and ` {hostedzone} ` is replaced
622
622
with the hosted zone (the value of the ` db_hosted_zone ` parameter). No other
623
623
placeholders are allowed.
624
624
625
625
* ** replica_dns_name_format** defines the DNS name string template for the
626
626
replica load balancer cluster. The default is
627
- ` {cluster}-repl.{team }.{hostedzone} ` , where ` {cluster} ` is replaced by the
628
- cluster name, ` {team } ` is replaced with the team name and ` {hostedzone} ` is
627
+ ` {cluster}-repl.{namespace }.{hostedzone} ` , where ` {cluster} ` is replaced by the
628
+ cluster name, ` {namespace } ` is replaced with the namespace and ` {hostedzone} ` is
629
629
replaced with the hosted zone (the value of the ` db_hosted_zone ` parameter).
630
630
No other placeholders are allowed.
631
631
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ specified explicitly.
152
152
153
153
The operator automatically generates a password for each manifest role and
154
154
places it in the secret named
155
- ` {username}.{team}-{ clustername}.credentials.postgresql.acid.zalan.do` in the
155
+ ` {username}.{clustername}.credentials.postgresql.acid.zalan.do` in the
156
156
same namespace as the cluster. This way, the application running in the
157
157
K8s cluster and connecting to Postgres can obtain the password right from the
158
158
secret, without ever sharing it outside of the cluster.
@@ -182,7 +182,7 @@ be in the form of `namespace.username`.
182
182
183
183
For such usernames, the secret is created in the given namespace and its name is
184
184
of the following form,
185
- ` {namespace}.{username}.{team}-{ clustername}.credentials.postgresql.acid.zalan.do`
185
+ ` {namespace}.{username}.{clustername}.credentials.postgresql.acid.zalan.do`
186
186
187
187
# ## Infrastructure roles
188
188
Original file line number Diff line number Diff line change 87
87
logical_backup_schedule : " 30 00 * * *"
88
88
major_version_upgrade_mode : " manual"
89
89
# major_version_upgrade_team_allow_list: ""
90
- master_dns_name_format : " {cluster}.{team }.{hostedzone}"
90
+ master_dns_name_format : " {cluster}.{namespace }.{hostedzone}"
91
91
# master_pod_move_timeout: 20m
92
92
# max_instances: "-1"
93
93
# min_instances: "-1"
@@ -124,7 +124,7 @@ data:
124
124
ready_wait_interval : 3s
125
125
ready_wait_timeout : 30s
126
126
repair_period : 5m
127
- replica_dns_name_format : " {cluster}-repl.{team }.{hostedzone}"
127
+ replica_dns_name_format : " {cluster}-repl.{namespace }.{hostedzone}"
128
128
replication_username : standby
129
129
resource_check_interval : 3s
130
130
resource_check_timeout : 10m
Original file line number Diff line number Diff line change @@ -422,10 +422,10 @@ spec:
422
422
default : " Cluster"
423
423
master_dns_name_format :
424
424
type : string
425
- default : " {cluster}.{team }.{hostedzone}"
425
+ default : " {cluster}.{namespace }.{hostedzone}"
426
426
replica_dns_name_format :
427
427
type : string
428
- default : " {cluster}-repl.{team }.{hostedzone}"
428
+ default : " {cluster}-repl.{namespace }.{hostedzone}"
429
429
aws_or_gcp :
430
430
type : object
431
431
properties :
Original file line number Diff line number Diff line change @@ -133,8 +133,8 @@ configuration:
133
133
enable_replica_load_balancer : false
134
134
enable_replica_pooler_load_balancer : false
135
135
external_traffic_policy : " Cluster"
136
- master_dns_name_format : " {cluster}.{team }.{hostedzone}"
137
- replica_dns_name_format : " {cluster}-repl.{team }.{hostedzone}"
136
+ master_dns_name_format : " {cluster}.{namespace }.{hostedzone}"
137
+ replica_dns_name_format : " {cluster}-repl.{namespace }.{hostedzone}"
138
138
aws_or_gcp :
139
139
# additional_secret_mount: "some-secret-name"
140
140
# additional_secret_mount_path: "/some/dir"
You can’t perform that action at this time.
0 commit comments