Skip to content

Commit

Permalink
Merge pull request #266 from sassoftware/IAC-697
Browse files Browse the repository at this point in the history
docs: (IAC-697): Updated the min_nodes value for compute node to 1
  • Loading branch information
riragh authored Nov 15, 2022
2 parents 904b4cf + f172cc9 commit b6d2c67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/CONFIG-VARS.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ Additional node pools can be created separate from the default node pool. This i

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

**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..

```yaml
{
cas = {
Expand All @@ -220,7 +222,7 @@ The default values for the `node_pools` variable are as follows:
compute = {
"machine_type" = "Standard_E16s_v3"
"os_disk_size" = 200
"min_nodes" = 0
"min_nodes" = 1
"max_nodes" = 5
"max_pods" = 110
"node_taints" = ["workload.sas.com/class=compute:NoSchedule"]
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ variable "node_pools" {
compute = {
"machine_type" = "Standard_E16s_v3"
"os_disk_size" = 200
"min_nodes" = 0
"min_nodes" = 1
"max_nodes" = 5
"max_pods" = 110
"node_taints" = ["workload.sas.com/class=compute:NoSchedule"]
Expand Down

0 comments on commit b6d2c67

Please sign in to comment.