summaryrefslogtreecommitdiffstats
path: root/roles/openshift_resource/tasks/template.yml
blob: 188599f8a01135fc6419e216d166f8a061a3131c (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
---
- block:
  - name: Find out which resources we are going to configure
    set_fact: resources="{{ tmpl | json_query(query) }}"
    vars:
      query: "objects[*].{kind: kind, name: metadata.name}"

  - set_fact: resources="{{ [] }}"
    when: resources == ""

  - name: "{{ template }}: Lookup the specified resource in {{project}}"
    command: "oc get -n {{project}} {{item.kind}}/{{item.name}}"
    register: results
    failed_when: false
    changed_when: (results | failed)
    with_items: "{{ resources | default([]) }}"

  - name: "{{ template }}: Detroy existing resources in {{project}}"
    command: "oc delete -n {{project}} {{resources[item|int].kind}}/{{resources[item|int].name}}"
    failed_when: false
    with_sequence: start=0 count="{{resources | default([]) | length}}"
    when: ((recreate|default(false)) or (results | changed)) and (results.results[item|int].rc == 0)

  - name: "{{ template }}: Populate resources to {{project}}"
    shell: "oc process -n {{project}} -f '{{ template_path }}/{{template}}' {{ template_args | default('') }} | oc create -n {{project}} -f - {{ create_args | default('') }}"
    when: 
      - (recreate|default(false)) or (results | changed)
      - resources | length > 0

  run_once: true