# ECK Kib Service Annotation

**URL:** https://discuss.elastic.co/t/eck-kib-service-annotation/245937
**Category:** Elastic Cloud on Kubernetes (ECK)
**Created:** [August 21, 2020, 4:05pm UTC](https://discuss.elastic.co/t/eck-kib-service-annotation/245937 "2020-08-21T16:05:49Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![robinhood\_lko](https://avatars.discourse-cdn.com/v4/letter/r/5f8ce5/32.png) [@robinhood\_lko](https://discuss.elastic.co/u/robinhood_lko)
#### Post date: [August 21, 2020, 4:05pm UTC](https://discuss.elastic.co/t/eck-kib-service-annotation/245937/1 "2020-08-21T16:05:50Z")

</div>

Hi Team,

We have one requirement in which Kibana service need an annotation while deployment. ECK Deployment manages service deployment by itself. Is there any mechanism to handle this. Thanks.

Regards  
AK

---

<div class="post-metadata">

### Author: ![charith-elastic](https://avatars.discourse-cdn.com/v4/letter/c/3ec8ea/32.png) [@charith-elastic](https://discuss.elastic.co/u/charith-elastic)
#### Post date: [August 24, 2020, 7:28am UTC](https://discuss.elastic.co/t/eck-kib-service-annotation/245937/2 "2020-08-24T07:28:35Z")

</div>

You can customise the service by defining a service template under `http.service` (see [API docs](https://www.elastic.co/guide/en/cloud-on-k8s/1.2/k8s-api-kibana-k8s-elastic-co-v1.html#k8s-api-github-com-elastic-cloud-on-k8s-pkg-apis-kibana-v1-kibanaspec)).

This is how you'd add an annotation to the service:

```auto
apiVersion: kibana.k8s.elastic.co/v1
kind: Kibana
metadata:
  name: hulk
spec:
  version: 7.9.0
  count: 1
  elasticsearchRef:
    name: hulk
  http:
    service:
      metadata:
        annotations:
          my-annotation: value

```

---

<div class="post-metadata">

### Author: ![robinhood\_lko](https://avatars.discourse-cdn.com/v4/letter/r/5f8ce5/32.png) [@robinhood\_lko](https://discuss.elastic.co/u/robinhood_lko)
#### Post date: [August 24, 2020, 8:49am UTC](https://discuss.elastic.co/t/eck-kib-service-annotation/245937/3 "2020-08-24T08:49:48Z")

</div>

Thanks @charith-elastic.

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [November 4, 2022, 8:10am UTC](https://discuss.elastic.co/t/eck-kib-service-annotation/245937/4 "2022-11-04T08:10:59Z")

</div>


