Skip to content

Commit

Permalink
Update deploy.py
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Feb 10, 2024
1 parent 12fdadb commit a2be31e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def cluster_exists(cluster_name):

def handle_helm():
if args.uninstall:
subprocess.run(['helm', 'uninstall', HELM_RELEASE_NAME], check=True)
subprocess.run(['kubectl', 'delete','namespace','loculus'], check=True)
subprocess.run(['helm', 'uninstall', HELM_RELEASE_NAME, '--namespace', 'loculus'], check=True)
subprocess.run(['kubectl', 'delete', 'namespace', 'loculus'], check=True)

return

Expand Down

0 comments on commit a2be31e

Please sign in to comment.