# OpenShift deploy Logstash display Association backend for elasticsearch is not configured

**URL:** https://discuss.elastic.co/t/openshift-deploy-logstash-display-association-backend-for-elasticsearch-is-not-configured/360380
**Category:** Logstash
**Created:** [May 28, 2024, 1:36pm UTC](https://discuss.elastic.co/t/openshift-deploy-logstash-display-association-backend-for-elasticsearch-is-not-configured/360380 "2024-05-28T13:36:15Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![kyocoolcool](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/kyocoolcool/32/134861_2.png) [@kyocoolcool](https://discuss.elastic.co/u/kyocoolcool)
#### Post date: [May 28, 2024, 1:36pm UTC](https://discuss.elastic.co/t/openshift-deploy-logstash-display-association-backend-for-elasticsearch-is-not-configured/360380/1 "2024-05-28T13:36:15Z")

</div>

display Association backend for elasticsearch is not configured

 ![Screenshot 2024-05-28 at 22.05.48](https://us1.discourse-cdn.com/elastic/original/3X/f/5/f5914e9b0c65b51e6ef2aadfcd090f7fde31f52a.png)

Elasticsearch and kibana have been deployed,

 ![Screenshot 2024-05-28 at 21.33.35](https://us1.discourse-cdn.com/elastic/original/3X/a/2/a2ff577d73bd2cea97ea3e6e7dfca13cc2693a8d.png)  
I've been looking for a long time and I don't know which side of the configuration is wrong.  
Could you help me? Thank you.

Here is my logstash.yaml

```auto
apiVersion: logstash.k8s.elastic.co/v1alpha1
kind: Logstash
metadata:
  name: logstash-sample
spec:       
  count: 1  
  version: 8.13.0
  elasticsearchRefs:
    - clusterName: elasticsearch-sample
      name: elasticsearch-sample
  pipelines:
    - pipeline.id: main
      config.string: |
        input {
          beats {
            port => 5044
          } 
        }   
        output {
          elasticsearch {
            hosts => ["https://elasticsearch-sample-es-http:9200"]
            index => "logstash-%{+YYYY.MM.dd}"
            ssl_enabled => true
            ssl_verification_mode => false
            user => "chris"
            password => "p@ssw0rd"
          } 
        }   
  services: 
    - name: beats
      service:
        spec:
          type: ClusterIP
          ports:
            - port: 5044
              name: "filebeat"
              protocol: TCP
              targetPort: 5044

```

---

<div class="post-metadata">

### Author: ![manas-suleman](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/manas-suleman/32/138332_2.png) [@manas-suleman](https://discuss.elastic.co/u/manas-suleman)
#### Post date: [October 16, 2024, 11:44am UTC](https://discuss.elastic.co/t/openshift-deploy-logstash-display-association-backend-for-elasticsearch-is-not-configured/360380/2 "2024-10-16T11:44:05Z")

</div>

Hi, I'm facing the same issue. did you manage to find the solution?
