summaryrefslogtreecommitdiffstats
path: root/roles/openshift_metrics/tasks/oc_apply.yaml
blob: dd67703b4a96301e0f49831c988f76ff84cd7507 (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
---
- name: Checking generation of {{file_content.kind}} {{file_content.metadata.name}}
  command: >
    {{ openshift.common.client_binary }}
    --config={{ kubeconfig }}
    get {{file_content.kind}} {{file_content.metadata.name}}
    -o jsonpath='{.metadata.resourceVersion}'
    -n {{namespace}}
  register: generation_init
  failed_when: false
  changed_when: no

- name: Applying {{file_name}}
  command: >
    {{ openshift.common.client_binary }} --config={{ kubeconfig }}
    apply -f {{ file_name }}
    -n {{ openshift_metrics_project }}
  register: generation_apply
  failed_when: "'error' in generation_apply.stderr"
  changed_when: no

- name: Determine change status of {{file_content.kind}} {{file_content.metadata.name}}
  command: >
    {{ openshift.common.client_binary }} --config={{ kubeconfig }}
    get {{file_content.kind}} {{file_content.metadata.name}}
    -o jsonpath='{.metadata.resourceVersion}'
    -n {{namespace}}
  register: version_changed
  vars:
    init_version: "{{ (generation_init is defined) | ternary(generation_init.stdout, '0') }}"
  failed_when: "'error' in version_changed.stderr"
  changed_when: version_changed.stdout | int  > init_version | int