1

我正在运行 argocd 命令

argocd repo add https://gitlab.<mysite>.com/<repo>.git

我得到错误并且是已知的。现在,为避免这种情况,我在 argocd kubernetes pod 中设置 ~/.gitconfig 如下

[http "https://gitlab.<mysite>.com"]
proxy = http://www-proxy.<proxy-server>:8080

如何将此配置传递给 argocd 命令?

PS 我已经尝试在 argocd server pod 的 ~/.gitconfig 中写下以上两行

另外,我尝试过以下命令

argocd repo add https://gitlab.<mysite>/<repo>.git --config '[http "https://gitlab.<mysite>.com"] \n proxy = http://www-proxy.<proxy-server>:8080'

4

1 回答 1

0

添加单个存储库时,您可以在添加此存储库时为其指定代理。您将需要使用:

argocd repo add https://gitlab.<mysite>/<repo>.git --proxy http://www-proxy.<proxy-server>:8080

于 2021-06-17T21:43:20.197 回答