diff --git a/deploy/crd.yaml b/deploy/crd.yaml index 0dbe2c8a..4f60dbf4 100644 --- a/deploy/crd.yaml +++ b/deploy/crd.yaml @@ -12,3 +12,32 @@ spec: scope: Namespaced version: v1alpha1 + + additionalPrinterColumns: + - name: Phase + type: string + description: The current state machine phase for this FlinkApplication + JSONPath: .status.phase + - name: Cluster Health + type: string + description: The health of the Flink cluster + JSONPath: .status.clusterStatus.health + - name: Job Health + type: string + description: The health of the Flink job + JSONPath: .status.jobStatus.health + - name: Healthy TMs + type: string + JSONPath: ".status.clusterStatus.healthyTaskManagers" + priority: 1 + - name: Total TMs + type: string + JSONPath: ".status.clusterStatus.numberOfTaskManagers" + priority: 1 + - name: Job Restarts + type: integer + description: Number of times the job has restarted + JSONPath: .status.jobStatus.jobRestartCount + - name: Age + type: date + JSONPath: .metadata.creationTimestamp \ No newline at end of file