aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/exts/kubernetes/deployments.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-07-17 22:43:04 +0100
committerGravatar Joe Banks <[email protected]>2021-07-17 22:43:04 +0100
commit0604ded5bf7b26de11b8a4942dcce656c5759fcd (patch)
tree1db9b0b4f9c3c4a23819abd6e6d46db5e7ccee31 /arthur/exts/kubernetes/deployments.py
parentfeat: add cog for working with TLS certificates (diff)
feat: add ls alises for listing commands
Diffstat (limited to 'arthur/exts/kubernetes/deployments.py')
-rw-r--r--arthur/exts/kubernetes/deployments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/exts/kubernetes/deployments.py b/arthur/exts/kubernetes/deployments.py
index 0a5595d..aca4245 100644
--- a/arthur/exts/kubernetes/deployments.py
+++ b/arthur/exts/kubernetes/deployments.py
@@ -23,7 +23,7 @@ class Deployments(commands.Cog):
"""Commands for working with Kubernetes Deployments."""
await ctx.send_help(ctx.command)
- @deployments.command(name="list")
+ @deployments.command(name="list", aliases=["ls"])
async def deployments_list(self, ctx: commands.Context, namespace: str = "default") -> None:
"""List deployments in the selected namespace (defaults to default)."""
async with ApiClient() as api: