Skip to content

Commit

Permalink
ansible: set machine specific JOBS on AIX (nodejs#2574)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash Cripps authored Mar 18, 2021
1 parent f7de7bf commit 7fe3bda
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
28 changes: 21 additions & 7 deletions ansible/inventory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ hosts:
centos7-x64-1: {ip: 138.68.12.105}

- ibm:
aix71-ppc64_be-2: {ip: 169.48.19.173}
aix71-ppc64_be-2:
ip: 169.48.19.173
server_jobs: 6
rhel7-s390x-1: {ip: 148.100.86.101, user: linux1}

- iinthecloud:
Expand All @@ -62,7 +64,9 @@ hosts:

- osuosl:
centos7-ppc64_le-1: {ip: 140.211.168.61, user: centos}
aix72-ppc64_be-1: {ip: 140.211.9.77}
aix72-ppc64_be-1:
ip: 140.211.9.77
server_jobs: 6

- orka:
macos10.15-x64-1:
Expand Down Expand Up @@ -126,8 +130,12 @@ hosts:
ubuntu1804-x64-1: {ip: 178.128.181.213}

- ibm:
aix71-ppc64_be-3: {ip: 169.48.22.38}
aix71-ppc64_be-4: {ip: 169.48.22.51}
aix71-ppc64_be-3:
ip: 169.48.22.38
server_jobs: 6
aix71-ppc64_be-4:
ip: 169.48.22.51
server_jobs: 6
rhel7-s390x-1: {ip: 148.100.86.21, user: linux1}
rhel7-s390x-2: {ip: 148.100.86.117, user: linux1}
rhel7-s390x-3: {ip: 148.100.86.28, user: linux1}
Expand Down Expand Up @@ -208,9 +216,15 @@ hosts:

- osuosl:
# secret for -1 was compromised, do not use -1 name
aix72-ppc64_be-2: {ip: 140.211.9.30}
aix72-ppc64_be-3: {ip: 140.211.9.131}
aix72-ppc64_be-4: {ip: 140.211.9.101}
aix72-ppc64_be-2:
ip: 140.211.9.30
server_jobs: 3 # Using anything higher than 3 causes crashes on this machine
aix72-ppc64_be-3:
ip: 140.211.9.131
server_jobs: 6
aix72-ppc64_be-4:
ip: 140.211.9.101
server_jobs: 6
centos7-ppc64_le-1: {ip: 140.211.168.193, user: centos}
centos7-ppc64_le-2: {ip: 140.211.168.244, user: centos}

Expand Down
1 change: 0 additions & 1 deletion ansible/roles/jenkins-worker/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ scaleway_armv7: {
# primarily for raspberry pi workers, some arm64 workers may need `server_jobs` defined in inventory
# to override these low numbers
jobs_variants: {
aix: '6',
armv6l: '1',
armv7l: '2',
arm64: '3',
Expand Down

0 comments on commit 7fe3bda

Please sign in to comment.