AZURE-210 Deploy Crowd DC to Azure

This commit is contained in:
dbacon
2020-05-19 11:13:11 +01:00
parent 0fbc7609a1
commit e78af09b8b
37 changed files with 1396 additions and 200 deletions

View File

@@ -0,0 +1,33 @@
---
- name: Install additional support packages
package:
name:
- netcat
- rsync
- cifs-utils
- name: Fetch VM ID
command: "dmidecode -s system-uuid"
register: az_vm_id
tags:
- runtime_pkg
changed_when: true
- name: Use VM ID for cluster node ID
set_fact:
atl_cluster_node_id: "{{ az_vm_id.stdout }}"
tags:
- runtime_pkg
- name: Tune TCP Keep Alive
sysctl:
name: '{{ item.key }}'
value: '{{ item.value }}'
reload: yes
ignoreerrors: yes
sysctl_file: /etc/sysctl.conf
sysctl_set: yes
with_dict: '{{ sysctl_config }}'
tags:
- runtime_pkg