Support non-tls ingress for kind #748

Merged
dboreham merged 6 commits from dboreham/kind-ingress into main 2024-02-17 01:54:33 +00:00
Showing only changes of commit 016d508453 - Show all commits

View File

@ -326,6 +326,12 @@ def generate_kind_config(deployment_dir: Path, deployment_context):
"apiVersion: kind.x-k8s.io/v1alpha4\n"
"nodes:\n"
"- role: control-plane\n"
" kubeadmConfigPatches:\n"
" - |\n"
" kind: InitConfiguration\n"
" nodeRegistration:\n"
" kubeletExtraArgs:\n"
" node-labels: \"ingress-ready=true\"\n"
f"{port_mappings_yml}\n"
f"{mounts_yml}\n"
)