Compare commits

..

No commits in common. "208cde637d59e6293f5ee670f0e5592cdfa42e01" and "a7e809a4df556dc828fe2e4005ae54ed0a313f61" have entirely different histories.

8 changed files with 12 additions and 18 deletions

View File

@ -1,6 +1,6 @@
--- ---
- hosts: all - hosts: all
roles: roles:
- base - base_personal
become: yes become: yes
become_user: root become_user: root

View File

@ -1,6 +1,6 @@
--- ---
- hosts: all - hosts: all
roles: roles:
- base - base_personal
become: yes become: yes
become_user: root become_user: root

View File

@ -43,5 +43,5 @@ template:
description: Password of the username in the cloud-init phase description: Password of the username in the cloud-init phase
playbooks: playbooks:
type: String type: String
default: '' default: 'deploy.yml'
description: "Additional playbooks to implement, separate by commas." description: "Ansible Playbooks to implement, separate by commas."

View File

@ -35,9 +35,9 @@ volume = lv.Volume("disk",
# Stream configuration files # Stream configuration files
cloudinit = lv.CloudInitDisk("cloud-init", cloudinit = lv.CloudInitDisk("cloud-init",
meta_data = Template(open("./templates/meta-data.jinja", "r").read()).render(env), meta_data = Template(open("./cloud-init/meta-data.jinja", "r").read()).render(env),
user_data = Template(open("./templates/user-data.jinja", "r").read()).render(env), user_data = Template(open("./cloud-init/user-data.jinja", "r").read()).render(env),
network_config = open("./templates/network-config", "r").read() network_config = open("./cloud-init/network-config", "r").read()
) )
vm = lv.Domain(config.get('hostname'), vm = lv.Domain(config.get('hostname'),
@ -75,18 +75,12 @@ inventory = command.local.Command("a-inventory",
opts = pulumi.ResourceOptions(depends_on = [ wait_time ]) opts = pulumi.ResourceOptions(depends_on = [ wait_time ])
) )
deploy = command.local.Command('ap deploy', # Applying the command
create = 'ansible-playbook deploy.yml', for playbook in config.get('playbooks').split(','):
delete = 'rm -f ./ansible.log', execute_ansible = command.local.Command(f"a-{playbook.split('.')[0]}",
opts = pulumi.ResourceOptions(depends_on = [ inventory ])
)
# Running additional playbooks
for playbook in sorted(config.get('playbooks').split(',')):
execute_ansible = command.local.Command(f"ap {playbook.split('.')[0]}",
create = f"ansible-playbook {playbook}", create = f"ansible-playbook {playbook}",
delete = "rm -f ./ansible.log", delete = "rm -f ./ansible.log",
opts = pulumi.ResourceOptions(depends_on = [ deploy ]) opts = pulumi.ResourceOptions(depends_on = [ inventory ])
) )
pulumi.export("ip", vm.network_interfaces[0]['addresses'][0]) pulumi.export("ip", vm.network_interfaces[0]['addresses'][0])

View File

@ -1,6 +1,6 @@
--- ---
- hosts: all - hosts: all
roles: roles:
- base - base_personal
become: yes become: yes
become_user: root become_user: root