-
Notifications
You must be signed in to change notification settings - Fork 727
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
Report the lowest running version in the status of each resource #3489
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -423,15 +423,15 @@ spec: | |
description: ApmServerStatus defines the observed state of ApmServer | ||
properties: | ||
availableNodes: | ||
description: AvailableNodes is the number of available instances. | ||
format: int32 | ||
type: integer | ||
elasticsearchAssociationStatus: | ||
description: ElasticsearchAssociationStatus is the status of any auto-linking | ||
to Elasticsearch clusters. | ||
type: string | ||
health: | ||
description: ApmServerHealth expresses the status of the Apm Server | ||
instances. | ||
description: Health of the deployment. | ||
type: string | ||
kibanaAssociationStatus: | ||
description: KibanaAssociationStatus is the status of any auto-linking | ||
|
@@ -445,6 +445,11 @@ spec: | |
description: ExternalService is the name of the service the agents should | ||
connect to. | ||
type: string | ||
version: | ||
description: 'Version of the stack resource currently running. During | ||
version upgrades, multiple versions may run in parallel: this value | ||
specifies the lowest version currently running.' | ||
type: string | ||
type: object | ||
version: v1 | ||
versions: | ||
|
@@ -665,6 +670,11 @@ spec: | |
kibanaAssociationStatus: | ||
description: AssociationStatus is the status of an association resource. | ||
type: string | ||
version: | ||
description: 'Version of the stack resource currently running. During | ||
version upgrades, multiple versions may run in parallel: this value | ||
specifies the lowest version currently running.' | ||
type: string | ||
type: object | ||
version: v1beta1 | ||
versions: | ||
|
@@ -1718,6 +1728,7 @@ spec: | |
description: ElasticsearchStatus defines the observed state of Elasticsearch | ||
properties: | ||
availableNodes: | ||
description: AvailableNodes is the number of available instances. | ||
format: int32 | ||
type: integer | ||
health: | ||
|
@@ -1728,6 +1739,11 @@ spec: | |
description: ElasticsearchOrchestrationPhase is the phase Elasticsearch | ||
is in from the controller point of view. | ||
type: string | ||
version: | ||
description: 'Version of the stack resource currently running. During | ||
version upgrades, multiple versions may run in parallel: this value | ||
specifies the lowest version currently running.' | ||
type: string | ||
type: object | ||
version: v1 | ||
versions: | ||
|
@@ -2135,16 +2151,21 @@ spec: | |
clusters. | ||
type: string | ||
availableNodes: | ||
description: AvailableNodes is the number of available instances. | ||
format: int32 | ||
type: integer | ||
health: | ||
description: EnterpriseSearchHealth expresses the health of the Enterprise | ||
Search instances. | ||
description: Health of the deployment. | ||
type: string | ||
service: | ||
description: ExternalService is the name of the service associated to | ||
the Enterprise Search Pods. | ||
type: string | ||
version: | ||
description: 'Version of the stack resource currently running. During | ||
version upgrades, multiple versions may run in parallel: this value | ||
specifies the lowest version currently running.' | ||
type: string | ||
type: object | ||
version: v1beta1 | ||
versions: | ||
|
@@ -2570,10 +2591,16 @@ spec: | |
description: AssociationStatus is the status of an association resource. | ||
type: string | ||
availableNodes: | ||
description: AvailableNodes is the number of available instances. | ||
format: int32 | ||
type: integer | ||
health: | ||
description: KibanaHealth expresses the status of the Kibana instances. | ||
description: Health of the deployment. | ||
type: string | ||
version: | ||
description: 'Version of the stack resource currently running. During | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why this has quotes around it while other descriptions don't? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think because it is spread over more than 1 line. I tested with a single line in the comment: quotes are removed. |
||
version upgrades, multiple versions may run in parallel: this value | ||
specifies the lowest version currently running.' | ||
type: string | ||
type: object | ||
version: v1 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: remove?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know where it comes from, it is auto-generated this way 😕
I see other places in this file with a lot of empty lines.
@charith-elastic any idea?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They don't get rendered IIRC so I'm not sure it's worth spending too much time on