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(){ function printGlobal(){
if [ -e "Chart.yaml" ]; then if [ -e "Chart.yaml" ]; then
printHelm() printHelm
else else
printRaw() printRaw
fi fi
} }
function deployGlobal(){ function deployGlobal(){
if [ -e "Chart.yaml" ]; then if [ -e "Chart.yaml" ]; then
deployHelm() deployHelm
else else
deployRaw() deployRaw
fi fi
} }