-
Notifications
You must be signed in to change notification settings - Fork 29
/
include_defaults.yml
35 lines (30 loc) · 1.26 KB
/
include_defaults.yml
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
- hosts: localhost:all
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
tasks:
- name: include global override files
include_vars: "{{ item }}"
loop:
- "{{ playbook_dir }}/defaults/global_taco.yml"
- "{{ playbook_dir }}/defaults/global_k8s-cluster.yml"
- name: include global override values - k8s images
include_vars: "{{ item }}"
loop:
- "{{ playbook_dir }}/defaults/global_k8s-images.yml"
when: container_registry_enabled or (container_registries and container_registries[0].default)
- name: include global override values - k8s downloads
include_vars: "{{ item }}"
loop:
- "{{ playbook_dir }}/defaults/global_k8s-download.yml"
- "{{ playbook_dir }}/defaults/global_k8s-clients-download.yml"
when: k8s_binary_repo_url != ""
- name: include global override values - taco apps
include_vars: "{{ item }}"
loop:
- "{{ playbook_dir }}/defaults/global_taco-apps.yml"
when: taco_apps is defined and (taco_apps|length>0)
- name: fill TACOFIXME for validating site specific vars
include_vars: "{{ item }}"
loop:
- "{{ playbook_dir }}/defaults/TACOFIXME.yml"
when: var_assert_enabled|default(false)
tags: always