Skip to content

Commit 81c316a

Browse files
committed
allow empty compute_init_enable list
1 parent f661c7f commit 81c316a

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.github/workflows/stackhpc.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,6 @@ jobs:
185185
ansible-playbook -v --limit compute ansible/adhoc/rebuild.yml
186186
ansible-playbook -v ansible/ci/check_slurm.yml
187187
188-
- name: Pause for debugging
189-
if: failure()
190-
run: sleep 3600
191-
192188
- name: Check sacct state survived reimage
193189
run: |
194190
. venv/bin/activate

ansible/extras.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
# NB: has to be after eeesi and os-manila-mount
4545
tags: compute_init
4646
become: yes
47-
name: Export hostvars
4847
tasks:
4948
- include_role:
5049
name: compute_init

environments/skeleton/{{cookiecutter.environment}}/terraform/compute.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ module "compute" {
2020
root_volume_size = lookup(each.value, "root_volume_size", var.root_volume_size)
2121
extra_volumes = lookup(each.value, "extra_volumes", {})
2222

23+
compute_init_enable = lookup(each.value, "compute_init_enable", [])
24+
2325
key_pair = var.key_pair
2426
environment_root = var.environment_root
2527
k3s_token = var.k3s_token
2628
control_address = [for n in openstack_compute_instance_v2.control["control"].network: n.fixed_ip_v4 if n.access_network][0]
2729
security_group_ids = [for o in data.openstack_networking_secgroup_v2.nonlogin: o.id]
28-
29-
compute_init_enable = each.value.compute_init_enable
3030
}

0 commit comments

Comments
 (0)