Hi!, I have a problem concerning volume mounts when using web-based installation…In my case I create 6, but all this 6 folders are bound to a unique same folder in the host. In the cli installation this is not happening for me, only web. I attach the nodeProfiles piece of my manifest in case it is useful:
- name: node
description: "General Purpose Worker Node"
labels:
role: "worker"
requirements:
customChecks:
- description: Check Local Volumes
script: |
#!/bin/bash
if [ ! "$(ls -A /mnt/local)" ]; then
exit 0;
else
echo "/mnt/local is not empty";
exit 1;
fi
network:
# Request these ports to be available
ports:
- protocol: tcp
ranges:
- "443"
- "80"
cpu:
min: 4
ram:
min: "4GB"
volumes:
- path: /mnt/local/1
targetPath: /mnt/local/1
- path: /mnt/local/2
targetPath: /mnt/local/2
- path: /mnt/local/3
targetPath: /mnt/local/3
- path: /mnt/local/4
targetPath: /mnt/local/4
- path: /mnt/local/5
targetPath: /mnt/local/5
- path: /mnt/local/6
targetPath: /mnt/local/6