generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathAffinityTest.php
116 lines (102 loc) · 4.16 KB
/
AffinityTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
namespace RenokiCo\PhpK8s\Test;
use RenokiCo\PhpK8s\K8s;
class AffinityTest extends TestCase
{
public function test_affinity_preferredDuringSchedulingIgnoredDuringExecution_with_preference()
{
$affinity = K8s::affinity()->addPreference(
[K8s::expression()->in('azname', ['us-east-1a'])],
[K8s::expression()->in('tier', ['backend'])],
100
);
$pod = K8s::pod()->setPodAffinity($affinity);
$this->assertEquals([
'preferredDuringSchedulingIgnoredDuringExecution' => [
[
'weight' => 100,
'preference' => [
'matchExpressions' => [
['key' => 'azname', 'operator' => 'In', 'values' => ['us-east-1a']],
],
'matchFields' => [
['key' => 'tier', 'operator' => 'In', 'values' => ['backend']],
],
],
],
],
], $pod->getPodAffinity()->toArray());
}
public function test_affinity_preferredDuringSchedulingIgnoredDuringExecution_with_node_selector()
{
$affinity = K8s::affinity()->addNodeSelectorPreference(
[K8s::expression()->in('azname', ['us-east-1a'])],
[K8s::expression()->in('tier', ['backend'])],
100
);
$pod = K8s::pod()->setNodeAffinity($affinity);
$this->assertEquals([
'preferredDuringSchedulingIgnoredDuringExecution' => [
'nodeSelectorTerms' => [
[
'weight' => 100,
'preference' => [
'matchExpressions' => [
['key' => 'azname', 'operator' => 'In', 'values' => ['us-east-1a']],
],
'matchFields' => [
['key' => 'tier', 'operator' => 'In', 'values' => ['backend']],
],
],
],
],
],
], $pod->getNodeAffinity()->toArray());
}
public function test_affinity_requiredDuringSchedulingIgnoredDuringExecution_with_node_selector()
{
$affinity = K8s::affinity()->addNodeRequirement(
[K8s::expression()->in('azname', ['us-east-1a'])],
[K8s::expression()->in('tier', ['backend'])]
);
$pod = K8s::pod()->setNodeAffinity($affinity);
$this->assertEquals([
'requiredDuringSchedulingIgnoredDuringExecution' => [
'nodeSelectorTerms' => [
[
'matchExpressions' => [
['key' => 'azname', 'operator' => 'In', 'values' => ['us-east-1a']],
],
'matchFields' => [
['key' => 'tier', 'operator' => 'In', 'values' => ['backend']],
],
],
],
],
], $pod->getNodeAffinity()->toArray());
}
public function test_affinity_requiredDuringSchedulingIgnoredDuringExecution_with_label_selector()
{
$affinity = K8s::affinity()->addLabelSelectorRequirement(
[K8s::expression()->in('azname', ['us-east-1a'])],
[K8s::expression()->in('tier', ['backend'])],
'aws.amazonaws.com/some-topology'
);
$pod = K8s::pod()->setNodeAffinity($affinity);
$this->assertEquals([
'requiredDuringSchedulingIgnoredDuringExecution' => [
[
'labelSelector' => [
'matchExpressions' => [
['key' => 'azname', 'operator' => 'In', 'values' => ['us-east-1a']],
],
'matchFields' => [
['key' => 'tier', 'operator' => 'In', 'values' => ['backend']],
],
],
'topologyKey' => 'aws.amazonaws.com/some-topology',
],
],
], $pod->getNodeAffinity()->toArray());
}
}