Commit 6abed588 authored by xilabao's avatar xilabao

print non-existent key in configmap

parent 4a8c245e
...@@ -266,9 +266,7 @@ func MakePayload(mappings []v1.KeyToPath, configMap *v1.ConfigMap, defaultMode * ...@@ -266,9 +266,7 @@ func MakePayload(mappings []v1.KeyToPath, configMap *v1.ConfigMap, defaultMode *
if optional { if optional {
continue continue
} }
err_msg := "references non-existent config key" return nil, fmt.Errorf("configmap references non-existent config key: %s", ktp.Key)
glog.Errorf(err_msg)
return nil, fmt.Errorf(err_msg)
} }
fileProjection.Data = []byte(content) fileProjection.Data = []byte(content)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment