Hi
What is use of NGIX Ingress Controller ?
How do I install NGIX Controller
I have yaml file given by vendor
INGRESS CONFIGURATION *
MANDATORY in cloud deployments
ingress:
# enabled: true - To enable ingress configuration
enabled: true
annotations:
nginx.ingress.kubernetes.io/affinity: "cookie"
nginx.ingress.kubernetes.io/session-cookie-name: "route"
nginx.ingress.kubernetes.io/session-cookie-expires: "86400"
nginx.ingress.kubernetes.io/session-cookie-max-age: "86400"
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
ac:
hosts:
# host: <dns name>
- host: lab-ac.med.umich.edu
# Enables Backend SSL between Ingress Controller and AC
https: true
paths:
# /path: AC service port to redirect traffic
/: 2443
idp:
hosts:
# host: <dns name>
- host: lab-weblogin.med.umich.edu
# Enables Backend SSL between Ingress Controller and IDP
https: true
# /path: IDP service port to redirect traffic
paths:
/nidp: 8443
ag:
hosts:
# host: <dns name>
- host: www.cloudag.com
# Enables Backend SSL between Ingress Controller and AG
https: true
# /path: AG service port to redirect traffic
paths:
/: 443
- host: dbmh.cloudag.com
# Enables Backend SSL between Ingress Controller and AG
https: false
# /path: AG service port to redirect traffic
paths:
/proxy1: 80
TLS configuration for all hosts in AC, IDP and AG
tls:
#- secretName: cloudag
# hosts:
# - www.cloudag.com
#- secretName: cloudidp
# hosts:
- lab-weblogin.med.umich.edu
Let us know Do i need to make change in yaml file.