Currently the path for the urunc configuration is hardcoded (see https://github.com/urunc-dev/urunc/blob/main/pkg/unikontainers/urunc_config.go#L25) and it expects it to be at /etc/urunc/config.toml. There is no reason to keep the configuration path hardcoded. Instead, we should allow uses to define its path.
Ultimately, the handling of configuration must transfer from urunc to the containerd shim. However, as a temporary solution we can use an environment variable to define the path and have as a fallback /etc/urunc/config.toml.
Currently the path for the urunc configuration is hardcoded (see https://github.com/urunc-dev/urunc/blob/main/pkg/unikontainers/urunc_config.go#L25) and it expects it to be at
/etc/urunc/config.toml. There is no reason to keep the configuration path hardcoded. Instead, we should allow uses to define its path.Ultimately, the handling of configuration must transfer from urunc to the containerd shim. However, as a temporary solution we can use an environment variable to define the path and have as a fallback
/etc/urunc/config.toml.