Machine IDs on debian10 images aren't regenerated so they're identical. ```yaml cluster: privateKey: ~/.ssh/id_rsa machines: - count: 2 backend: docker spec: image: quay.io/footloose/debian10 name: host%d portMappings: - containerPort: 22 hostPort: 9022 ``` ```console $ footloose ssh root@host0 cat /etc/machine-id 3766705eb195582e8168a9a1b913c7c7 $ footloose ssh root@host1 cat /etc/machine-id 3766705eb195582e8168a9a1b913c7c7 ``` This breaks stuff like some kube components that use machine-id for node identification.
Machine IDs on debian10 images aren't regenerated so they're identical.
This breaks stuff like some kube components that use machine-id for node identification.