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

Fix invalid controllerstatus in ocp UI #550

Merged
merged 4 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 26 additions & 16 deletions bundle/manifests/dell-csm-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1743,11 +1743,6 @@ spec:
displayName: Use Private CA Certs
path: client.usePrivateCaCerts
statusDescriptors:
- description: ClientStatus is the status of Client pods
displayName: ClientStatus
path: clientStatus
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podStatuses
- description: State is the state of the client installation
displayName: State
path: state
Expand Down Expand Up @@ -2530,19 +2525,34 @@ spec:
displayName: Name
path: modules[0].name
statusDescriptors:
- description: ControllerStatus is the status of Controller pods
displayName: ControllerStatus
path: controllerStatus
- description: Number of Available Controller pods
displayName: Available
path: controllerStatus.available
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podStatuses
- description: NodeStatus is the status of Controller pods
displayName: NodeStatus
path: nodeStatus
- urn:alm:descriptor:text
- description: Number of Desired Controller pods
displayName: Desired
path: controllerStatus.desired
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podStatuses
- description: State is the state of the driver installation
displayName: State
path: state
- urn:alm:descriptor:text
- description: Number of Failed Controller pods
displayName: Failed
path: controllerStatus.failed
x-descriptors:
- urn:alm:descriptor:text
- description: Number of Available Node pods
displayName: Available
path: nodeStatus.available
x-descriptors:
- urn:alm:descriptor:text
- description: Number of Desired Node pods
displayName: Desired
path: nodeStatus.desired
x-descriptors:
- urn:alm:descriptor:text
- description: Number of Failed Node pods
displayName: Failed
path: nodeStatus.failed
x-descriptors:
- urn:alm:descriptor:text
version: v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,11 +354,6 @@ spec:
displayName: Use Private CA Certs
path: client.usePrivateCaCerts
statusDescriptors:
- description: ClientStatus is the status of Client pods
displayName: ClientStatus
path: clientStatus
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podStatuses
- description: State is the state of the client installation
displayName: State
path: state
Expand Down Expand Up @@ -1141,16 +1136,36 @@ spec:
displayName: Name
path: modules[0].name
statusDescriptors:
- description: ControllerStatus is the status of Controller pods
displayName: ControllerStatus
path: controllerStatus
- description: Number of Available Controller pods
displayName: Available
path: controllerStatus.available
x-descriptors:
- urn:alm:descriptor:text
- description: Number of Desired Controller pods
displayName: Desired
path: controllerStatus.desired
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podStatuses
- description: NodeStatus is the status of Controller pods
displayName: NodeStatus
path: nodeStatus
- urn:alm:descriptor:text
- description: Number of Failed Controller pods
displayName: Failed
path: controllerStatus.failed
x-descriptors:
- urn:alm:descriptor:text
- description: Number of Available Node pods
displayName: Available
path: nodeStatus.available
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:podStatuses
- urn:alm:descriptor:text
- description: Number of Desired Node pods
displayName: Desired
path: nodeStatus.desired
x-descriptors:
- urn:alm:descriptor:text
- description: Number of Failed Node pods
displayName: Failed
path: nodeStatus.failed
x-descriptors:
- urn:alm:descriptor:text
- description: State is the state of the driver installation
displayName: State
path: state
Expand Down
Loading