Address comments to lxc branch and fix several bugs with example-lxc.py
- C.HOST_KEY_CHECKING = False for ansible_playbook.py handler - mkdir -p {{keys_dir}} added to ssh_key resource run action
This commit is contained in:
parent
276f58fb4f
commit
e879c07d4b
@ -42,8 +42,9 @@ def deploy():
|
|||||||
seed = vr.create('nodes', 'templates/seed_node.yml', {})[0]
|
seed = vr.create('nodes', 'templates/seed_node.yml', {})[0]
|
||||||
|
|
||||||
ssh_key = vr.create('ssh_key1', 'resources/ssh_key', {
|
ssh_key = vr.create('ssh_key1', 'resources/ssh_key', {
|
||||||
'path': '/vagrant/.ssh/id_rsa',
|
'keys_dir': '/vagrant/.ssh',
|
||||||
'pub_path': '/vagrant/.ssh/id_rsa.pub',
|
'private_key': '/vagrant/.ssh/id_rsa',
|
||||||
|
'public_key': '/vagrant/.ssh/id_rsa.pub',
|
||||||
'passphrase': '',
|
'passphrase': '',
|
||||||
})[0]
|
})[0]
|
||||||
signals.connect(seed, ssh_key)
|
signals.connect(seed, ssh_key)
|
||||||
@ -100,8 +101,8 @@ def deploy():
|
|||||||
signals.connect(lxc_infra1, lxc_host_idx, {'provides': 'requires'})
|
signals.connect(lxc_infra1, lxc_host_idx, {'provides': 'requires'})
|
||||||
signals.connect(cnets2, lxc_host_idx)
|
signals.connect(cnets2, lxc_host_idx)
|
||||||
signals.connect(ssh_key, lxc_host_idx, {
|
signals.connect(ssh_key, lxc_host_idx, {
|
||||||
'pub_path': 'pub_key',
|
'public_key': 'pub_key',
|
||||||
'path': 'user_key'})
|
'private_key': 'user_key'})
|
||||||
|
|
||||||
# RABBIT
|
# RABBIT
|
||||||
rabbitmq_service1 = vr.create('rabbitmq_service1', 'resources/rabbitmq_service/', {
|
rabbitmq_service1 = vr.create('rabbitmq_service1', 'resources/rabbitmq_service/', {
|
||||||
@ -134,5 +135,3 @@ main.add_command(deploy)
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
||||||
ansible-playbook --module-path /vagrant/library -i /tmp/tmp8bTQzi/tmpGUYX4Bdocker20/inventory /tmp/tmp8bTQzi/tmpGUYX4Bdocker20/runIMUDej
|
|
@ -3,10 +3,12 @@
|
|||||||
gather_facts: false
|
gather_facts: false
|
||||||
# this is default variables, they will be overwritten by resource one
|
# this is default variables, they will be overwritten by resource one
|
||||||
vars:
|
vars:
|
||||||
path: /vagrant/.ssh/id_rsa
|
keys_dir: /vagrant/.ssh
|
||||||
|
private_key: /vagrant/.ssh/id_rsa
|
||||||
passphrase: ''
|
passphrase: ''
|
||||||
tasks:
|
tasks:
|
||||||
- stat: path={{path}}
|
- shell: mkdir -p {{keys_dir}}
|
||||||
|
- stat: path={{private_key}}
|
||||||
register: key
|
register: key
|
||||||
- shell: ssh-keygen -t rsa -f {{path}} -N ""
|
- shell: ssh-keygen -t rsa -f {{private_key}} -N ""
|
||||||
when: key.stat.exists == False
|
when: key.stat.exists == False
|
||||||
|
@ -12,10 +12,13 @@ input:
|
|||||||
ssh_user:
|
ssh_user:
|
||||||
schema: str!
|
schema: str!
|
||||||
value:
|
value:
|
||||||
path:
|
keys_dir:
|
||||||
schema: str!
|
schema: str!
|
||||||
value:
|
value:
|
||||||
pub_path:
|
private_key:
|
||||||
|
schema: str!
|
||||||
|
value:
|
||||||
|
public_key:
|
||||||
schema: str!
|
schema: str!
|
||||||
value:
|
value:
|
||||||
passphrase:
|
passphrase:
|
||||||
|
@ -21,12 +21,11 @@ class AnsiblePlaybook(base.BaseHandler):
|
|||||||
def download_roles(self, urls):
|
def download_roles(self, urls):
|
||||||
if not os.path.exists(ROLES_PATH):
|
if not os.path.exists(ROLES_PATH):
|
||||||
os.makedirs(ROLES_PATH)
|
os.makedirs(ROLES_PATH)
|
||||||
|
|
||||||
for url in urls:
|
for url in urls:
|
||||||
provider = SVNProvider(url)
|
provider = SVNProvider(url)
|
||||||
provider.run()
|
provider.run()
|
||||||
fabric_api.local('cp -r {} {}'.format(
|
fabric_api.local('cp -r {} {}'.format(
|
||||||
provider.repo_directory, ROLES_PATH))
|
provider.directory, ROLES_PATH))
|
||||||
|
|
||||||
def action(self, resource, action):
|
def action(self, resource, action):
|
||||||
action_file = os.path.join(
|
action_file = os.path.join(
|
||||||
@ -48,7 +47,7 @@ class AnsiblePlaybook(base.BaseHandler):
|
|||||||
else:
|
else:
|
||||||
host = 'localhost'
|
host = 'localhost'
|
||||||
transport = 'local'
|
transport = 'local'
|
||||||
|
C.HOST_KEY_CHECKING = False
|
||||||
play = PlayBook(
|
play = PlayBook(
|
||||||
playbook=action_file,
|
playbook=action_file,
|
||||||
remote_user=remote_user,
|
remote_user=remote_user,
|
||||||
|
@ -115,17 +115,17 @@ class SVNProvider(BaseProvider):
|
|||||||
self.path = path
|
self.path = path
|
||||||
self.base_path = base_path or utils.read_config()['resources-directory']
|
self.base_path = base_path or utils.read_config()['resources-directory']
|
||||||
if path != '.':
|
if path != '.':
|
||||||
self.directory = os.path.join(self.base_path, path)
|
self.repo_directory = os.path.join(self.base_path, path)
|
||||||
else:
|
else:
|
||||||
self.directory = self.base_path
|
self.repo_directory = self.base_path
|
||||||
self.repo_directory = os.path.join(self.directory, self.url.rsplit('/', 1)[-1])
|
self.directory = os.path.join(self.repo_directory, self.url.rsplit('/', 1)[-1])
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
if not os.path.exists(self.directory):
|
|
||||||
os.makedirs(self.directory)
|
|
||||||
|
|
||||||
if not os.path.exists(self.repo_directory):
|
if not os.path.exists(self.repo_directory):
|
||||||
|
os.makedirs(self.repo_directory)
|
||||||
|
|
||||||
|
if not os.path.exists(self.directory):
|
||||||
fabric_api.local(
|
fabric_api.local(
|
||||||
'cd {dir} && svn checkout {url}'.format(
|
'cd {dir} && svn checkout {url}'.format(
|
||||||
dir=self.directory,
|
dir=self.repo_directory,
|
||||||
url=self.url))
|
url=self.url))
|
||||||
|
Loading…
Reference in New Issue
Block a user