You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/terraform.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@
126
126
| <aname="input_cluster_autoscaler_server_creation_timeout"></a> [cluster\_autoscaler\_server\_creation\_timeout](#input\_cluster\_autoscaler\_server\_creation\_timeout)| Timeout (in minutes) until which a newly created server/node has to become available before giving up and destroying it. |`number`|`15`| no |
127
127
| <aname="input_cluster_autoscaler_stderr_threshold"></a> [cluster\_autoscaler\_stderr\_threshold](#input\_cluster\_autoscaler\_stderr\_threshold)| Severity level above which logs are sent to stderr instead of stdout |`string`|`"INFO"`| no |
128
128
| <aname="input_cluster_autoscaler_version"></a> [cluster\_autoscaler\_version](#input\_cluster\_autoscaler\_version)| Version of Kubernetes Cluster Autoscaler for Hetzner Cloud. Should be aligned with Kubernetes version. Available versions for the official image can be found at https://explore.ggcr.dev/?repo=registry.k8s.io%2Fautoscaling%2Fcluster-autoscaler.|`string`|`"v1.32.0"`| no |
129
-
| <aname="input_cluster_dns_ipv4"></a> [cluster\_dns\_ipv4](#input\_cluster\_dns\_ipv4)| Internal Service IPv4 address of core-dns. |`string`|`"10.43.0.10"`| no |
129
+
| <aname="input_cluster_dns_ipv4"></a> [cluster\_dns\_ipv4](#input\_cluster\_dns\_ipv4)| Internal Service IPv4 address of core-dns. It is automatically inferred from `service_ipv4_cidr` if not explicitly set. |`string`|`null`| no |
130
130
| <aname="input_cluster_ipv4_cidr"></a> [cluster\_ipv4\_cidr](#input\_cluster\_ipv4\_cidr)| Internal Pod CIDR, used for the controller and currently for calico/cilium. |`string`|`"10.42.0.0/16"`| no |
131
131
| <aname="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name)| Name of the cluster. |`string`|`"k3s"`| no |
132
132
| <aname="input_cni_plugin"></a> [cni\_plugin](#input\_cni\_plugin)| CNI plugin for k3s. |`string`|`"flannel"`| no |
Copy file name to clipboardExpand all lines: kube.tf.example
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ module "kube-hetzner" {
136
136
137
137
# Enable automatic backups via Hetzner (default: false)
138
138
# backups = true
139
-
139
+
140
140
# To disable public ips (default: false)
141
141
# WARNING: If both values are set to "true", your server will only be accessible via a private network. Make sure you have followed
142
142
# the instructions regarding this type of setup in README.md: "Use only private IPs in your cluster".
@@ -156,7 +156,7 @@ module "kube-hetzner" {
156
156
157
157
# Enable automatic backups via Hetzner (default: false)
158
158
# backups = true
159
-
159
+
160
160
# To disable public ips (default: false)
161
161
# WARNING: If both values are set to "true", your server will only be accessible via a private network. Make sure you have followed
162
162
# the instructions regarding this type of setup in README.md: "Use only private IPs in your cluster".
@@ -176,7 +176,7 @@ module "kube-hetzner" {
176
176
177
177
# Enable automatic backups via Hetzner (default: false)
178
178
# backups = true
179
-
179
+
180
180
# To disable public ips (default: false)
181
181
# WARNING: If both values are set to "true", your server will only be accessible via a private network. Make sure you have followed
182
182
# the instructions regarding this type of setup in README.md: "Use only private IPs in your cluster".
@@ -582,7 +582,7 @@ module "kube-hetzner" {
582
582
# Even if patched to remove the "default" label, the local-path storage class will be reset as default on each reboot of
583
583
# the node where the controller runs.
584
584
# This is not a problem if you explicitly define which storageclass to use in your PVCs.
585
-
# Workaround if you don't want two default storage classes: leave this to false and add the local-path-provisioner helm chart
585
+
# Workaround if you don't want two default storage classes: leave this to false and add the local-path-provisioner helm chart
586
586
# as an extra (https://github.com/kube-hetzner/terraform-hcloud-kube-hetzner#adding-extras).
587
587
# enable_local_storage = false
588
588
@@ -633,7 +633,7 @@ module "kube-hetzner" {
633
633
# Allows you to specify the k3s version. If defined, supersedes initial_k3s_channel.
634
634
# See https://github.com/k3s-io/k3s/releases for the available versions.
635
635
# install_k3s_version = "v1.30.2+k3s2"
636
-
636
+
637
637
# Allows you to specify either stable, latest, testing or supported minor versions.
638
638
# see https://rancher.com/docs/k3s/latest/en/upgrades/basic/ and https://update.k3s.io/v1-release/channels
639
639
# ⚠️ If you are going to use Rancher addons for instance, it's always a good idea to fix the kube version to one minor version below the latest stable,
@@ -681,8 +681,8 @@ module "kube-hetzner" {
681
681
# "trust anchor --store /root/ca.crt",
682
682
# ]
683
683
684
-
# Structured authentication configuration. Multiple authentication providers support requires v1.30+ of
685
-
# kubernetes.
684
+
# Structured authentication configuration. Multiple authentication providers support requires v1.30+ of
0 commit comments