reflect latest changes in master
This commit is contained in:
parent
2f0facd2f5
commit
17e5c757c0
|
|
@ -172,6 +172,10 @@ spec:
|
||||||
type: integer
|
type: integer
|
||||||
maximum_lag_on_failover:
|
maximum_lag_on_failover:
|
||||||
type: integer
|
type: integer
|
||||||
|
podAnnotations:
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
pod_priority_class_name: # deprecated
|
pod_priority_class_name: # deprecated
|
||||||
type: string
|
type: string
|
||||||
podPriorityClassName:
|
podPriorityClassName:
|
||||||
|
|
@ -465,6 +469,10 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
cluster_name_label:
|
cluster_name_label:
|
||||||
type: string
|
type: string
|
||||||
|
custom_pod_annotations:
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
enable_pod_antiaffinity:
|
enable_pod_antiaffinity:
|
||||||
type: boolean
|
type: boolean
|
||||||
enable_pod_disruption_budget:
|
enable_pod_disruption_budget:
|
||||||
|
|
|
||||||
|
|
@ -74,6 +74,10 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
cluster_name_label:
|
cluster_name_label:
|
||||||
type: string
|
type: string
|
||||||
|
custom_pod_annotations:
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
enable_pod_antiaffinity:
|
enable_pod_antiaffinity:
|
||||||
type: boolean
|
type: boolean
|
||||||
enable_pod_disruption_budget:
|
enable_pod_disruption_budget:
|
||||||
|
|
|
||||||
|
|
@ -132,6 +132,10 @@ spec:
|
||||||
type: integer
|
type: integer
|
||||||
maximum_lag_on_failover:
|
maximum_lag_on_failover:
|
||||||
type: integer
|
type: integer
|
||||||
|
podAnnotations:
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
pod_priority_class_name: # deprecated
|
pod_priority_class_name: # deprecated
|
||||||
type: string
|
type: string
|
||||||
podPriorityClassName:
|
podPriorityClassName:
|
||||||
|
|
|
||||||
|
|
@ -285,6 +285,14 @@ var PostgresCRDResourceValidation = apiextv1beta1.JSONSchemaProps{
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
"podAnnotations": {
|
||||||
|
Type: "object",
|
||||||
|
AdditionalProperties: &apiextv1beta1.JSONSchemaPropsOrBool{
|
||||||
|
Schema: &apiextv1beta1.JSONSchemaProps{
|
||||||
|
Type: "string",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
"pod_priority_class_name": {
|
"pod_priority_class_name": {
|
||||||
Type: "string",
|
Type: "string",
|
||||||
Description: "Deprecated",
|
Description: "Deprecated",
|
||||||
|
|
@ -661,6 +669,14 @@ var OperatorConfigCRDResourceValidation = apiextv1beta1.JSONSchemaProps{
|
||||||
"cluster_name_label": {
|
"cluster_name_label": {
|
||||||
Type: "string",
|
Type: "string",
|
||||||
},
|
},
|
||||||
|
"custom_pod_annotations": {
|
||||||
|
Type: "object",
|
||||||
|
AdditionalProperties: &apiextv1beta1.JSONSchemaPropsOrBool{
|
||||||
|
Schema: &apiextv1beta1.JSONSchemaProps{
|
||||||
|
Type: "string",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
"enable_pod_antiaffinity": {
|
"enable_pod_antiaffinity": {
|
||||||
Type: "boolean",
|
Type: "boolean",
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue