Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ami building. #6373

Merged
merged 1 commit into from Dec 7, 2017
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions playbooks/init/main.yml
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
@@ -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