mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
fix unquoted san cert causing issues with ips (#12256)
This commit is contained in:
@@ -286,7 +286,7 @@ apiServer:
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
certSANs:
|
certSANs:
|
||||||
{% for san in apiserver_sans %}
|
{% for san in apiserver_sans %}
|
||||||
- {{ san }}
|
- "{{ san }}"
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
timeoutForControlPlane: 5m0s
|
timeoutForControlPlane: 5m0s
|
||||||
controllerManager:
|
controllerManager:
|
||||||
|
|||||||
@@ -350,7 +350,7 @@ apiServer:
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
certSANs:
|
certSANs:
|
||||||
{% for san in apiserver_sans %}
|
{% for san in apiserver_sans %}
|
||||||
- {{ san }}
|
- "{{ san }}"
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
controllerManager:
|
controllerManager:
|
||||||
extraArgs:
|
extraArgs:
|
||||||
|
|||||||
Reference in New Issue
Block a user