Copy profiles between LXD cluster nodes
lxc profile copy profile-name new-lxd-server:
Export all profiles
for PROFILE in $(lxc profile list --format json | jq -r '.[].name'); do lxc profile show ${PROFILE} > ${PROFILE} done
Import profiles
for PROFILE in $(ls nic* disk*); do lxc profile create ${PROFILE} < ${PROFILE} done