kubernetes-up-and-running/11-2-nginx-fast-storage.yaml
Lachlan Evenson fb7cd71936
Fix typo
Signed-off-by: Lachlan Evenson <lachlan.evenson@gmail.com>
2024-02-05 11:10:12 -08:00

24 lines
383 B
YAML

apiVersion: apps/v1
kind: DaemonSet
metadata:
labels:
app: nginx
ssd: "true"
name: nginx-fast-storage
spec:
selector:
matchLabels:
app: nginx
ssd: "true"
template:
metadata:
labels:
app: nginx
ssd: "true"
spec:
nodeSelector:
ssd: "true"
containers:
- name: nginx
image: nginx:1.10.0