File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 2424HELM_INSTALL_SCRIPT_PATH = "tests/helm_install.sh"
2525BASH_HEADER = "#!/usr/bin/env bash\n \n "
2626
27+
2728def get_helm_install_command_header (helm_chart_version : str ) -> str :
2829 """Generate helm install command header with dynamic version.
2930 Args:
@@ -33,6 +34,7 @@ def get_helm_install_command_header(helm_chart_version: str) -> str:
3334 """
3435 return f"""readonly ROOT_DIR="$(dirname "$(dirname "${{0}}")")"\n \n helm upgrade --install test-openshift sumologic/sumologic \\ \n --version { helm_chart_version } \\ \n -n sumologic-system \\ \n --create-namespace -f "${{ROOT_DIR}}/tests/values.yaml" \\ \n """
3536
37+
3638# COMPONENTS_CONFIG_MAP maps helm chart configuration keys into components names
3739COMPONENTS_CONFIG_MAP = {
3840 "instrumentation.instrumentationJobImage.image" : "kubernetes-tools-kubectl" ,
You can’t perform that action at this time.
0 commit comments