From 93c410936ee7e7114a98d1fd109c30cf48a9af46 Mon Sep 17 00:00:00 2001 From: Luis Vega Date: Thu, 23 Nov 2023 20:21:35 +0000 Subject: [PATCH] Feature 11002: Deprecate helmv2 Change-Id: I75901e1f370b896222ae5a8528afc59661e572bf Signed-off-by: Luis Vega --- osmclient/cli_commands/k8scluster.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/osmclient/cli_commands/k8scluster.py b/osmclient/cli_commands/k8scluster.py index 9c1bcce..77e1124 100755 --- a/osmclient/cli_commands/k8scluster.py +++ b/osmclient/cli_commands/k8scluster.py @@ -38,12 +38,6 @@ logger = logging.getLogger("osmclient") help='''list of VIM networks, in JSON inline format, where the cluster is accessible via L3 routing, e.g. "{(k8s_net1:vim_network1) [,(k8s_net2:vim_network2) ...]}"''', ) -@click.option( - "--init-helm2/--skip-helm2", - required=False, - default=True, - help="Initialize helm v2", -) @click.option( "--init-helm3/--skip-helm3", required=False, @@ -86,7 +80,6 @@ def k8scluster_add( version, vim, k8s_nets, - init_helm2, init_helm3, init_jujubundle, description, @@ -106,9 +99,8 @@ def k8scluster_add( cluster["k8s_version"] = version cluster["vim_account"] = vim cluster["nets"] = yaml.safe_load(k8s_nets) - if not (init_helm2 and init_jujubundle and init_helm3): + if not (init_jujubundle and init_helm3): cluster["deployment_methods"] = { - "helm-chart": init_helm2, "juju-bundle": init_jujubundle, "helm-chart-v3": init_helm3, } -- 2.25.1