Helm阻止在helm init上添加默认图表回购

时间:2019-01-14 23:06:44

标签: kubernetes gitlab openshift kubernetes-helm

我想将Helm与Gitlab一起使用,以将我的服务部署到OpenShift。

我在OpenShift中部署了一个Gitlab Runner。

我已经在tiller命名空间下的Openshift中安装了Tiller,并且正在使用docker映像docker.greater.com.au/platform/images/dtzar/helm-kubectl:latest

我的系统还位于代理服务器之后,我将无法通过它。

作为我的Gitlab CI构建步骤之一,我需要执行以下操作:

$ helm init --client-only
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/cache/archive 
Creating /root/.helm/repository/repositories.yaml 
Adding stable repo with URL: https://kubernetes-charts.storage.googleapis.com 
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: Proxy Authorization Required

我的主要问题是,我想知道是否可以禁止Helm尝试将https://kubernetes-charts.storage.googleapis.com添加为helm init的一部分作为笔迹吗?

也许值得注意的是,我不知道helm init --client-only是在此设置中使用helm的必要步骤。

我还尝试了一个简单的helm version,并且服务器响应时出现“需要代理授权”错误。

Client: &version.Version{SemVer:"v2.12.1", 
GitCommit:"02a47c7249b1fc6d8fd3b94e6b4babf9d818144e", GitTreeState:"clean"}
Error: Get https://---.---.---.---:---/api/v1/namespaces/tiller/pods?labelSelector=app%3Dhelm%2Cname%3Dtiller: Proxy Authorization Required

我已经删除了IP地址,但是它试图在运行此helm version命令时从错误的IP地址解析Tiller服务器。

1 个答案:

答案 0 :(得分:0)

您可以使用选项-o --stable-repo-url url定义要使用的稳定存储库。

示例:helm init --client-only --stable-repo-url https://path.to.my.repo

您可以找到更多信息here