|
@ -158,7 +158,7 @@ apiServer: |
|
|
- name: {{ volume.name }} |
|
|
- name: {{ volume.name }} |
|
|
hostPath: {{ volume.hostPath }} |
|
|
hostPath: {{ volume.hostPath }} |
|
|
mountPath: {{ volume.mountPath }} |
|
|
mountPath: {{ volume.mountPath }} |
|
|
readOnly: {{ volume.readOnly | d(not volume.writable) }} |
|
|
|
|
|
|
|
|
readOnly: {{ volume.readOnly | d(not (volume.writable | d(false))) }} |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
certSANs: |
|
|
certSANs: |
|
@ -201,7 +201,7 @@ controllerManager: |
|
|
- name: {{ volume.name }} |
|
|
- name: {{ volume.name }} |
|
|
hostPath: {{ volume.hostPath }} |
|
|
hostPath: {{ volume.hostPath }} |
|
|
mountPath: {{ volume.mountPath }} |
|
|
mountPath: {{ volume.mountPath }} |
|
|
readOnly: {{ volume.readOnly | d(not volume.writable) }} |
|
|
|
|
|
|
|
|
readOnly: {{ volume.readOnly | d(not (volume.writable | d(false))) }} |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
scheduler: |
|
|
scheduler: |
|
@ -222,7 +222,7 @@ scheduler: |
|
|
- name: {{ volume.name }} |
|
|
- name: {{ volume.name }} |
|
|
hostPath: {{ volume.hostPath }} |
|
|
hostPath: {{ volume.hostPath }} |
|
|
mountPath: {{ volume.mountPath }} |
|
|
mountPath: {{ volume.mountPath }} |
|
|
readOnly: {{ volume.readOnly | d(not volume.writable) }} |
|
|
|
|
|
|
|
|
readOnly: {{ volume.readOnly | d(not (volume.writable | d(false))) }} |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
--- |
|
|
--- |
|
|