mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-13 01:50:55 +00:00
Added needed calls for HelmV3
This commit is contained in:
@@ -145,8 +145,13 @@ function v2PullChart {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function v3PullChart {
|
function v3PullChart {
|
||||||
# TODO implement
|
if [ ! -d "$chartHome/$chartName" ]; then
|
||||||
echo "?? helmV3 pull --repo https://hub.helm.sh/charts/ stable/minecraft --destination /tmp/junk"
|
v3RunHelm pull $chartVersionArg \
|
||||||
|
$chartRepoArg \
|
||||||
|
--untar \
|
||||||
|
--untardir $chartHome \
|
||||||
|
$chartNameArg
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function v2InflateChart {
|
function v2InflateChart {
|
||||||
@@ -158,8 +163,12 @@ function v2InflateChart {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function v3InflateChart {
|
function v3InflateChart {
|
||||||
# TODO implement
|
v3RunHelm template \
|
||||||
true
|
--release-name $releaseName \
|
||||||
|
--namespace $releaseNamespace \
|
||||||
|
--values $valuesFile \
|
||||||
|
$chartHome/$chartName
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HELM_VERSION=$($helmBin version -c --short)
|
HELM_VERSION=$($helmBin version -c --short)
|
||||||
|
|||||||
Reference in New Issue
Block a user