-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from rug-cit-hpc/fix/only-add-to-group-when-gr…
…oup-exists Fix/only add to group when group exists.
- Loading branch information
Showing
57 changed files
with
884 additions
and
623 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
[defaults] | ||
stdout_callback = debug | ||
vault_password_file = .vault_pass.txt | ||
|
||
[ssh_connection] | ||
pipelining = True | ||
ssh_args = -C -o ControlMaster=auto -o ControlPersist=60s -o ForwardAgent=yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
- src: chrisgavin.ansible-ssh-host-signer | ||
- src: geerlingguy.firewall | ||
version: 2.4.0 | ||
- src: geerlingguy.postfix | ||
- src: chrisgavin.ansible-ssh-host-signer | ||
- src: geerlingguy.repo-epel | ||
- src: geerlingguy.security |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
--- | ||
admin_ranges: "129.125.249.0/24,172.23.40.1/24" | ||
ssh_host_signer_hostnames: "{{ ansible_fqdn }},{{ ansible_hostname }},airlock+{{ ansible_hostname }}" | ||
ssh_host_signer_hostnames: "{{ ansible_fqdn }},{{ ansible_hostname }},{% for host in groups['jumphost'] %}{{ host }}+{{ ansible_hostname }}{% endfor %}" | ||
spacewalk_server_url: 'http://spacewalk.hpc.rug.nl/XMLRPC' | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
--- | ||
slurm_cluster_name: gearshift | ||
sockets: 2 | ||
CoresPerSocket: 14 | ||
ThreadsPerCore: 1 | ||
RealMemory: 240000 | ||
Feature: centos7 | ||
nodes: | | ||
# | ||
# Partitions | ||
# | ||
# | ||
# Configure maxnodes = 1 for all nodes of all partitions, | ||
# because we hardly use MPI and when we do never between nodes, | ||
# but only with max the amount of cores on a single node. | ||
# Therefore we don't have fast network interconnects between nodes. | ||
# (We use the fast network interconnects only for nodes <-> large shared storage devices) | ||
# | ||
EnforcePartLimits=YES | ||
PartitionName=DEFAULT State=UP DefMemPerCPU=2048 MaxNodes=1 MaxTime=7-00:00:01 | ||
PartitionName=regular Default=YES Nodes=gs-vcompute[01-11] MaxNodes=1 MaxCPUsPerNode=26 MaxMemPerNode=235520 TRESBillingWeights="CPU=1.0,Mem=0.125G" DenyQos=ds-short,ds-medium,ds-long | ||
PartitionName=ds Default=No Nodes=gearshift MaxNodes=1 MaxCPUsPerNode=1 MaxMemPerNode=1024 TRESBillingWeights="CPU=1.0,Mem=1.0G" AllowQos=ds-short,ds-medium,ds-long | ||
# | ||
# COMPUTE NODES | ||
# | ||
NodeName=gs-vcompute[01-11] Sockets=2 CoresPerSocket=14 ThreadsPerCore=1 State=UNKNOWN RealMemory=240000 TmpDisk=1063742 Feature=tmp01 | ||
NodeName=gearshift Sockets=2 CoresPerSocket=2 ThreadsPerCore=1 State=UNKNOWN RealMemory=387557 TmpDisk=0 Feature=tmp01,prm01 | ||
slurm_cluster_name: 'gearshift' | ||
slurm_cluster_domain: 'hpc.rug.nl' | ||
stack_prefix: 'gs' | ||
vcompute_hostnames: "{{ stack_prefix }}-vcompute[01-11]" | ||
vcompute_sockets: 2 | ||
vcompute_cores_per_socket: 14 | ||
vcompute_real_memory: 245760 | ||
vcompute_max_cpus_per_node: "{{ vcompute_sockets * vcompute_cores_per_socket - 2 }}" | ||
vcompute_max_mem_per_node: "{{ vcompute_real_memory - vcompute_sockets * vcompute_cores_per_socket * 512 }}" | ||
vcompute_local_disk: 2900 | ||
vcompute_features: 'tmp01' | ||
ui_hostnames: "{{ slurm_cluster_name }}" | ||
ui_sockets: 2 | ||
ui_cores_per_socket: 2 | ||
ui_real_memory: 8192 | ||
ui_local_disk: 0 | ||
ui_features: 'prm01,tmp01' | ||
uri_ldap: 172.23.40.249 | ||
uri_ldaps: comanage-in.id.rug.nl | ||
ldap_port: 389 | ||
ldaps_port: 636 | ||
ldap_base: ou=umcg,o=asds | ||
ldap_binddn: cn=clusteradminumcg,o=asds | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
--- | ||
slurm_cluster_name: talos | ||
sockets: 1 | ||
CoresPerSocket: 9 | ||
ThreadsPerCore: 1 | ||
RealMemory: 20000 | ||
Feature: centos7 | ||
nodes: | | ||
# | ||
# Partitions | ||
# | ||
EnforcePartLimits=YES | ||
PartitionName=DEFAULT State=UP DefMemPerCPU=2000 | ||
PartitionName=tl-ds Nodes=talos MaxTime=10-00:00:00 DefaultTime=00:30:00 DenyQos=regular,regularlong SelectTypeParameters=CR_Core_Memory TRESBillingWeights="CPU=1.0,Mem=0.1875G" Default=NO | ||
PartitionName=regular Nodes=tl-vcompute01,tl-vcompute02,tl-vcompute03 MaxTime=10-00:00:00 DefaultTime=00:30:00 AllowQOS=regular,regularlong SelectTypeParameters=CR_Core_Memory TRESBillingWeights="CPU=1.0,Mem=0.1875G" Default=YES | ||
# | ||
# COMPUTE NODES | ||
# | ||
GresTypes=gpu | ||
NodeName=talos Sockets=1 CoresPerSocket=1 ThreadsPerCore=1 State=IDLE RealMemory=3000 Feature=centos7 | ||
NodeName=tl-vcompute01 Sockets=1 CoresPerSocket=9 ThreadsPerCore=1 State=IDLE RealMemory=20000 Feature=centos7 | ||
NodeName=tl-vcompute02 Sockets=1 CoresPerSocket=9 ThreadsPerCore=1 State=IDLE RealMemory=20000 Feature=centos7 | ||
NodeName=tl-vcompute03 Sockets=1 CoresPerSocket=9 ThreadsPerCore=1 State=IDLE RealMemory=20000 Feature=centos7 | ||
slurm_cluster_name: 'talos' | ||
slurm_cluster_domain: 'hpc.rug.nl' | ||
stack_prefix: 'tl' | ||
vcompute_hostnames: "{{ stack_prefix }}-vcompute[01-03]" | ||
vcompute_sockets: 2 | ||
vcompute_cores_per_socket: 2 | ||
vcompute_real_memory: 8192 | ||
vcompute_max_cpus_per_node: "{{ vcompute_sockets * vcompute_cores_per_socket - 2 }}" | ||
vcompute_max_mem_per_node: "{{ vcompute_real_memory - vcompute_sockets * vcompute_cores_per_socket * 512 }}" | ||
vcompute_local_disk: 0 | ||
vcompute_features: 'tmp08' | ||
ui_hostnames: "{{ slurm_cluster_name }}" | ||
ui_sockets: 2 | ||
ui_cores_per_socket: 2 | ||
ui_real_memory: 8192 | ||
ui_local_disk: 0 | ||
ui_features: 'prm08,tmp08' | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.