File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
content/pt-br/examples/pods Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Pod
3
+ metadata :
4
+ name : nginx
5
+ spec :
6
+ affinity :
7
+ nodeAffinity :
8
+ preferredDuringSchedulingIgnoredDuringExecution :
9
+ - weight : 1
10
+ preference :
11
+ matchExpressions :
12
+ - key : disktype
13
+ operator : In
14
+ values :
15
+ - ssd
16
+ containers :
17
+ - name : nginx
18
+ image : nginx
19
+ imagePullPolicy : IfNotPresent
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Pod
3
+ metadata :
4
+ name : nginx
5
+ spec :
6
+ affinity :
7
+ nodeAffinity :
8
+ requiredDuringSchedulingIgnoredDuringExecution :
9
+ nodeSelectorTerms :
10
+ - matchExpressions :
11
+ - key : disktype
12
+ operator : In
13
+ values :
14
+ - ssd
15
+ containers :
16
+ - name : nginx
17
+ image : nginx
18
+ imagePullPolicy : IfNotPresent
You can’t perform that action at this time.
0 commit comments