Skip to content

Commit 82db23d

Browse files
committed
Try and test with CI
1 parent 6a03a47 commit 82db23d

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

ansible/roles/compute_init/files/compute-init.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
- name: Run chrony role
102102
ansible.builtin.include_role:
103103
name: mrlesmithjr.chrony
104+
when: enable_chrony | bool
104105

105106
- name: Configure resolve.conf
106107
block:

ansible/roles/compute_init/tasks/install.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- library
1414
- filter_plugins
1515
- tasks
16+
- roles
1617

1718
- name: Inject files from roles
1819
copy:

environments/.stackhpc/inventory/extra_groups

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ cluster
2424
login
2525
compute
2626

27+
[chrony:children]
28+
cluster
29+
2730
[tuned:children]
2831
# Install tuned into fat image
2932
builder

environments/.stackhpc/tofu/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ module "cluster" {
8080
standard: { # NB: can't call this default!
8181
nodes: ["compute-0", "compute-1"]
8282
flavor: var.other_node_flavor
83-
compute_init_enable: ["compute", "etc_hosts", "nfs", "basic_users", "eessi", "tuned"]
83+
compute_init_enable: ["compute", "chrony", "etc_hosts", "nfs", "basic_users", "eessi", "tuned"]
8484
ignore_image_changes: true
8585
}
8686
# Example of how to add another partition:

0 commit comments

Comments
 (0)