Skip to content

Commit

Permalink
fix: Fix helm CRDs
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyno-zeta committed Dec 5, 2024
1 parent fa617cf commit 58f0c62
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ spec:
jsonPath: .status.name
name: Publication
type: string
- description: Status phase
jsonPath: .status.replicationSlotName
name: Replication slot name
type: string
- description: Status phase
jsonPath: .status.replicationSlotPlugin
name: Replication slot plugin
type: string
- description: Status phase
jsonPath: .status.phase
name: Phase
Expand Down Expand Up @@ -75,6 +83,16 @@ spec:
name:
description: Postgresql Publication name
type: string
replicationSlotName:
description: |-
Postgresql replication slot name
Default value will the publication name
type: string
replicationSlotPlugin:
description: |-
Postgresql replication slot plugin
Default value will be "pgoutput"
type: string
tables:
description: Publication for selected tables
items:
Expand Down Expand Up @@ -145,6 +163,12 @@ spec:
description: True if all resources are in a ready state and all work
is done.
type: boolean
replicationSlotName:
description: Created replication slot name
type: string
replicationSlotPlugin:
description: Created replication slot plugin
type: string
required:
- phase
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,28 @@ spec:
- privilege
type: object
type: array
roleAttributes:
description: |-
Role attributes
Note: Only attributes that aren't conflicting with operator are supported.
properties:
bypassRLS:
description: |-
BYPASSRLS attribute
Note: This can be either true, false or null (to ignore this parameter)
type: boolean
connectionLimit:
description: |-
CONNECTION LIMIT connlimit attribute
Note: This can be either -1, a number or null (to ignore this parameter)
Note: Increase your number by one because operator is using the created user to perform some operations.
type: integer
replication:
description: |-
REPLICATION attribute
Note: This can be either true, false or null (to ignore this parameter)
type: boolean
type: object
rolePrefix:
description: User role prefix
type: string
Expand Down

0 comments on commit 58f0c62

Please sign in to comment.