[WIP] Fix 'helm repo add' when running inside container
localhost inside of the container gets resolved into 172.17.0.1, and helm is binded to 127.0.0.1. Change local helm repository url to use exactly 127.0.0.1. Change-Id: I53f4c0667fb471f8e2fcd02fba395f343c1a0f00
This commit is contained in:
parent
f14ab949d6
commit
8921b97c02
@ -58,7 +58,7 @@ if ${HELM} repo list | grep -q "^stable" ; then
|
||||
${HELM} repo remove stable
|
||||
fi
|
||||
|
||||
${HELM} repo add local http://localhost:8879/charts
|
||||
${HELM} repo add local http://127.0.0.1:8879/charts
|
||||
|
||||
|
||||
#OSH Makefile is bugged, so ensure helm is in the path
|
||||
|
Loading…
Reference in New Issue
Block a user