Skip to content

Commit b6d2c67

Browse files
authored
Merge pull request #266 from sassoftware/IAC-697
docs: (IAC-697): Updated the min_nodes value for compute node to 1
2 parents 904b4cf + f172cc9 commit b6d2c67

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/CONFIG-VARS.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ Additional node pools can be created separate from the default node pool. This i
204204

205205
The default values for the `node_pools` variable are as follows:
206206

207+
**Note**: SAS recommends that you maintain a minimum of 1 node in the pool for `compute` workloads. This allocation ensures that compute-related pods have the required images pulled and ready for use in the environment..
208+
207209
```yaml
208210
{
209211
cas = {
@@ -220,7 +222,7 @@ The default values for the `node_pools` variable are as follows:
220222
compute = {
221223
"machine_type" = "Standard_E16s_v3"
222224
"os_disk_size" = 200
223-
"min_nodes" = 0
225+
"min_nodes" = 1
224226
"max_nodes" = 5
225227
"max_pods" = 110
226228
"node_taints" = ["workload.sas.com/class=compute:NoSchedule"]

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ variable "node_pools" {
394394
compute = {
395395
"machine_type" = "Standard_E16s_v3"
396396
"os_disk_size" = 200
397-
"min_nodes" = 0
397+
"min_nodes" = 1
398398
"max_nodes" = 5
399399
"max_pods" = 110
400400
"node_taints" = ["workload.sas.com/class=compute:NoSchedule"]

0 commit comments

Comments
 (0)