You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
351 B
17 lines
351 B
6 years ago
|
apiVersion: extensions/v1beta1
|
||
|
kind: Ingress
|
||
|
metadata:
|
||
|
name: webingress
|
||
|
spec:
|
||
|
tls:
|
||
|
- hosts:
|
||
|
- <your ingress hostname>
|
||
|
secretName: <tls secret for your ingress hostname>
|
||
|
rules:
|
||
|
- host: <your ingress hostname>
|
||
|
http:
|
||
|
paths:
|
||
|
- path: /
|
||
|
backend:
|
||
|
serviceName: web
|
||
|
servicePort: 80
|