Capistrano 从多个 git 存储库部署

发布于 2024-10-08 16:39:35 字数 235 浏览 4 评论 0原文

我有 2 台服务器。托管的 Rails 应用服务器和 git 存储库服务器。两台服务器都连接到互联网(不在同一主机上)。

Rails 项目是使用 capistrano 部署的。 有时远程 git 存储库关闭,我无法部署最新更新。 我还在 Rails 服务器上克隆了存储库,因此当远程存储库服务器关闭时,我可以将更改推送到 Rails 服务器上的存储库。

配方是什么,以便我可以选择要获取的存储库。

谢谢

I have 2 servers. The hosted rails app server and git repository server. The two servers are connected with internet (not on the same host).

The rails project are deployed with capistrano.
Sometimes the remote git repository is down, I could not deploy the latest update.
I also have cloned repository on the rails server, so when the remote repository server is down, I could push my changes to the repository on rails server instead.

What is the recipe so I could choose which repository to fetch.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁吢 2024-10-15 16:39:36

解决此问题的一种方法是动态设置 :repository 变量。

也许设置一个在 deploy:update 之前调用的任务,该任务使用 git ls-remote #{repository} #{branch} 检查存储库是否存在并响应。

像这样的东西(未经测试,可能不起作用!)

set :repos, ["[email protected]:whatever/project.git", "[email protected]/repos/project.git"]
set :branch, "master"

task :select_repository do
  repos.each do |repo|
    if capture("git ls-remote #{repo} #{branch}") =~ /refs\/heads\/#{branch}/
      set :repository, repo
      return true
    end
  end
end

before "deploy:update" do
  select_repository
end

One way to approach this would be to set the :repository variable on the fly.

Perhaps set up a task which gets called before deploy:update which uses git ls-remote #{repository} #{branch} to check whether the repository is there and responding.

Something like this (this is untested and may not work!):

set :repos, ["[email protected]:whatever/project.git", "[email protected]/repos/project.git"]
set :branch, "master"

task :select_repository do
  repos.each do |repo|
    if capture("git ls-remote #{repo} #{branch}") =~ /refs\/heads\/#{branch}/
      set :repository, repo
      return true
    end
  end
end

before "deploy:update" do
  select_repository
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文