support new stream fields in CRD (#2427)
This commit is contained in:
parent
b1fca41dd0
commit
dc872abb51
|
|
@ -501,6 +501,8 @@ spec:
|
|||
type: integer
|
||||
database:
|
||||
type: string
|
||||
enableRecovery:
|
||||
type: boolean
|
||||
filter:
|
||||
type: object
|
||||
additionalProperties:
|
||||
|
|
@ -518,6 +520,8 @@ spec:
|
|||
type: string
|
||||
payloadColumn:
|
||||
type: string
|
||||
recoveryEventType:
|
||||
type: string
|
||||
teamId:
|
||||
type: string
|
||||
tls:
|
||||
|
|
|
|||
|
|
@ -499,6 +499,8 @@ spec:
|
|||
type: integer
|
||||
database:
|
||||
type: string
|
||||
enableRecovery:
|
||||
type: boolean
|
||||
filter:
|
||||
type: object
|
||||
additionalProperties:
|
||||
|
|
@ -516,6 +518,8 @@ spec:
|
|||
type: string
|
||||
payloadColumn:
|
||||
type: string
|
||||
recoveryEventType:
|
||||
type: string
|
||||
teamId:
|
||||
type: string
|
||||
tls:
|
||||
|
|
|
|||
|
|
@ -769,6 +769,9 @@ var PostgresCRDResourceValidation = apiextv1.CustomResourceValidation{
|
|||
"database": {
|
||||
Type: "string",
|
||||
},
|
||||
"enableRecovery": {
|
||||
Type: "boolean",
|
||||
},
|
||||
"filter": {
|
||||
Type: "object",
|
||||
AdditionalProperties: &apiextv1.JSONSchemaPropsOrBool{
|
||||
|
|
@ -793,6 +796,9 @@ var PostgresCRDResourceValidation = apiextv1.CustomResourceValidation{
|
|||
"payloadColumn": {
|
||||
Type: "string",
|
||||
},
|
||||
"recoveryEventType": {
|
||||
Type: "string",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue