|
@@ -35,7 +35,8 @@
|
|
|
# It also allows for optional trailing data which:
|
|
|
# - must start with a dash
|
|
|
# - may contain numbers, letters, dashes and dots.
|
|
|
- - assert:
|
|
|
+ - name: Verify Origin openshift_image_tag is valid
|
|
|
+ assert:
|
|
|
that:
|
|
|
- "{{ openshift_image_tag|match('(^v?\\d+\\.\\d+\\.\\d+(-[\\w\\-\\.]*)?$)') }}"
|
|
|
msg: "openshift_image_tag must be in the format v#.#.#[-optional.#]. Examples: v1.2.3, v3.5.1-alpha.1"
|
|
@@ -47,7 +48,8 @@
|
|
|
# It also allows for optional trailing data which:
|
|
|
# - must start with a dash
|
|
|
# - may contain numbers
|
|
|
- - assert:
|
|
|
+ - name: Verify Enterprise openshift_image_tag is valid
|
|
|
+ assert:
|
|
|
that:
|
|
|
- "{{ openshift_image_tag|match('(^v\\d+\\.\\d+[\\.\\d+]*(-\\d+)?$)') }}"
|
|
|
msg: "openshift_image_tag must be in the format v#.#[.#[.#]]. Examples: v1.2, v3.4.1, v3.5.1.3, v1.2-1, v1.2.3-4"
|