Hi team,
Namely, the documentation above warns:
> Envoy only updates when the configuration file is replaced by a file move, and not when the file is edited in place.
So, I spin up an Envoy proxy in a Docker container with the Envoy configuration and /var/lib/envoy/lds.yaml mounted to the filesystem (configured according to the documentation), but when I attempt to replace the lds configuration file with a file move, I get an error because the file is currently opened by Envoy for reading:
```
$ mv /var/lib/envoy/lds-new.yaml /var/lib/envoy/lds.yaml
mv: cannot move '/var/lib/envoy/lds-old.yaml' to '/var/lib/envoy/lds.yaml': Device or resource busy
```
Is there another way I should be using dynamic configuration from filesystem with Envoy?