forked from redhat-cop/agnosticd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Get rid of ANSIBLE_REPO_PATH var and vars_files includes
sed s/workdir_dir/output_dir/g : Better name fix travis tests add setup_runtime and set output_dir if not defined don't define ANSIBLE_REPO_PATH (it's statically used) revert changes on linklight revert rhte-ansible-net fix path in destroy_env playbooks fix missing vars_files in rhte-ocp-workshop use dynamic include_vars instead of vars_files test destroy_env.yml playbooks from the config dir too add more tests, without setting ANSIBLE_REPO_PATH add detection of regions in the infra-ec2-template-destroy role use common role infra-azure-template-destroy DRY Code DRY: use ec2-infra-template-destroy role when possible fix destroy_env playbooks add include_vars.yml revert changes on doc files add scaleup playbook to tests, fix them add ansible/ansible.cfg fix old calls to openshift-node (now host-ocp-node) keep nocows=1 fix file in setup_runtime
- Loading branch information
Showing
181 changed files
with
1,031 additions
and
1,181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[defaults] | ||
nocows = 1 | ||
roles_path = roles | ||
forks = 50 | ||
become = false | ||
gathering = smart | ||
host_key_checking = False # dealing with escalation prompt errors on slow links | ||
timeout = 60 | ||
callback_whitelist = profile_tasks | ||
stdout_callback = yaml | ||
# Use the stdout_callback when running ad-hoc commands. | ||
bin_ansible_callbacks = True | ||
|
||
[privilege_escalation] | ||
become = false | ||
|
||
# override ssh_config ControlPath to use hashed value to handle long node names | ||
[ssh_connection] | ||
control_path = /tmp/%%h-%%r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
- name: Configure local ssh config for bastion proxy use | ||
import_playbook: "{{ANSIBLE_REPO_PATH | default('.')}}/cloud_providers/common_ssh_config_setup.yml" | ||
import_playbook: common_ssh_config_setup.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
- name: Import default CloudFormation (aws) destroy playbook | ||
import_playbook: "{{workdir_dir}}/cloud_providers/{{cloud_provider}}_destroy_env.yml" | ||
import_playbook: "../../cloud_providers/{{cloud_provider}}_destroy_env.yml" |
Oops, something went wrong.