gaborgsomogyi commented on code in PR #394:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/394#discussion_r991281075
##########
docs/content/docs/custom-resource/reference.md:
##########
@@ -251,6 +261,7 @@ This page serves as a full reference for FlinkDeployment
custom resource definit
| startTime | java.lang.String | Start time of the job. |
| updateTime | java.lang.String | Update time of the job. |
| savepointInfo |
org.apache.flink.kubernetes.operator.crd.status.SavepointInfo | Information
about pending and last savepoint for the job. |
+| jobHealthInfo | java.lang.String | Information about job health. |
Review Comment:
That's a key-value store which is designed to store config info:
```
/** Config information from running clusters. */
private Map<String, String> clusterInfo = new HashMap<>();
```
For example one key is `DashboardConfiguration.FIELD_NAME_FLINK_VERSION`.
I can put it there but at the first glance it's not intended to store
structures like this.
Are we sure that we want to do that?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]