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

kube.tf.example tweak #1247

Merged
merged 1 commit into from
Feb 27, 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ NOTE: square brackets in existing_network_id! This must be a list of length 1.
</details>
<details>
<summary>Placement groups</summary>
Up until release v2.11.8, there was an implementation error in the placement group logic.
Up until release v2.11.8, there was an implementation error in the placement group logic.

If you have fewer than 10 agents and 10 control-plane nodes, you can continue using the code as is.

Expand Down
10 changes: 5 additions & 5 deletions kube.tf.example
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ module "kube-hetzner" {
# zram_size = "2G" # remember to add the suffix, examples: 512M, 1G
# kubelet_args = ["kube-reserved=cpu=250m,memory=1500Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"]

# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers):
# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max):
# placement_group = "default"

# Enable automatic backups via Hetzner (default: false)
Expand All @@ -144,7 +144,7 @@ module "kube-hetzner" {
taints = [],
count = 1

# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers):
# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max):
# placement_group = "default"

# Enable automatic backups via Hetzner (default: false)
Expand All @@ -158,7 +158,7 @@ module "kube-hetzner" {
taints = [],
count = 1

# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers):
# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max):
# placement_group = "default"

# Enable automatic backups via Hetzner (default: false)
Expand All @@ -178,7 +178,7 @@ module "kube-hetzner" {
# zram_size = "2G" # remember to add the suffix, examples: 512M, 1G
# kubelet_args = ["kube-reserved=cpu=50m,memory=300Mi,ephemeral-storage=1Gi", "system-reserved=cpu=250m,memory=300Mi"]

# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers):
# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max):
# placement_group = "default"

# Enable automatic backups via Hetzner (default: false)
Expand All @@ -192,7 +192,7 @@ module "kube-hetzner" {
taints = [],
count = 1

# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers):
# Fine-grained control over placement groups (nodes in the same group are spread over different physical servers, 10 nodes per placement group max):
# placement_group = "default"

# Enable automatic backups via Hetzner (default: false)
Expand Down