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 e9bbbd0 commit 70df087Copy full SHA for 70df087
src/warnet/deploy.py
@@ -311,9 +311,8 @@ def deploy_ingress(directory: Path, debug: bool):
311
network_file_path = directory / NETWORK_FILE
312
with network_file_path.open() as f:
313
network_file = yaml.safe_load(f)
314
- fo_enabled = network_file.get("fork_observer", {}).get("enabled", False)
315
- logging_enabled = check_logging_required(directory)
316
- if not (fo_enabled or logging_enabled):
+ # Only start if caddy is enabled in the network file
+ if not network_file.get("caddy", {}).get("enabled", False):
317
return
318
click.echo("Deploying ingress controller")
319
0 commit comments