syntax is hard

pull/7502/head
Sharif Elgamal 2020-04-08 17:28:38 -07:00
parent ccdf261359
commit 4d8a3f5805
1 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ multinode-demo-m02 Ready <none> 9m5s v1.18.0
- Install a CNI (e.g. flannel):
NOTE: This currently needs to be done manually after the apiserver is running, the multi-node feature is still experimental as of 1.9.2.
{{% readfile file="/docs/tutorials/includes/kube-flannel.yaml %}}
{{% readfile file="/docs/tutorials/includes/kube-flannel.yaml" %}}
```
kubectl apply -f kube-flannel.yaml
podsecuritypolicy.policy/psp.flannel.unprivileged created
@ -60,7 +60,7 @@ daemonset.apps/kube-flannel-ds-s390x created
```
- Deploy our hello world deployment:
{{% readfile file="/docs/tutorials/includes/hello-deployment.yaml %}}
{{% readfile file="/docs/tutorials/includes/hello-deployment.yaml" %}}
```
kubectl apply -f hello-deployment.yaml
deployment.apps/hello created
@ -70,7 +70,7 @@ deployment "hello" successfully rolled out
```
- Deploy our hello world service, which just spits back the IP address the request was served from:
{{% readfile file="/docs/tutorials/includes/hello-svc.yaml %}}
{{% readfile file="/docs/tutorials/includes/hello-svc.yaml" %}}
```
kubectl apply -f hello-svc.yml
service/hello created