Comment 4 for bug 2020871

Revision history for this message
Tom Haddon (mthaddon) wrote :

Also, just to mention that we can attach the storage after the unit has been deployed without any problem, so rather than doing:

```
juju deploy ubuntu --series focal --attach-storage files/8
```

We do:

```
juju deploy ubuntu --series focal
# Wait for active/idle status
juju attach-storage ubuntu/${unit} files/8
```