From 09739adb5a44c98f2ca22073724d3c1d1087ff67 Mon Sep 17 00:00:00 2001 From: Kurt Kikendall Date: Thu, 7 Mar 2024 14:35:56 -0500 Subject: [PATCH] Remove ability to create new contxt-managed services from the CLI --- contxt/cli/commands/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contxt/cli/commands/services.py b/contxt/cli/commands/services.py index 79569150..b4b86407 100644 --- a/contxt/cli/commands/services.py +++ b/contxt/cli/commands/services.py @@ -33,7 +33,7 @@ def get(clients: Clients, id: str, fields: List[str], sort: str) -> None: @click.option("--type", type=click.Choice(["API", "Application", "Worker"]), prompt=True) @click.option( "--deployment-strategy", - type=click.Choice(["self-managed", "contxt-managed", "unmanaged"]), + type=click.Choice(["self-managed", "unmanaged"]), prompt=True, ) @click.pass_obj