Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: config-defaults mount path (#289)
#### Motivation The file containing the default configuration for the ModelMesh Controller is called `config-defaults.yaml`, which resides in a directory also called `config-defaults.yaml` as pointed out by @adrwong-lora in issue #205 ``` /etc/model-serving/config-defaults.yaml/config-defaults.yaml ``` #### Modifications Change `mountPath` from `/etc/model-serving/config-defaults.yaml` to `/etc/model-serving/config/default` #### Result The file containing the default configuration file after this fix: ``` /etc/model-serving/config/default/config-defaults.yaml ``` Which more closely reflects the path of the [`config-defaults.yaml`](https://github.com/kserve/modelmesh-serving/blob/main/config/default/config-defaults.yaml) file in the `modelmesh-serving` repository: ``` config/default/config-defaults.yaml ``` Resolves #205 /cc @njhill /fyi @adrwong-lora Signed-off-by: Christian Kadner <[email protected]>
- Loading branch information