Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Strimzi/Kafka CRDs to Strimzi 0.41 #339

Merged
merged 15 commits into from
Jul 6, 2024
2,115 changes: 1,613 additions & 502 deletions kafka.strimzi.io/kafka_v1beta2.json

Large diffs are not rendered by default.

305 changes: 228 additions & 77 deletions kafka.strimzi.io/kafkabridge_v1beta2.json

Large diffs are not rendered by default.

597 changes: 470 additions & 127 deletions kafka.strimzi.io/kafkaconnect_v1beta2.json

Large diffs are not rendered by default.

22 changes: 21 additions & 1 deletion kafka.strimzi.io/kafkaconnector_v1beta2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
{
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"metadata": {
"type": "object"
},
"spec": {
"description": "The specification of the Kafka Connector.",
"properties": {
Expand All @@ -11,7 +22,7 @@
"type": "boolean"
},
"maxRestarts": {
"description": "The maximum number of restart attempts when a connector or task fails.",
"description": "The maximum number of connector restarts that the operator will try. If the connector remains in a failed state after reaching this limit, it must be restarted manually by the user. Defaults to an unlimited number of restarts.",
"type": "integer"
}
},
Expand All @@ -31,6 +42,15 @@
"description": "Whether the connector should be paused. Defaults to false.",
"type": "boolean"
},
"state": {
"description": "The state the connector should be in. Defaults to running.",
"enum": [
"paused",
"stopped",
"running"
],
"type": "string"
},
"tasksMax": {
"description": "The maximum number of tasks for the Kafka Connector.",
"minimum": 1,
Expand Down
620 changes: 484 additions & 136 deletions kafka.strimzi.io/kafkamirrormaker2_v1beta2.json

Large diffs are not rendered by default.

297 changes: 226 additions & 71 deletions kafka.strimzi.io/kafkamirrormaker_v1beta2.json

Large diffs are not rendered by default.

Loading