Skip to content

Commit

Permalink
DBZ-8352 Update QOSDK
Browse files Browse the repository at this point in the history
  • Loading branch information
mfvitale committed Nov 27, 2024
1 parent 1b9ee63 commit 02f00c5
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 66 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
debezium.server.image.name=quay.io/debezium/server
quarkus.application.name=debezium-operator
quarkus.application.name=debezium-operator
# TODO remove this once the https://github.com/fabric8io/kubernetes-client/pull/6666 is available in the 7.0.0
quarkus.operator-sdk.crd.use-deprecated-v1-crd-generator=true
2 changes: 1 addition & 1 deletion examples/postgres/002_kafka-ephemeral.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
transaction.state.log.min.isr: 1
default.replication.factor: 1
min.insync.replicas: 1
inter.broker.protocol.version: "3.4"
inter.broker.protocol.version: "3.8"
storage:
type: ephemeral
zookeeper:
Expand Down
45 changes: 45 additions & 0 deletions k8/debeziumservers.debezium.io-v1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ spec:
type: object
x-kubernetes-preserve-unknown-fields: true
type:
default: json
description: Format type recognised by Debezium Server.
type: string
type: object
Expand All @@ -51,6 +52,7 @@ spec:
type: object
x-kubernetes-preserve-unknown-fields: true
type:
default: json
description: Format type recognised by Debezium Server.
type: string
type: object
Expand All @@ -68,6 +70,7 @@ spec:
type: object
x-kubernetes-preserve-unknown-fields: true
type:
default: json
description: Format type recognised by Debezium Server.
type: string
type: object
Expand Down Expand Up @@ -123,6 +126,7 @@ spec:
of Debezium Server
type: boolean
port:
default: 8080
description: Port number used by the k8s service exposing
the API
type: integer
Expand Down Expand Up @@ -174,24 +178,29 @@ spec:
description: JMX authentication config.
properties:
accessFile:
default: jmxremote.access
description: JMX access file name and secret key
type: string
enabled:
default: false
description: Whether JMX authentication should be enabled
for this Debezium Server instance.
type: boolean
passwordFile:
default: jmxremote.password
description: JMX password file name and secret key
type: string
secret:
description: Secret providing credential files
type: string
type: object
enabled:
default: false
description: Whether JMX should be enabled for this Debezium
Server instance.
type: boolean
port:
default: 1099
description: JMX port.
type: integer
type: object
Expand Down Expand Up @@ -233,6 +242,7 @@ spec:
storage.
type: string
type:
default: ephemeral
description: Storage type.
enum:
- ephemeral
Expand Down Expand Up @@ -930,18 +940,22 @@ spec:
to the container.
properties:
failureThreshold:
default: 3
description: Number of failures in a row before
the overall check has failed.
type: integer
initialDelaySeconds:
default: 5
description: Number of seconds after the container
has started before probes are initiated.
type: integer
periodSeconds:
default: 10
description: How often (in seconds) to perform
the probe.
type: integer
timeoutSeconds:
default: 10
description: Number of seconds after which the
probe times out.
type: integer
Expand All @@ -951,18 +965,22 @@ spec:
to the container.
properties:
failureThreshold:
default: 3
description: Number of failures in a row before
the overall check has failed.
type: integer
initialDelaySeconds:
default: 5
description: Number of seconds after the container
has started before probes are initiated.
type: integer
periodSeconds:
default: 10
description: How often (in seconds) to perform
the probe.
type: integer
timeoutSeconds:
default: 10
description: Number of seconds after which the
probe times out.
type: integer
Expand Down Expand Up @@ -998,6 +1016,13 @@ spec:
properties:
allowPrivilegeEscalation:
type: boolean
appArmorProfile:
properties:
localhostProfile:
type: string
type:
type: string
type: object
capabilities:
properties:
add:
Expand Down Expand Up @@ -1411,6 +1436,13 @@ spec:
description: Pod-level security attributes and container
settings
properties:
appArmorProfile:
properties:
localhostProfile:
type: string
type:
type: string
type: object
fsGroup:
type: integer
fsGroupChangePolicy:
Expand Down Expand Up @@ -1613,6 +1645,7 @@ spec:
type: string
type: object
flushMs:
default: 60000
description: Interval at which to try commiting offsets
type: integer
kafka:
Expand Down Expand Up @@ -1693,6 +1726,7 @@ spec:
description: Redis password
type: string
sslEnabled:
default: false
description: Redis username
type: boolean
user:
Expand All @@ -1702,17 +1736,21 @@ spec:
description: Configures verification of replica writes
properties:
enabled:
default: false
description: "In case of Redis with replica, this\
\ allows to verify that the data has been written\
\ to replica"
type: boolean
retry:
default: false
description: Enables retry on wait for replica
type: boolean
retryDelayMs:
default: 1000
description: Delay of retry on wait
type: integer
timeoutMs:
default: 1000
description: Timeout in ms when waiting for replica
type: integer
type: object
Expand Down Expand Up @@ -1836,6 +1874,7 @@ spec:
description: Redis password
type: string
sslEnabled:
default: false
description: Redis username
type: boolean
user:
Expand All @@ -1845,17 +1884,21 @@ spec:
description: Configures verification of replica writes
properties:
enabled:
default: false
description: "In case of Redis with replica, this\
\ allows to verify that the data has been written\
\ to replica"
type: boolean
retry:
default: false
description: Enables retry on wait for replica
type: boolean
retryDelayMs:
default: 1000
description: Delay of retry on wait
type: integer
timeoutMs:
default: 1000
description: Timeout in ms when waiting for replica
type: integer
type: object
Expand Down Expand Up @@ -1895,6 +1938,7 @@ spec:
type: object
x-kubernetes-preserve-unknown-fields: true
negate:
default: false
description: Determines if the result of the applied predicate
will be negated.
type: boolean
Expand Down Expand Up @@ -1932,6 +1976,7 @@ spec:
type: object
type: array
observedGeneration:
default: 0
description: Latest observed generation
type: integer
type: object
Expand Down
Loading

0 comments on commit 02f00c5

Please sign in to comment.