diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index 67328238..4a05ced9 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -81,7 +81,7 @@ spec: cpu: "1" memory: 512Mi volumeMounts: - - mountPath: /etc/model-serving/config-defaults.yaml + - mountPath: /etc/model-serving/config/default name: config-defaults readOnly: true securityContext: diff --git a/pkg/config/config.go b/pkg/config/config.go index 94f7b296..4e4109b0 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, @@ -43,7 +43,7 @@ const ( DefaultEtcdSecretName = "model-serving-etcd" ConfigType = "yaml" - MountLocation = "/etc/model-serving/config-defaults.yaml" + MountLocation = "/etc/model-serving/config/default" ViperKeyDelimiter = "::" )