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
until [ -n "\$(kubectl get -n ${lookup(local.ingress_controller_namespace_names, local.ingress_controller)} service/${lookup(local.ingress_controller_service_names, local.ingress_controller)} --output=jsonpath='{.status.loadBalancer.ingress[0].${var.lb_hostname!=""?"hostname":"ip"}}' 2> /dev/null)" ]; do
326
+
until [ -n "\$(kubectl get -n ${local.ingress_controller_namespace} service/${lookup(local.ingress_controller_service_names, var.ingress_controller)} --output=jsonpath='{.status.loadBalancer.ingress[0].${var.lb_hostname!=""?"hostname":"ip"}}' 2> /dev/null)" ]; do
Copy file name to clipboardExpand all lines: kube.tf.example
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -413,7 +413,8 @@ module "kube-hetzner" {
413
413
# After the cluster is deployed, you can always use HelmChartConfig definition to tweak the configuration.
414
414
# If you want to disable both controllers set this to "none"
415
415
# ingress_controller = "nginx"
416
-
# ingress_target_namespace = "" // In which namespace to deploy the ingress controllers. Defaults to the ingress_controller variable, eg (nginx, traefik)
416
+
# Namespace in which to deploy the ingress controllers. Defaults to the ingress_controller variable, eg (nginx, traefik)
417
+
# ingress_target_namespace = ""
417
418
418
419
# You can change the number of replicas for selected ingress controller here. The default 0 means autoselecting based on number of agent nodes (1 node = 1 replica, 2 nodes = 2 replicas, 3+ nodes = 3 replicas)
0 commit comments