We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7974c5d commit e0498a6Copy full SHA for e0498a6
src/warnet/control.py
@@ -339,6 +339,10 @@ def filter(path):
339
except subprocess.CalledProcessError as e:
340
print(f"Failed to deploy scenario commander: {scenario_name}")
341
print(f"Error: {e.stderr}")
342
+ except FileNotFoundError as e:
343
+ click.secho(e)
344
+ click.secho("Please install Helm.", fg="red")
345
+ sys.exit(1)
346
347
# upload scenario files and network data to the init container
348
wait_for_init(name, namespace=namespace)
0 commit comments