Skip to content

Commit 8cb80a9

Browse files
Squash commit for 2.11.1.1
1 parent 6371f50 commit 8cb80a9

File tree

10 files changed

+6
-13
lines changed

10 files changed

+6
-13
lines changed

autoscaling/tf_init/cluster-network-configuration.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ resource "oci_core_instance_configuration" "cluster-network-instance_configurati
99
launch_details {
1010
availability_domain = var.ad
1111
compartment_id = var.targetCompartment
12-
create_vnic_details {
13-
}
1412
freeform_tags = {
1513
"cluster_name" = local.cluster_name
1614
"parent_cluster" = local.cluster_name

autoscaling/tf_init/instance-pool-configuration.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ resource "oci_core_instance_configuration" "instance_pool_configuration" {
99
launch_details {
1010
availability_domain = var.ad
1111
compartment_id = var.targetCompartment
12-
create_vnic_details {
13-
}
1412
freeform_tags = {
1513
"cluster_name" = local.cluster_name
1614
"parent_cluster" = local.cluster_name

cluster-network-configuration.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ resource "oci_core_instance_configuration" "cluster-network-instance_configurati
99
launch_details {
1010
availability_domain = var.ad
1111
compartment_id = var.targetCompartment
12-
create_vnic_details {
13-
}
1412
display_name = local.cluster_name
1513
freeform_tags = {
1614
"cluster_name" = local.cluster_name

compute-nodes.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ resource "oci_core_instance" "compute_cluster_instances" {
6666
}
6767

6868
metadata = {
69-
ssh_authorized_keys = "${var.ssh_key}\n${tls_private_key.ssh.public_key_openssh}"
69+
ssh_authorized_keys = var.compute_node_ssh_key == "" ? "${var.ssh_key}\n${tls_private_key.ssh.public_key_openssh}" : "${var.ssh_key}\n${tls_private_key.ssh.public_key_openssh}${var.compute_node_ssh_key}\n"
7070
user_data = base64encode(data.template_file.controller_config.rendered)
7171
}
7272
source_details {

instance-pool-configuration.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ resource "oci_core_instance_configuration" "instance_pool_configuration" {
99
launch_details {
1010
availability_domain = var.ad
1111
compartment_id = var.targetCompartment
12-
create_vnic_details {
13-
}
1412
display_name = local.cluster_name
1513
freeform_tags = {
1614
"cluster_name" = local.cluster_name

playbooks/roles/firewall/tasks/ubuntu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
name: ufw
66
state: stopped
77
enabled: no
8+
ignore_errors: true
89

910
# it still need update to iptables rules to accept traffic or else mpi traffic fails
1011

playbooks/roles/hyperthreading/files/disable-hyperthreading.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Unit]
22
Description=Start this service to disable Hyperthreading, stop it to enable Hyperthreading.
3-
After=syslog.target irqbalance.service
3+
After=syslog.target irqbalance.service tuned.service
44

55
[Service]
66
Type=oneshot

playbooks/roles/hyperthreading/files/disable-hyperthreading_ubuntu.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Unit]
22
Description=Start this service to disable Hyperthreading, stop it to enable Hyperthreading.
3-
After=syslog.target irqbalance.service
3+
After=syslog.target irqbalance.service tuned.service
44

55
[Service]
66
Type=oneshot

playbooks/roles/hyperthreading/tasks/el.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
ansible.builtin.systemd:
3030
daemon_reload: yes
3131

32-
- name:
32+
- name: Start HT service
3333
ansible.builtin.systemd:
3434
name: disable-hyperthreading.service
3535
state: started

playbooks/roles/hyperthreading/tasks/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
ansible.builtin.systemd:
3030
daemon_reload: yes
3131

32-
- name:
32+
- name: Start HT service
3333
ansible.builtin.systemd:
3434
name: disable-hyperthreading_ubuntu.service
3535
state: started

0 commit comments

Comments
 (0)