fix misspelling of daemonset (#5013)

This commit is contained in:
Weibin Lin
2017-08-18 01:00:28 +08:00
committed by Steve Perry
parent c9e79b5bd8
commit c22250dfc9
2 changed files with 3 additions and 3 deletions
@@ -28,13 +28,13 @@ different flags and/or different memory and cpu requests for different hardware
### Create a DaemonSet
You can describe a DaemonSet in a YAML file. For example, the deamonset.yaml file below describes a DaemonSet that runs the fluentd-elasticsearch Docker image:
You can describe a DaemonSet in a YAML file. For example, the daemonset.yaml file below describes a DaemonSet that runs the fluentd-elasticsearch Docker image:
{% include code.html language="yaml" file="deamonset.yaml" ghlink="/docs/concepts/workloads/controllers/deamonset.yaml" %}
{% include code.html language="yaml" file="daemonset.yaml" ghlink="/docs/concepts/workloads/controllers/daemonset.yaml" %}
* Create a DaemonSet based on the YAML file:
```
kubectl create -f deamonset.yaml
kubectl create -f daemonset.yaml
```
### Required Fields