Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions playbooks/init/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
- import_playbook: facts.yml

- import_playbook: sanity_checks.yml
when: not (skip_sanity_checks | default(False))

- import_playbook: validate_hostnames.yml
when: not (skip_validate_hostnames | default(False))

- import_playbook: repos.yml

Expand Down
12 changes: 5 additions & 7 deletions playbooks/openshift-node/private/image_prep.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
---
- name: normalize groups
import_playbook: ../../init/evaluate_groups.yml

- name: initialize the facts
import_playbook: ../../init/facts.yml

- name: initialize the repositories
import_playbook: ../../init/repos.yml
import_playbook: ../../prerequisites.yml
vars:
skip_version: True
skip_sanity_checks: True
skip_validate_hostnames: True

- name: run node config setup
import_playbook: setup.yml
Expand Down