d50f2cdcc9
* Update file outdated korean docs in dev-1.16-ko.2. (#16614) * Translate docs/templates/feature-state-*.txt in Korean (#16613) * Translate pod-topology-spread-constraints in Korean (#16654) Co-Authored-By: Seokho Son <shsongist@gmail.com> Co-Authored-By: June Yi <june.yi@samsung.com>
26 lines
526 B
YAML
26 lines
526 B
YAML
kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
name: mypod
|
|
labels:
|
|
foo: bar
|
|
spec:
|
|
topologySpreadConstraints:
|
|
- maxSkew: 1
|
|
topologyKey: zone
|
|
whenUnsatisfiable: DoNotSchedule
|
|
labelSelector:
|
|
matchLabels:
|
|
foo: bar
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: zone
|
|
operator: NotIn
|
|
values:
|
|
- zoneC
|
|
containers:
|
|
- name: pause
|
|
image: k8s.gcr.io/pause:3.1 |