Skip to content

Commit 0e0f5f5

Browse files
authored
Update cloud router requirements (#26)
Minimal cloud router should have 10GiB memory and 6GiB hugepages. Scale cloud router should have 16GiB memory.
1 parent ac7a35e commit 0e0f5f5

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

dev/flex/templates/values-vrouter.yaml.tftpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ xrd${i + 1}:
77
pullPolicy: Always
88
resources:
99
limits:
10-
memory: 8Gi
10+
memory: 10Gi
1111
hugepages-1Gi: ${hugepages[node_name]}Gi
1212
securityContext:
1313
privileged: true

examples/overlay/workload/templates/xrd1.yaml.tftpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ image:
33
tag: "${image_tag}"
44
resources:
55
limits:
6-
memory: 8Gi
7-
hugepages-1Gi: 3Gi
6+
memory: 10Gi
7+
hugepages-1Gi: 6Gi
88
persistence:
99
enabled: true
1010
storageClass: gp2

examples/overlay/workload/templates/xrd2.yaml.tftpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ image:
33
tag: "${image_tag}"
44
resources:
55
limits:
6-
memory: 8Gi
7-
hugepages-1Gi: 3Gi
6+
memory: 10Gi
7+
hugepages-1Gi: 6Gi
88
persistence:
99
enabled: true
1010
storageClass: gp2

examples/singleton/workload/templates/xrd-control-plane.yaml.tftpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ image:
44
resources:
55
limits:
66
memory: 8Gi
7-
hugepages-1Gi: 3Gi
87
persistence:
98
enabled: true
109
storageClass: gp2

examples/singleton/workload/templates/xrd-vrouter.yaml.tftpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ image:
33
tag: "${image_tag}"
44
resources:
55
limits:
6-
memory: 8Gi
7-
hugepages-1Gi: 3Gi
6+
memory: 10Gi
7+
hugepages-1Gi: 6Gi
88
persistence:
99
enabled: true
1010
storageClass: gp2

modules/aws/node-props/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ locals {
150150
}
151151

152152
locals {
153-
minimal_hugepages_gb = 4
153+
minimal_hugepages_gb = 6
154154
maximal_hugepages_gb = 6
155155

156156
hugepages_gb = try(

0 commit comments

Comments
 (0)