storage/kubernetes: log INFO level if TPR already exists, not ERROR

This commit is contained in:
Eric Chiang 2017-03-15 10:30:10 -07:00
parent d31bb1c8d5
commit 6cb38604d9
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ func (cli *client) createThirdPartyResources() (ok bool) {
if err != nil {
switch err {
case storage.ErrAlreadyExists:
cli.logger.Errorf("third party resource already created %s", r.ObjectMeta.Name)
cli.logger.Infof("third party resource already created %s", r.ObjectMeta.Name)
case storage.ErrNotFound:
cli.logger.Errorf("third party resources not found, please enable API group extensions/v1beta1")
ok = false