1. 如果需要往pod上面传配置文件或者配置信息
oc create configmap test --from-file=test.json
建成configmap后,需要挂载到volumn上,这样文件就会挂载到、/etc/config/test.json
其实官方给的教程是pod, 但是使用template的时候, 没有pod,所以挂载到DeploymentConfig -> spec=>template->configmap->volumn
2. 如果需要把值传递给pod的环境变量
用container -> environment
3. 启动 oc process -f template.yml | oc apply -f