summaryrefslogtreecommitdiff
path: root/test/integration/targets/k8s/tasks/older_openshift_fail.yml
blob: 2acf3d2175c4c6976c8a9d566c29f4ece359f926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
    - python_requirements_info:
        dependencies:
          - openshift==0.6.0
          - kubernetes==6.0.0

    # append_hash
    - name: use append_hash with ConfigMap
      k8s:
        definition:
          metadata:
            name: config-map-test
            namespace: "{{ playbook_namespace }}"
          apiVersion: v1
          kind: ConfigMap
          data:
            hello: world
        append_hash: yes
      ignore_errors: yes
      register: k8s_append_hash

    - name: assert that append_hash fails gracefully
      assert:
        that:
          - k8s_append_hash is failed
          - "'Failed to import the required Python library (openshift >= 0.7.2)' in k8s_append_hash.msg"
          - "'. This is required for append_hash.' in k8s_append_hash.msg"

    # validate
    - name: attempt to use validate with older openshift
      k8s:
        definition:
          metadata:
            name: config-map-test
            namespace: "{{ playbook_namespace }}"
          apiVersion: v1
          kind: ConfigMap
          data:
            hello: world
        validate:
          fail_on_error: yes
      ignore_errors: yes
      register: k8s_validate

    - name: assert that validate fails gracefully
      assert:
        that:
          - k8s_validate is failed
          - "k8s_validate.msg == 'openshift >= 0.8.0 is required for validate'"

    # apply
    - name: attempt to use apply with older openshift
      k8s:
        definition:
          metadata:
            name: config-map-test
            namespace: "{{ playbook_namespace }}"
          apiVersion: v1
          kind: ConfigMap
          data:
            hello: world
        apply: yes
      ignore_errors: yes
      register: k8s_apply

    - name: assert that apply fails gracefully
      assert:
        that:
          - k8s_apply is failed
          - "k8s_apply.msg.startswith('Failed to import the required Python library (openshift >= 0.9.2)')"