我正在运行 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'