我希望在 Google 容器注册表上更新我的映像后能够自动更新我的 Google Cloud Run 服务。
我需要基于同一映像(其标签为 :latest )更新多个 Cloud Run 服务,因此我希望这能起作用。
# build & push the container image
- name: "gcr.io/kaniko-project/executor:latest"
args: ["--cache=true", "--cache-ttl=48h", "--destination=gcr.io/project/titan:latest"]
Run Code Online (Sandbox Code Playgroud)
目前,我的 titan 映像已更新,但没有新的修订版部署到 Cloud Run。