From 94be12b945141170e89c5c555a9a199a2325f66b Mon Sep 17 00:00:00 2001 From: parth-gr Date: Tue, 8 Oct 2024 17:51:49 +0530 Subject: [PATCH] external: enable the v2 port by default in downstream for 4.18 we will use the default v2 settings from the cluster CR So ask python script to fetch only v2 port Signed-off-by: parth-gr --- deploy/examples/create-external-cluster-resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/examples/create-external-cluster-resources.py b/deploy/examples/create-external-cluster-resources.py index 268176c4f607..a1c5f52b827e 100644 --- a/deploy/examples/create-external-cluster-resources.py +++ b/deploy/examples/create-external-cluster-resources.py @@ -322,7 +322,7 @@ def gen_arg_parser(cls, args_to_parse=None): common_group.add_argument( "--v2-port-enable", action="store_true", - default=False, + default=True, # default is True to enable v2 mon port in downstream help="Enable v2 mon port(3300) for mons", )