We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Start with
apiVersion: elasticsearch.k8s.elastic.co/v1alpha1 kind: Elasticsearch metadata: name: hello-eck spec: version: 7.3.0 nodes: - name: default nodeCount: 1
upgrade to
apiVersion: elasticsearch.k8s.elastic.co/v1alpha1 kind: Elasticsearch metadata: name: hello-eck spec: version: 7.3.0 nodes: - name: masters config: node.master: true node.data: false nodeCount: 3 - name: data config: node.master: false node.data: true nodeCount: 3
See that after a while we have, as expected,
kubectl get sts NAME DESIRED CURRENT AGE hello-eck-es-data 3 3 11m hello-eck-es-masters 3 3 11m
but the service sticks around:
kubectl get svc NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE hello-eck-es-data ClusterIP None <none> <none> 12m hello-eck-es-default ClusterIP None <none> <none> 15m hello-eck-es-http ClusterIP 10.99.9.63 <none> 9200/TCP 15m hello-eck-es-masters ClusterIP None <none> <none> 12m
The text was updated successfully, but these errors were encountered:
I realised it is not constrained to services, config secret seems to hang around as well.
Sorry, something went wrong.
sebgl
Successfully merging a pull request may close this issue.
Start with
upgrade to
See that after a while we have, as expected,
but the service sticks around:
The text was updated successfully, but these errors were encountered: