Thibault Richard
Thibault Richard
Hello, I can't reproduce the issue you describe. ``` > kubectl version --short Client Version: v1.23.10 Server Version: v1.22.13-gke.1000 > kubectl get es hey -o json | jq '.spec.auth' {...
I don't add/remove an entry or edit the fileRealm/roles array after the inital creation. I just apply this manifest: ``` apiVersion: elasticsearch.k8s.elastic.co/v1 kind: Elasticsearch metadata: name: test spec: version: 8.4.2...
First, the `spec.data_stream` field in your manifest doesn't exist ([API doc](https://www.elastic.co/guide/en/cloud-on-k8s/master/k8s-api-apm-k8s-elastic-co-v1.html#k8s-api-github-com-elastic-cloud-on-k8s-pkg-apis-apm-v1-apmserverspec)). ```yaml apiVersion: apm.k8s.elastic.co/v1 kind: ApmServer metadata: name: apm-apm-sample namespace: elastic spec: data_stream: namespace: test2 ``` Your manifest should be...
Yes, I see the problem. The new certificates (from the monitored cluster and from the monitoring cluster) are well propagated in the Metricbeat container. Metricbeat uses a persistent connection so...
Relates to https://github.com/elastic/kibana/issues/131505.
It happened three times that night. `TestFleetCustomLogsIntegrationRecipe/ES_data_should_pass_validations` x 2 https://devops-ci.elastic.co/job/cloud-on-k8s-e2e-tests-kind-k8s-versions/806/testReport `TestFleetMode/ES_data_should_pass_validations` https://devops-ci.elastic.co/job/cloud-on-k8s-e2e-tests-gke-k8s-versions/786/testReport
The right thing to do seems to be to update the status even when there are errors in the reconcile loop. And that's what we already do. The problem here...
Indeed, this bug is fixed by #5349.
Is it intentional that labels/annotations are managed differently in the ClusterRoleBinding/ClusterRole/ServiceAccount between the two charts? The eck-agent chart supports dedicated labels/annotations but for labels we also get the labels of...
Seems similar to #1987. Do you have a Kubernetes Service named `server` in the same namespace? If so, that is the cause of the problem. When a Pod is run...