Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increased default cpu_nodes_count to 3 for k8s solutions; #96

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion k8s-inference/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ssh_public_key = {
### Kubernetes nodes
```hcl
# K8s modes
cpu_nodes_count = 1 # Number of CPU nodes
cpu_nodes_count = 3 # Number of CPU nodes
cpu_nodes_preset = "16vcpu-64gb" # The CPU node preset
gpu_nodes_count = 1 # Number of GPU nodes
gpu_nodes_preset = "1gpu-16vcpu-200gb" # The GPU node preset. Set to "8gpu-128vcpu-1600gb", to deploy nodes with 8 GPUs.
Expand Down
2 changes: 1 addition & 1 deletion k8s-inference/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# }

# K8s nodes
cpu_nodes_count = 1 # Number of CPU nodes
cpu_nodes_count = 3 # Number of CPU nodes
gpu_nodes_count = 1 # Number of GPU nodes
# cpu_nodes_platform = # CPU nodes platofm
# cpu_nodes_preset = # CPU nodes preset
Expand Down
2 changes: 1 addition & 1 deletion k8s-training/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ ssh_public_key = {

```hcl
# K8s modes
cpu_nodes_count = 1 # Number of CPU nodes
cpu_nodes_count = 3 # Number of CPU nodes
cpu_nodes_preset = "16vcpu-64gb" # CPU node preset
gpu_nodes_count = 1 # Number of GPU nodes
Expand Down
2 changes: 1 addition & 1 deletion k8s-training/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# }

# K8s nodes
cpu_nodes_count = 1 # Number of CPU nodes
cpu_nodes_count = 3 # Number of CPU nodes
gpu_nodes_count = 1 # Number of GPU nodes
# cpu_nodes_platform = # CPU nodes platofm
# cpu_nodes_preset = # CPU nodes preset
Expand Down