openshift 4 learning note
Posted connie313
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openshift 4 learning note相关的知识,希望对你有一定的参考价值。
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
以上是关于openshift 4 learning note的主要内容,如果未能解决你的问题,请参考以下文章
Python 基础 - Day 4 Learning Note - Generator 生成器
Python 基础 - Day 4 Learning Note - Decorator 装饰器