website/content/ja/examples/pods/pod-nginx-preferred-affinit...

20 lines
376 B
YAML
Raw Normal View History

2020-08-15 19:57:31 +00:00
apiVersion: v1
kind: Pod
metadata:
name: nginx
spec:
affinity:
nodeAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 1
preference:
matchExpressions:
- key: disktype
operator: In
values:
- ssd
containers:
- name: nginx
image: nginx
imagePullPolicy: IfNotPresent