What is the process to assign a DNS record to a Load balanced service.
I have created a simple service of Type LoadBalancer on AKS. The service gets a external IP assigned and points to pods hosting a sample hello world application.
How do I browse my application using a DNS name, or setup the DNS name for the service in the first place. I can successfully browse to IP.
Service yml
apiVersion: v1
kind: Service
metadata:
name: transactionapi-svc
labels:
version: v1
spec:
type: LoadBalancer
ports:
- name: http
port: 80
- name: https
port: 443
selector:
app: transaction-api