YAML code-block within a list bug fixed (#14293) (#14295)

pull/14385/head
Vitaly R. Samigullin 2019-05-17 01:47:29 +00:00 committed by Kubernetes Prow Robot
parent 60006e9164
commit ac65ac4835
1 changed files with 15 additions and 17 deletions

View File

@ -135,23 +135,21 @@ The following file is an Ingress resource that sends traffic to your Service via
1. Create `example-ingress.yaml` from the following file:
```yaml
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: example-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- host: hello-world.info
http:
paths:
- path: /*
backend:
serviceName: web
servicePort: 8080
```
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: example-ingress
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- host: hello-world.info
http:
paths:
- path: /*
backend:
serviceName: web
servicePort: 8080
1. Create the Ingress resource by running the following command: