add content/ja/examples/pods/pod-with-affinity-anti-affinity.yaml file
parent
c6c09236c7
commit
9781390c52
|
@ -0,0 +1,33 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Pod
|
||||||
|
metadata:
|
||||||
|
name: with-affinity-anti-affinity
|
||||||
|
spec:
|
||||||
|
affinity:
|
||||||
|
nodeAffinity:
|
||||||
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
nodeSelectorTerms:
|
||||||
|
- matchExpressions:
|
||||||
|
- key: kubernetes.io/os
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- linux
|
||||||
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- weight: 1
|
||||||
|
preference:
|
||||||
|
matchExpressions:
|
||||||
|
- key: label-1
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- key-1
|
||||||
|
- weight: 50
|
||||||
|
preference:
|
||||||
|
matchExpressions:
|
||||||
|
- key: label-2
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- key-2
|
||||||
|
containers:
|
||||||
|
- name: with-node-affinity
|
||||||
|
image: registry.k8s.io/pause:2.0
|
||||||
|
|
Loading…
Reference in New Issue