We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffb1c47 commit 297ded4Copy full SHA for 297ded4
src/warnet/deploy.py
@@ -221,14 +221,6 @@ def deploy_namespaces(directory: Path):
221
with namespaces_file_path.open() as f:
222
namespaces_file = yaml.safe_load(f)
223
224
- names = [n.get("name") for n in namespaces_file["namespaces"]]
225
- for n in names:
226
- if not n.startswith("warnet-"):
227
- click.echo(
228
- f"Failed to create namespace: {n}. Namespaces must start with a 'warnet-' prefix."
229
- )
230
- return
231
-
232
for namespace in namespaces_file["namespaces"]:
233
click.echo(f"Deploying namespace: {namespace.get('name')}")
234
try:
0 commit comments