Skip to content

Commit

Permalink
Merge pull request #934 from RedHatInsights/mknop/update_kafka_listen…
Browse files Browse the repository at this point in the history
…er_value

replaced listener.type with name
  • Loading branch information
maknop authored Feb 19, 2024
2 parents fc9d193 + 9c73c82 commit 5f712e0
Show file tree
Hide file tree
Showing 6 changed files with 959 additions and 339 deletions.
272 changes: 204 additions & 68 deletions config/crd/static/kafkaconnects.kafka.strimzi.io.yaml

Large diffs are not rendered by default.

799 changes: 586 additions & 213 deletions config/crd/static/kafkas.kafka.strimzi.io.yaml

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions config/crd/static/kafkatopics.kafka.strimzi.io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
type: integer
- name: Ready
description: The state of the custom resource
jsonPath: .status.conditions[?(@.type=="Ready")].status
jsonPath: ".status.conditions[?(@.type==\"Ready\")].status"
type: string
schema:
openAPIV3Schema:
Expand All @@ -52,7 +52,7 @@ spec:
partitions:
type: integer
minimum: 1
description: The number of partitions the topic should have. This cannot be decreased after topic creation. It can be increased after topic creation, but it is important to understand the consequences that has, especially for topics with semantic partitioning. When absent this will default to the broker configuration for `num.partitions`.
description: "The number of partitions the topic should have. This cannot be decreased after topic creation. It can be increased after topic creation, but it is important to understand the consequences that has, especially for topics with semantic partitioning. When absent this will default to the broker configuration for `num.partitions`."
replicas:
type: integer
minimum: 1
Expand All @@ -76,13 +76,13 @@ spec:
properties:
type:
type: string
description: The unique identifier of a condition, used to distinguish between other conditions in the resource.
description: "The unique identifier of a condition, used to distinguish between other conditions in the resource."
status:
type: string
description: The status of the condition, either True, False or Unknown.
description: "The status of the condition, either True, False or Unknown."
lastTransitionTime:
type: string
description: Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone.
description: "Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone."
reason:
type: string
description: The reason for the condition's last transition (a single word in CamelCase).
Expand Down Expand Up @@ -117,7 +117,7 @@ spec:
type: integer
- name: Ready
description: The state of the custom resource
jsonPath: .status.conditions[?(@.type=="Ready")].status
jsonPath: ".status.conditions[?(@.type==\"Ready\")].status"
type: string
schema:
openAPIV3Schema:
Expand All @@ -129,7 +129,7 @@ spec:
partitions:
type: integer
minimum: 1
description: The number of partitions the topic should have. This cannot be decreased after topic creation. It can be increased after topic creation, but it is important to understand the consequences that has, especially for topics with semantic partitioning. When absent this will default to the broker configuration for `num.partitions`.
description: "The number of partitions the topic should have. This cannot be decreased after topic creation. It can be increased after topic creation, but it is important to understand the consequences that has, especially for topics with semantic partitioning. When absent this will default to the broker configuration for `num.partitions`."
replicas:
type: integer
minimum: 1
Expand All @@ -153,13 +153,13 @@ spec:
properties:
type:
type: string
description: The unique identifier of a condition, used to distinguish between other conditions in the resource.
description: "The unique identifier of a condition, used to distinguish between other conditions in the resource."
status:
type: string
description: The status of the condition, either True, False or Unknown.
description: "The status of the condition, either True, False or Unknown."
lastTransitionTime:
type: string
description: Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone.
description: "Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone."
reason:
type: string
description: The reason for the condition's last transition (a single word in CamelCase).
Expand Down Expand Up @@ -194,7 +194,7 @@ spec:
type: integer
- name: Ready
description: The state of the custom resource
jsonPath: .status.conditions[?(@.type=="Ready")].status
jsonPath: ".status.conditions[?(@.type==\"Ready\")].status"
type: string
schema:
openAPIV3Schema:
Expand All @@ -206,7 +206,7 @@ spec:
partitions:
type: integer
minimum: 1
description: The number of partitions the topic should have. This cannot be decreased after topic creation. It can be increased after topic creation, but it is important to understand the consequences that has, especially for topics with semantic partitioning. When absent this will default to the broker configuration for `num.partitions`.
description: "The number of partitions the topic should have. This cannot be decreased after topic creation. It can be increased after topic creation, but it is important to understand the consequences that has, especially for topics with semantic partitioning. When absent this will default to the broker configuration for `num.partitions`."
replicas:
type: integer
minimum: 1
Expand All @@ -230,13 +230,13 @@ spec:
properties:
type:
type: string
description: The unique identifier of a condition, used to distinguish between other conditions in the resource.
description: "The unique identifier of a condition, used to distinguish between other conditions in the resource."
status:
type: string
description: The status of the condition, either True, False or Unknown.
description: "The status of the condition, either True, False or Unknown."
lastTransitionTime:
type: string
description: Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone.
description: "Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone."
reason:
type: string
description: The reason for the condition's last transition (a single word in CamelCase).
Expand Down
Loading

0 comments on commit 5f712e0

Please sign in to comment.