我有个问题。我想在kubernetes上安装helm,但是当我想运行这个命令helm init --upgrade时,我得到了这个错误:
Creating /root/.helm
Creating /root/.helm/repository
Creating /root/.helm/repository/cache
Creating /root/.helm/repository/local
Creating /root/.helm/plugins
Creating /root/.helm/starters
Creating /root/.helm/repository/repositories.yaml
Error: Looks like "https://kubernetes-charts.storage.googleapis.com" is not
a valid chart repository or cannot be reached: Get https://kubernetes-
charts.storage.googleapis.com/index.yaml: dial tcp 216.58.197.80:443: i/o
timeout我认为代理设置没有设置,但我不知道如何设置。
一个想法?
谢谢你的帮助
由衷地,
Killer_Minet
发布于 2017-04-22 21:16:35
也许你有一个内部代理?如果是这样,您需要将https_proxy环境设置为https_proxy=<your proxy> helm init --upgrade。您也可以将其全局设置为export https_proxy=<your proxy>。
https://stackoverflow.com/questions/43115464
复制相似问题