English 中文(简体)
using Helm behind a proxy
原标题:

I want to use Helm on new environment that only have access to Internte via Proxy. How can I use Helm commands with proxy? helm repo add .... helm repo update

I tried to give proxy in command but I get following error: Error: "helm repo add" requires 2 arguments

最佳回答

You can set HTTPS_PROXY=http://myproxy.com:8080 and then use helm commands.

example:

HTTPS_PROXY=http://myproxy.com:8080 helm repo add minio https://helm.min.io/
问题回答

Note that the HTTPS_PROXY env var is case sensitive. So for example:

HTTPS_PROXY=$https_proxy

May resolve the helm repo add failure.





相关问题
using Helm behind a proxy

I want to use Helm on new environment that only have access to Internte via Proxy. How can I use Helm commands with proxy? helm repo add .... helm repo update I tried to give proxy in command but I ...

helm with if condition and its scope for the value set

I would like to overwrite the user template with .Values.userTemplate if it exist. But I always get $user as undefined when the .Vaues.userTemplate exist. If i remove if condition and use {{- $user := ...

热门标签