From 11c5dc7767875af6e323ae767a5138784bbf6380 Mon Sep 17 00:00:00 2001 From: ties Date: Fri, 6 Sep 2024 10:20:20 +0000 Subject: [PATCH] Update createHelmYaml.sh --- createHelmYaml.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/createHelmYaml.sh b/createHelmYaml.sh index 96c97fc..78f99ab 100644 --- a/createHelmYaml.sh +++ b/createHelmYaml.sh @@ -1,6 +1,5 @@ #!/bin/bash - function checkKubeConfig(){ echo "# Check if kubeconfig exists..." if [[ -n "$KUBECONFIG_DATA" ]]; then @@ -22,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 }