File tree 8 files changed +200
-187
lines changed
8 files changed +200
-187
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ host_key_checking = False
5
5
pipelining = True
6
6
forks = 30
7
7
deprecation_warnings =False
8
+ roles_path = ../roles
8
9
9
10
[ssh_connection]
10
11
ssh_args = -o ControlMaster =auto -o ControlPersist =60s
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Fix Home Directory Ownership
3
- hosts : all
3
+ hosts : all, !localhost
4
4
gather_facts : false
5
5
vars :
6
6
# At the time of running this playbook the home directory is not owned by the user.
16
16
gather_subset :
17
17
- user_dir
18
18
19
- - name : Ensure homedir is owned by {{ ansible_user }}
19
+ - name : Ensure homedir is owned by " {{ ansible_user }}"
20
20
ansible.builtin.file :
21
21
dest : " {{ ansible_env.HOME }}"
22
22
state : directory
Original file line number Diff line number Diff line change 2
2
src_directory : " {{ ansible_env.HOME }}/src"
3
3
4
4
kayobe_config_repo : https://github.com/stackhpc/stackhpc-kayobe-config.git
5
- kayobe_config_version : " {{ openstack_version }}"
5
+ kayobe_config_version : " {{ openstack_config_version }}"
6
6
kayobe_config_name : kayobe-config
7
7
kayobe_config_environment : ci-multinode
8
8
@@ -16,9 +16,7 @@ openstack_config_name: openstack-config
16
16
17
17
vault_password_path : " ~/vault.password"
18
18
19
- ssh_key_path :
20
-
21
- vxlan_vni :
19
+ ssh_key_path : " {{ cluster_ssh_private_key_file }}"
22
20
23
21
root_domain : sms-lab.cloud
24
22
Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ terraform_project_path: "{{ playbook_dir }}"
23
23
# Valid values are 'present' and 'absent'
24
24
terraform_state : " {{ cluster_state | default('present') }}"
25
25
26
-
26
+ cluster_ssh_user : " {{ ssh_user }} "
Original file line number Diff line number Diff line change 16
16
src : " {{ playbook_dir }}/templates/userdata.cfg.tpl.j2"
17
17
dest : " {{ playbook_dir }}/templates/userdata.cfg.tpl"
18
18
19
- # Provision the infrastructure The CaaS puts hosts for accessing the OpenStack
19
+
20
+ # Provision the infrastructure
21
+
22
+ # The CaaS puts hosts for accessing the OpenStack
20
23
# API into the 'openstack' group
21
24
- hosts : openstack
22
25
roles :
Original file line number Diff line number Diff line change @@ -2,28 +2,28 @@ prefix = "{{ cluster_name }}"
2
2
3
3
ansible_control_vm_flavor = "general.v1.small"
4
4
ansible_control_vm_name = "ansible-control"
5
- ansible_control_disk_size = 25
5
+ ansible_control_disk_size = 100
6
6
7
7
seed_vm_flavor = "general.v1.small"
8
- seed_disk_size = 25
8
+ seed_disk_size = 100
9
9
10
10
multinode_flavor = "general.v1.medium"
11
- # multinode_image = "rocky9-lvm"
12
11
multinode_image = "{{ multinode_image }}"
13
12
multinode_keypair = "MaxMNKP"
14
13
multinode_vm_network = "stackhpc-ipv4-geneve"
15
14
multinode_vm_subnet = "stackhpc-ipv4-geneve-subnet"
16
15
compute_count = "2"
17
16
controller_count = "3"
18
- compute_disk_size = 25
19
- controller_disk_size = 25
17
+ compute_disk_size = 100
18
+ controller_disk_size = 100
20
19
21
20
ssh_public_key = "{{ cluster_user_ssh_public_key }}"
21
+ ssh_user = "{{ ssh_user }}"
22
22
23
23
storage_count = "3"
24
24
storage_flavor = "general.v1.small"
25
- storage_disk_size = 25
25
+ storage_disk_size = 100
26
26
27
27
deploy_wazuh = false
28
28
infra_vm_flavor = "general.v1.small"
29
- infra_vm_disk_size = 25
29
+ infra_vm_disk_size = 100
Load Diff Large diffs are not rendered by default.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments