More docs and other minor fixes

This commit is contained in:
Rafia Sabih 2021-07-01 12:16:27 +02:00
parent 53261b40a6
commit 8cd0c954df
2 changed files with 10 additions and 3 deletions

View File

@ -264,6 +264,13 @@ configuration they are grouped under the `kubernetes` key.
[admin docs](../administrator.md#pod-disruption-budget) for more information.
Default is true.
* **enable_cross_namespace_secrets**
To create secrets in a different namespace other than the cluster namespace,
enable this option. Once, enabled user names of the intented users are to be
provided with the namespace in the form `{appnamespace}`.`{username}`. This
makes everything before the first `.` namespace where the secret for that
user has to be created and everything after that as the username.
* **enable_init_containers**
global option to allow for creating init containers in the cluster manifest to
run actions before Spilo is started. Default is true.

View File

@ -902,9 +902,6 @@ var OperatorConfigCRDResourceValidation = apiextv1.CustomResourceValidation{
"enable_lazy_spilo_upgrade": {
Type: "boolean",
},
"enable_cross_namespace_secret": {
Type: "boolean",
},
"enable_shm_volume": {
Type: "boolean",
},
@ -1029,6 +1026,9 @@ var OperatorConfigCRDResourceValidation = apiextv1.CustomResourceValidation{
},
},
},
"enable_cross_namespace_secret": {
Type: "boolean",
},
"enable_init_containers": {
Type: "boolean",
},