From 18fa480797a8e0e2c80ed12177f84586396a711b Mon Sep 17 00:00:00 2001 From: Andra Constantin Date: Mon, 18 Nov 2024 20:13:18 -0500 Subject: [PATCH] default empty string for api key --- deploy/scripts/setup_cluster.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deploy/scripts/setup_cluster.py b/deploy/scripts/setup_cluster.py index 9faaa89fb8..71255590fe 100755 --- a/deploy/scripts/setup_cluster.py +++ b/deploy/scripts/setup_cluster.py @@ -110,6 +110,9 @@ def main() -> None: # Add the current script directory to the OS Environment variables os.environ["SCRIPTS_DIR"] = str(scripts_dir) + # Add an empty analytics key if not defined in the OS Environment variables + if "HONEYCOMB_API_KEY" not in os.environ: + os.environ["HONEYCOMB_API_KEY"] = "" # Verify the Kubernetes/Helm environment kube_env = KubernetesEnvironment(args)