From 13e3e867ac316544765e2318370090f217f61d71 Mon Sep 17 00:00:00 2001 From: Chad Swenson Date: Tue, 15 Jan 2019 12:26:33 -0600 Subject: [PATCH] Fix kubeadm config extra volumes I found a potential use case where `writable` could be null and therfore not treated like a boolean, so this adds an extra default statement to avoid negating a non-boolean as boolean which would lead to undefined. refs #4020 --- .../master/templates/kubeadm-config.v1beta1.yaml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/kubernetes/master/templates/kubeadm-config.v1beta1.yaml.j2 b/roles/kubernetes/master/templates/kubeadm-config.v1beta1.yaml.j2 index 73faa2889..caceb5128 100644 --- a/roles/kubernetes/master/templates/kubeadm-config.v1beta1.yaml.j2 +++ b/roles/kubernetes/master/templates/kubeadm-config.v1beta1.yaml.j2 @@ -158,7 +158,7 @@ apiServer: - name: {{ volume.name }} hostPath: {{ volume.hostPath }} mountPath: {{ volume.mountPath }} - readOnly: {{ volume.readOnly | d(not volume.writable) }} + readOnly: {{ volume.readOnly | d(not (volume.writable | d(false))) }} {% endfor %} {% endif %} certSANs: @@ -201,7 +201,7 @@ controllerManager: - name: {{ volume.name }} hostPath: {{ volume.hostPath }} mountPath: {{ volume.mountPath }} - readOnly: {{ volume.readOnly | d(not volume.writable) }} + readOnly: {{ volume.readOnly | d(not (volume.writable | d(false))) }} {% endfor %} {% endif %} scheduler: @@ -222,7 +222,7 @@ scheduler: - name: {{ volume.name }} hostPath: {{ volume.hostPath }} mountPath: {{ volume.mountPath }} - readOnly: {{ volume.readOnly | d(not volume.writable) }} + readOnly: {{ volume.readOnly | d(not (volume.writable | d(false))) }} {% endfor %} {% endif %} ---