Skip to content

Commit

Permalink
Update wait_for_pods_to_be_ready.py
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Feb 10, 2024
1 parent 075d008 commit 110ba91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/wait_for_pods_to_be_ready.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def main():


def get_pods():
cmd = ['kubectl', 'get', 'pods', '-l', 'app=loculus', '-n', 'loculus', '-o', 'json']
cmd = ['kubectl', 'get', 'pods', '-l', 'app=loculus', '-o', 'json']
result = subprocess.run(cmd, capture_output=True, text=True)
return json.loads(result.stdout)['items']

Expand Down

0 comments on commit 110ba91

Please sign in to comment.