diff --git a/src/lint.py b/src/lint.py index 77384c7..b8d0ebc 100644 --- a/src/lint.py +++ b/src/lint.py @@ -72,16 +72,6 @@ def is_default(validator, properties, instance, schema): print(f"::error file={config}::'webui' should be removed, Ingress is enabled.") exit_code = 1 - if ( - configuration.get("host_network", False) - and configuration.get("ingress_port", 8099) != 0 - ): - print( - f"::error file={config}::'ingress_port' this add-on runs on the host network. " - "Ingress port should be set to 0." - ) - exit_code = 1 - if ( not configuration.get("host_network", False) and configuration.get("ingress_port", 8099) == 0