OpenShift Web 控制台允许使用来自现有远程存储库的分支/标签创建新应用程序,我不知道如何通过rhc create
.
相关的命令行选项--from-code URL
适用于默认存储库路径,但如何判断使用哪个特定分支?我在OpenShift 文档或任何其他网络资源中找不到任何内容。
我尝试了以下和其他一些变体,但没有成功:
rhc app create my_new_app_name python-3.3 postgresql-9.2 --from-code https://github.com/my_user/my_repository/tree/my_branch
rhc app create my_new_app_name python-3.3 postgresql-9.2 --from-code https://github.com/my_user/my_repository.git/my_branch
结果消息:
Source code repository could not be cloned: 'https://github.com/my_user/my_repository.git/my_branch'. Please verify the repository is correct and contact support.
我需要使用rhc create
来创建新应用程序,因为这允许使用多个墨盒(此处python-3.3
和postgresql-9.2
)创建应用程序,而这是通过 Web 控制台无法实现的。