Update createHelmYaml.sh
All checks were successful
Build docker container / Build image (push) Successful in 13s

This commit is contained in:
ties 2024-09-06 10:22:27 +00:00
parent 11c5dc7767
commit 7ae035234d

View File

@ -21,17 +21,17 @@ function checkKubeConfig(){
function printGlobal(){
if [ -e "Chart.yaml" ]; then
printHelm()
printHelm
else
printRaw()
printRaw
fi
}
function deployGlobal(){
if [ -e "Chart.yaml" ]; then
deployHelm()
deployHelm
else
deployRaw()
deployRaw
fi
}