File tree Expand file tree Collapse file tree
02-orquestacion/oequestacion-v/__solucion_deberes Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ apiVersion : extensions/v1beta1
2+ kind : Ingress
3+ metadata :
4+ annotations :
5+ ingress.kubernetes.io/ssl-redirect : " false"
6+ kubernetes.io/ingress.class : nginx
7+ nginx.ingress.kubernetes.io/ssl-redirect : " false"
8+ labels :
9+ app : api
10+ name : api
11+ spec :
12+ rules :
13+ - host : lemoncoders.westeurope.cloudapp.azure.com
14+ http :
15+ paths :
16+ - backend :
17+ serviceName : api
18+ servicePort : 80
19+ path : /api
Original file line number Diff line number Diff line change 1+ apiVersion : extensions/v1beta1
2+ kind : Ingress
3+ metadata :
4+ annotations :
5+ ingress.kubernetes.io/ssl-redirect : " true"
6+ kubernetes.io/ingress.class : nginx
7+ nginx.ingress.kubernetes.io/ssl-redirect : " true"
8+ labels :
9+ app : api
10+ name : api2
11+ spec :
12+ rules :
13+ - host : api.lemoncoders.westeurope.cloudapp.azure.com
14+ http :
15+ paths :
16+ - backend :
17+ serviceName : api
18+ servicePort : 80
19+ path : /
20+ tls :
21+ - hosts :
22+ - api.lemoncoders.westeurope.cloudapp.azure.com
23+ secretName : my-cert
Original file line number Diff line number Diff line change 1+ apiVersion : extensions/v1beta1
2+ kind : Ingress
3+ metadata :
4+ annotations :
5+ ingress.kubernetes.io/ssl-redirect : " false"
6+ kubernetes.io/ingress.class : nginx
7+ nginx.ingress.kubernetes.io/ssl-redirect : " false"
8+ labels :
9+ app : web
10+ name : web
11+ spec :
12+ rules :
13+ - host : lemoncoders.westeurope.cloudapp.azure.com
14+ http :
15+ paths :
16+ - backend :
17+ serviceName : web
18+ servicePort : 80
19+ path : /
You can’t perform that action at this time.
0 commit comments