Skip to content

Commit 520b83f

Browse files
authored
Merge pull request #19 from stackhpc/update/slurm-app-v1.125
Update slurm app to v1.125 to replace opendistro with opensearch
2 parents bdcc3bd + 19c9f0f commit 520b83f

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

requirements.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ roles:
88
- src: https://github.com/stackhpc/ansible-node-exporter.git
99
version: feature/no-install
1010
name: cloudalchemy.node_exporter
11-
- src: cloudalchemy.blackbox-exporter
12-
version: 1.0.0
1311
- src: https://github.com/cloudalchemy/ansible-prometheus.git
1412
version: 4d2c8d742de39e50387e0aa6d5510b21c7451343 # need fix in preceeding commit for rocky
1513
name: cloudalchemy.prometheus
@@ -18,8 +16,6 @@ roles:
1816
- src: https://github.com/stackhpc/ansible-grafana.git
1917
name: cloudalchemy.grafana
2018
version: service-state
21-
- src: jriguera.configdrive
22-
# No versions available
2319
- src: https://github.com/stackhpc/ood-ansible.git
2420
name: osc.ood
2521
version: shpc/releasever # based on v2.0.8
@@ -34,10 +30,12 @@ collections:
3430
- name: ansible.netcommon
3531
- name: community.general
3632
version: 4.5.0 # https://github.com/ansible-collections/community.general/pull/4281
37-
33+
- name: community.crypto
34+
version: 2.10.0
3835
- name: community.mysql
3936

4037
- name: openstack.cloud
38+
version: 1.10.0
4139
- name: https://github.com/stackhpc/ansible-collection-terraform
4240
type: git
4341
version: 75fb75132bbc77e3e78a05ba674458131da2b1dd

roles/cluster_infra/defaults/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ cluster_groups_required:
2323
# ignore these for the moment:
2424
#etc_hosts: []
2525
# cloud_init: [etc_hosts]
26-
systemd: [opendistro, grafana, control, prometheus]
26+
systemd: [opensearch, grafana, control, prometheus]
2727

2828
# These are the additional groups required for monitoring (see everything layout)
2929
cluster_groups_monitoring:
30-
podman: [opendistro, filebeat]
30+
podman: [opensearch, filebeat, mysql]
3131
prometheus: [control]
3232
grafana: [control]
3333
alertmanager: [control]
3434
node_exporter: [cluster]
35-
opendistro: [control]
35+
opensearch: [control]
3636
slurm_stats: [control]
3737
filebeat: [slurm_stats]
3838

roles/cluster_infra/templates/resources.tf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ resource "openstack_compute_instance_v2" "control" {
130130

131131
# root device:
132132
block_device {
133-
uuid = "{{ cluster_image }}"
133+
uuid = "{{ cluster_previous_image | default(cluster_image) }}"
134134
source_type = "image"
135135
destination_type = "local"
136136
boot_index = 0

0 commit comments

Comments
 (0)