File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,5 @@ retries = 10
1919# Temporarily, the grafana_install tag is skipped and we install Grafana manually
2020# https://github.com/grafana/grafana/issues/36935
2121# TODO: REMOVE THIS
22- skip = grafana_install
22+ # By default, we also skip the HPL tests
23+ skip = grafana_install,hpl-solo,hpl-all
Original file line number Diff line number Diff line change @@ -11,6 +11,3 @@ secrets_openhpc_mungekey: "{{ hostvars[groups['control'][0]].ansible_local.openh
1111
1212# Override this to cope with the case where the podman group just doesn't exist
1313appliances_local_users_podman_enable : " {{ groups.get('podman', []) | length > 0 }}"
14-
15- # Use the short hostname as the default internal address
16- internal_address : " {{ ansible_hostname }}"
Original file line number Diff line number Diff line change 5454 loop : " {{ groups.get('cluster', []) }}"
5555 when : cluster_run_validation | default(false) | bool
5656
57- # Ensure that the hosts in the cluster can all refer to each other by their inventory hostname
57+ # Ensure that the hosts in the cluster can all refer to each other by their hostname
5858- hosts : cluster
5959 become : yes
6060 tasks :
6161 - name : Populate /etc/hosts with cluster hosts
6262 lineinfile :
6363 path : /etc/hosts
64- regexp : " {{ hostvars[host].ansible_hostname }}"
65- line : " {{ hostvars[host].ansible_default_ipv4.address }} {{ hostvars[host].ansible_fqdn }} {{ hostvars[host].ansible_hostname }}"
64+ regexp : " {{ hostvars[host].inventory_hostname }}"
65+ line : " {{ hostvars[host].ansible_default_ipv4.address }} {{ hostvars[host].inventory_hostname }}"
6666 loop : " {{ ansible_play_hosts }}"
6767 loop_control :
6868 loop_var : host
You can’t perform that action at this time.
0 commit comments