Skip to content
Snippets Groups Projects
Verified Commit ade12a9e authored by Falk Rehse's avatar Falk Rehse
Browse files

Ignore pipefail rule

parent 5dd82c1a
No related branches found
Tags v3.0.1
No related merge requests found
Pipeline #270641 passed
......@@ -177,9 +177,10 @@
when: gitlab_enable_offline_registry_cleanup
- name: Apply registry database migrations
ansible.builtin.shell: set -o pipefail && yes | gitlab-ctl registry-database migrate up
ansible.builtin.shell: yes | gitlab-ctl registry-database migrate up # noqa risky-shell-pipe
register: migration_result
changed_when: '"OK: applied 0 migrations" not in migration_result.stdout'
failed_when: '"OK: applied" not in migration_result.stdout'
when: gitlab_enable_metadata_registry_database
- name: Install PlantUML
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment