Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Mar 7, 2024
1 parent 5a5b2a5 commit f6b7261
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions artifacts/k8s_galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
destinations:
k8s:
runner: k8s
{{ 'max_cores: ' ~ max_cores if max_cores | int > 0 else '# no max_cores' }}
{{ 'max_cores: ' ~ (max_cores | int - 1) if max_cores | int > 0 else '# no max_cores' }}
{{ 'max_mem: ' ~ max_mem if max_mem | int > 0 else '# no max_mem' }}
# try to pack all the pods in the same nodes
{{ AFFINITY | to_yaml }}
Expand All @@ -174,9 +174,10 @@
KUBECONFIG: /etc/kubernetes/admin.conf

- name: Deploy Galaxy
command: helm install --create-namespace -n {{ NAMESPACE }} galaxy galaxy/galaxy --timeout 15m -f /opt/galaxy_values.yaml --version 5.9.0
command: helm install --create-namespace -n {{ NAMESPACE }} galaxy galaxy/galaxy --timeout 10m -f /opt/galaxy_values.yaml --version 5.9.0
environment:
KUBECONFIG: /etc/kubernetes/admin.conf
ignore_errors: yes

Check failure on line 180 in artifacts/k8s_galaxy.yml

View workflow job for this annotation

GitHub Actions / test-artifacts

yaml[truthy]

Truthy value should be one of \[false, true]

- name: Wait pods to be ready
pause:
Expand Down

0 comments on commit f6b7261

Please sign in to comment.