summaryrefslogtreecommitdiffstats
path: root/roles/openshift_provisioners/tasks/oc_apply.yaml
blob: 239e1f1cc9aa0e6a01d299d2f0c47c018f743845 (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
---
- name: Checking generation of {{file_content.kind}} {{file_content.metadata.name}}
  command: >
    {{ openshift_client_binary }} --config={{ kubeconfig }}
    get {{file_content.kind}} {{file_content.metadata.name}}
    -o jsonpath='{.metadata.resourceVersion}'
    -n {{namespace}}
  register: generation_init
  failed_when: "'not found' not in generation_init.stderr and generation_init.stdout == ''"
  changed_when: no

- name: Applying {{file_name}}
  command: >
    {{ openshift_client_binary }} --config={{ kubeconfig }}
    apply -f {{ file_name }}
    -n {{ namespace }}
  register: generation_apply
  failed_when:
    - "'error' in generation_apply.stderr"
    - "generation_apply.rc != 0"
  changed_when: no

- name: Determine change status of {{file_content.kind}} {{file_content.metadata.name}}
  command: >
    {{ openshift_client_binary }} --config={{ kubeconfig }}
    get {{file_content.kind}} {{file_content.metadata.name}}
    -o jsonpath='{.metadata.resourceVersion}'
    -n {{namespace}}
  register: generation_changed
  failed_when: "'not found' not in generation_changed.stderr and generation_changed.stdout == ''"
  changed_when: generation_changed.stdout | default (0) | int  > generation_init.stdout | default(0) | int
  when:
    - "'field is immutable' not in generation_apply.stderr"

- name: Removing previous {{file_name}}
  command: >
    {{ openshift_client_binary }} --config={{ kubeconfig }}
    delete -f {{ file_name }}
    -n {{ namespace }}
  register: generation_delete
  failed_when:
    - "'error' in generation_delete.stderr"
    - "generation_delete.rc != 0"
  changed_when: generation_delete.rc == 0
  when: generation_apply.rc != 0

- name: Recreating {{file_name}}
  command: >
    {{ openshift_client_binary }} --config={{ kubeconfig }}
    apply -f {{ file_name }}
    -n {{ namespace }}
  register: generation_apply
  failed_when:
    - "'error' in generation_apply.stderr"
    - "generation_apply.rc != 0"
  changed_when: generation_apply.rc == 0
  when: generation_apply.rc != 0