We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48629bf commit acc63edCopy full SHA for acc63ed
src/warnet/deploy.py
@@ -235,14 +235,6 @@ def deploy_namespaces(directory: Path):
235
with namespaces_file_path.open() as f:
236
namespaces_file = yaml.safe_load(f)
237
238
- names = [n.get("name") for n in namespaces_file["namespaces"]]
239
- for n in names:
240
- if not n.startswith("warnet-"):
241
- click.echo(
242
- f"Failed to create namespace: {n}. Namespaces must start with a 'warnet-' prefix."
243
- )
244
- return
245
-
246
for namespace in namespaces_file["namespaces"]:
247
click.echo(f"Deploying namespace: {namespace.get('name')}")
248
try:
0 commit comments