Przeglądaj źródła

Add names to openshift_image_tag asserts

Steve Milner 8 lat temu
rodzic
commit
1664a447b1
1 zmienionych plików z 4 dodań i 2 usunięć
  1. 4 2
      roles/openshift_version/tasks/main.yml

+ 4 - 2
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"