TCP ServiceEntry with IP - mapping with DNS name

I have create ServiceEntry for external mysql DB:

apiVersion: networking.istio.io/v1beta1
kind: ServiceEntry
metadata:
  name: cda-database.tcp.srv
  namespace: automaton-dev
spec:
  hosts:
    - cda-database.tcp.srv
  addresses:
    - 10.48.100.111/32
  exportTo:
    - "."
  ports:
    - number: 3306
      name: tcp
      protocol: TCP
  location: MESH_EXTERNAL
  resolution: STATIC
  endpoints:
    - address: 10.48.100.124
      ports:
        tcp: 3306

and it works fine when I using ip 10.48.100.111.
But I want to assign dns name to this ip for example cda-database will point me to ServiceEntry cda-database.tcp.srv. Is it possible ? and How ?

1 Like