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 a246f53 commit 1ab118dCopy full SHA for 1ab118d
linodecli/plugins/get-kubeconfig.py
@@ -15,6 +15,7 @@
15
16
from linodecli.exit_codes import ExitCodes
17
from linodecli.help_formatter import SortingHelpFormatter
18
+from linodecli.plugins import inherit_plugin_args
19
20
PLUGIN_BASE = "linode-cli get-kubeconfig"
21
@@ -23,8 +24,10 @@ def call(args, context):
23
24
"""
25
The entrypoint for this plugin
26
- parser = argparse.ArgumentParser(
27
- PLUGIN_BASE, add_help=True, formatter_class=SortingHelpFormatter
+ parser = inherit_plugin_args(
28
+ argparse.ArgumentParser(
29
+ PLUGIN_BASE, add_help=True, formatter_class=SortingHelpFormatter
30
+ )
31
)
32
33
group = parser.add_mutually_exclusive_group()
0 commit comments