我正在运行一个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命令?
附言:我试着在argocd服务器pod 的~/.gitconfig中写上面两行
此外,我已经尝试了以下命令
argocd repo add https://gitlab.<mysite>/<repo>.git --config '[http "https://gitlab.<mysite>.com"] n proxy = http://www-proxy.<proxy-server>:8080'
添加单个回购时,可以在添加时指定此回购的代理。您需要使用:
argocd repo add https://gitlab.<mysite>/<repo>.git --proxy http://www-proxy.<proxy-server>:8080