Skip to content

Commit

Permalink
Remove wait task
Browse files Browse the repository at this point in the history
No longer needed given galaxyproject/galaxy-helm-deps#5
  • Loading branch information
afgane committed Jan 15, 2025
1 parent 4ec7af1 commit f4cb514
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions galaxy_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,6 @@
dest: /tmp/values.yml
mode: '0644'

- name: Wait for webhook pod to be ready
kubernetes.core.k8s_info:
kind: Pod
namespace: galaxy-deps
label_selectors:
- app.kubernetes.io/name=cloudnative-pg
register: webhook_pod
until: >-
webhook_pod.resources is defined and
webhook_pod.resources | length > 0 and
webhook_pod.resources[0].status is defined and
webhook_pod.resources[0].status.phase == "Running" and
webhook_pod.resources[0].status.containerStatuses is defined and
webhook_pod.resources[0].status.containerStatuses | length > 0 and
webhook_pod.resources[0].status.containerStatuses[0].ready
retries: 30
delay: 5

- name: Helm install Galaxy
kubernetes.core.helm:
name: galaxy
Expand Down

0 comments on commit f4cb514

Please sign in to comment.