Skip to content

Commit

Permalink
Added Stopped column to the KafkaRebalance custom resource (#9944)
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Patierno <[email protected]>
  • Loading branch information
ppatierno committed Apr 11, 2024
1 parent 4662614 commit 97d4659
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@
name = "NotReady",
description = "There is an error on the custom resource",
jsonPath = ".status.conditions[?(@.type==\"NotReady\")].status",
type = "string")
type = "string"),
@Crd.Spec.AdditionalPrinterColumn(
name = "Stopped",
description = "Processing the proposal or running rebalancing was stopped",
jsonPath = ".status.conditions[?(@.type==\"Stopped\")].status",
type = "string")
}
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ spec:
description: There is an error on the custom resource
jsonPath: ".status.conditions[?(@.type==\"NotReady\")].status"
type: string
- name: Stopped
description: Processing the proposal or running rebalancing was stopped
jsonPath: ".status.conditions[?(@.type==\"Stopped\")].status"
type: string
schema:
openAPIV3Schema:
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ spec:
description: There is an error on the custom resource
jsonPath: ".status.conditions[?(@.type==\"NotReady\")].status"
type: string
- name: Stopped
description: Processing the proposal or running rebalancing was stopped
jsonPath: ".status.conditions[?(@.type==\"Stopped\")].status"
type: string
schema:
openAPIV3Schema:
type: object
Expand Down

0 comments on commit 97d4659

Please sign in to comment.