containers: - name: node-red image: "nodered/node-red:{{ node_red_instances[node_red_instance].version }}-debian" volumeMounts: - name: tls mountPath: /tls readOnly: true - name: data mountPath: /data ports: - containerPort: 1880 hostPort: {{ node_red_instances[node_red_instance].port }} volumes: - name: tls hostPath: path: "{{ node_red_instance_basepath }}/tls" type: Directory - name: data hostPath: path: "{{ node_red_instance_basepath }}/data" type: Directory