kubeasz/manifests/ingress/test-hello.ing.yaml

15 lines
288 B
YAML
Raw Normal View History

2019-01-18 17:06:03 +08:00
# kubectl run test-hello --image=nginx --expose --port=80
2017-11-21 09:01:24 +08:00
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
2017-12-17 22:41:27 +08:00
name: test-hello
2017-11-21 09:01:24 +08:00
spec:
rules:
2017-12-17 22:41:27 +08:00
- host: hello.test.com
2017-11-21 09:01:24 +08:00
http:
paths:
- path: /
backend:
serviceName: test-hello
servicePort: 80