add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

36
pages.zh/common/fly.md Normal file
View File

@@ -0,0 +1,36 @@
# fly
> Concourse-ci 的命令行工具。
> 更多信息:<https://concourse-ci.org/fly.html>。
- 认证并保存 concourse 目标:
`fly --target {{target_name}} login --team-name {{team_name}} -c {{https://ci.example.com}}`
- 列出目标:
`fly targets`
- 列出管道:
`fly -t {{target_name}} pipelines`
- 上传或更新管道:
`fly -t {{target_name}} set-pipeline --config {{pipeline.yml}} --pipeline {{pipeline_name}}`
- 解除管道暂停:
`fly -t {{target_name}} unpause-pipeline --pipeline {{pipeline_name}}`
- 显示管道配置:
`fly -t {{target_name}} get-pipeline --pipeline {{pipeline_name}}`
- 更新本地的 fly 副本:
`fly -t {{target_name}} sync`
- 销毁管道:
`fly -t {{target_name}} destroy-pipeline --pipeline {{pipeline_name}}`