英文:
Is there a way to apply all files in a folder using Openshift cli recursively?
问题
可以使用 oc
命令行工具来将一个文件夹中的所有 YAML 文件应用到 Openshift 集群中,类似于使用 kubectl 命令行工具的方式。
英文:
I have a folder of yaml files and I need to apply all files into an Openshift cluster using one command. I know that this can be done via kubectl. Can this be also achieved using oc cli?
答案1
得分: 0
你可以像使用 kubectl
一样执行以下操作:
oc apply -f your/folder/with/yamls
如果要递归执行,可以使用 --recursive
标志:
oc apply -f your/folder/with/yamls --recursive
英文:
You can do it the same way as you can do it with kubectl
:
oc apply -f your/folder/with/yamls
If you want it recursively, you can use the --recursive
flag:
oc apply -f your/folder/with/yamls --recursive
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论