summaryrefslogtreecommitdiffstats
path: root/roles/ands_kaas/tasks/ocitem.yml
blob: 758cdafffff114ccbe437beb538cf139e2f95579 (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
---
- name: Storage
  include_tasks: do_storage.yml
  run_once: true
  vars:
    kaas_storage_regexp: "{{ ocitem.storage }}"
  when: ocitem.storage is defined

- name: Keys
  include_tasks: do_keys.yml
  run_once: true
  vars:
    kaas_keys_regexp: "{{ ocitem.keys }}"
  when: ocitem.keys is defined

- name: OpenShift templates
  include_tasks: templates.yml
  run_once: true
  vars:
    kaas_template_glob: "{{ ocitem.templates }}"
  when: ocitem.templates is defined

- name: OpenShift apps
  include_tasks: do_apps.yml
  run_once: true
  vars:
    kaas_app_regexp: "{{ ocitem.apps }}"
  when: ocitem.apps is defined

- name: OpenShift commands
  include_tasks: oc.yml
  run_once: true
  when: ocitem.oc is defined