Skip to content

Commit

Permalink
Cluster setup should succeed without Honeycomb key (#3453)
Browse files Browse the repository at this point in the history
  • Loading branch information
andracc authored Nov 19, 2024
1 parent cb9dcd1 commit 42000d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deploy/scripts/setup_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 42000d7

Please sign in to comment.