diff options
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/openshift_version/tasks/main.yml | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/roles/openshift_version/tasks/main.yml b/roles/openshift_version/tasks/main.yml index 4603c5e54..c3d001bb4 100644 --- a/roles/openshift_version/tasks/main.yml +++ b/roles/openshift_version/tasks/main.yml @@ -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"  | 
