|
|
@ -44,7 +44,7 @@ controlPlaneEndpoint: {{ ip | default(ansible_default_ipv4.address) }}:{{ kube_a |
|
|
|
{% endif %} |
|
|
|
certificatesDir: {{ kube_cert_dir }} |
|
|
|
imageRepository: {{ kube_image_repo }} |
|
|
|
UseHyperKubeImage: false |
|
|
|
useHyperKubeImage: false |
|
|
|
apiServer: |
|
|
|
extraArgs: |
|
|
|
authorization-mode: {{ authorization_modes | join(',') }} |
|
|
@ -151,14 +151,14 @@ apiServer: |
|
|
|
- name: {{ audit_log_name }} |
|
|
|
hostPath: {{ audit_log_hostpath }} |
|
|
|
mountPath: {{ audit_log_mountpath }} |
|
|
|
writable: true |
|
|
|
readOnly: false |
|
|
|
{% endif %} |
|
|
|
{% endif %} |
|
|
|
{% for volume in apiserver_extra_volumes %} |
|
|
|
- name: {{ volume.name }} |
|
|
|
hostPath: {{ volume.hostPath }} |
|
|
|
mountPath: {{ volume.mountPath }} |
|
|
|
writable: {{ volume.writable | default(false)}} |
|
|
|
readOnly: {{ volume.readOnly | d(not volume.writable) }} |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
certSANs: |
|
|
@ -201,7 +201,7 @@ controllerManager: |
|
|
|
- name: {{ volume.name }} |
|
|
|
hostPath: {{ volume.hostPath }} |
|
|
|
mountPath: {{ volume.mountPath }} |
|
|
|
writable: {{ volume.writable | default(false)}} |
|
|
|
readOnly: {{ volume.readOnly | d(not volume.writable) }} |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
scheduler: |
|
|
@ -222,7 +222,7 @@ scheduler: |
|
|
|
- name: {{ volume.name }} |
|
|
|
hostPath: {{ volume.hostPath }} |
|
|
|
mountPath: {{ volume.mountPath }} |
|
|
|
writable: {{ volume.writable | default(false)}} |
|
|
|
readOnly: {{ volume.readOnly | d(not volume.writable) }} |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
--- |
|
|
|