Skip to content
Snippets Groups Projects
Verified Commit e16b29ea authored by Ana Aviles's avatar Ana Aviles Committed by Varac
Browse files

Fix string match

parent f5b2bfaf
No related branches found
No related tags found
No related merge requests found
......@@ -10,9 +10,9 @@
- name: Release name must start with lower case
assert:
that: release_name is "/^M/"
that: "'{{ release_name }}' is search('^[a-z]')"
msg: >
"Release name should start with lower case {{ release_name }}"
"Release name ({{ release_name }}) should start with lower case."
- name: Prepare nodes
hosts: cluster
......
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