-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add the initial playbook handler from GoDaddy #15
base: master
Are you sure you want to change the base?
Add the initial playbook handler from GoDaddy #15
Conversation
This includes all sorts of GD specific refrences that need to be refactored, but at least a base handler is here now.
How about we kick all the GD stuff out first :) |
(honestly there isn't alot to kick out, would just be nice to d o that now vs later). |
Actually, I guess there isn't that much GD stuff, just some kolla stuff. |
return vault_path | ||
|
||
|
||
def generate_cloud_inventories(config): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we cut this out somehow?
return inventories | ||
|
||
|
||
def generate_kolla_ansible_extra_vars(working_dir, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same with this :)
if not enabled: | ||
return False | ||
all_found = utils.can_find_all_executables( | ||
["ansible-playbook", 'render-ansible', 'git'], logger=LOG) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's 'render-ansible' ;)
This includes all sorts of GD specific refrences that need to be
refactored, but at least a base handler is here now.