Not able to access AWX using cname

Hi Team,

My AWX instance is configured to use an ingress via External DNS running within the cluster. The ingress is tied with a TLS cert configured within a secret. Therefore, when I configured the AWX ingress to use both the Cname and the long URL(to be used due to external DNS), I’m unable to get the CNAME to work. Below is the ingress config -

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
labels:
app.kubernetes.io/component: awx
app.kubernetes.io/managed-by: awx-operator
app.kubernetes.io/name: awx
app.kubernetes.io/operator-version: 0.23.0
app.kubernetes.io/part-of: awx
name: awx-ingress
namespace: ansible-awx
spec:
rules:

  • host: " "
    http:
    paths:
  • backend:
    service:
    name: awx-service
    port:
    number: 80
    path: /
    pathType: Prefix
    tls:
  • hosts:

  • secretName: awx-ingress-secret

Any suggestions as to who I could get this working?