Skip to content

Commit dcdb6ab

Browse files
authored
Merge pull request #17 from stackhpc/update/ood
Update OOD
2 parents 726ba77 + 378e984 commit dcdb6ab

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

group_vars/openstack.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,4 @@ cluster_ssh_user: rocky
1919

2020
# Set the size of the state volume to metrics_db_maximum_size + 10
2121
state_volume_size: "{{ metrics_db_maximum_size + 10 }}"
22-
23-
state_volume_device_path: "{{ cluster_state_volume_device_path | default('/dev/vdb') }}"
24-
home_volume_device_path: "{{ cluster_home_volume_device_path | default('/dev/vdc') }}"
22+
block_device_prefix: 'vd'

group_vars/selinux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
selinux_state: disabled

requirements.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
roles:
33
- src: stackhpc.nfs
4-
version: v21.2.1
4+
version: v22.9.1
55
- src: https://github.com/stackhpc/ansible-role-openhpc.git
66
version: v0.16.0
77
name: stackhpc.openhpc
@@ -20,9 +20,9 @@ roles:
2020
version: service-state
2121
- src: jriguera.configdrive
2222
# No versions available
23-
- src: https://github.com/OSC/ood-ansible.git
23+
- src: https://github.com/stackhpc/ood-ansible.git
2424
name: osc.ood
25-
version: v2.0.5
25+
version: shpc/releasever # based on v2.0.8
2626

2727
collections:
2828
- name: containers.podman

roles/cluster_infra/templates/resources.tf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,11 @@ resource "openstack_compute_instance_v2" "control" {
162162
fs_setup:
163163
- label: state
164164
filesystem: ext4
165-
device: {{ state_volume_device_path }}
165+
device: /dev/{{ block_device_prefix }}b
166166
partition: auto
167167
- label: home
168168
filesystem: ext4
169-
device: {{ home_volume_device_path }}
169+
device: /dev/{{ block_device_prefix }}c
170170
partition: auto
171171
mounts:
172172
- [LABEL=state, /var/lib/state]

0 commit comments

Comments
 (0)