From: Michael Jeanson Date: Mon, 15 May 2017 19:05:38 +0000 (-0400) Subject: ansible: Rename slave to node X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=868a646c47bd69951142ee9a6dcc688b481aa863;p=lttng-ci.git ansible: Rename slave to node Signed-off-by: Michael Jeanson --- diff --git a/automation/ansible/hosts b/automation/ansible/hosts index ab21978..fd023c8 100644 --- a/automation/ansible/hosts +++ b/automation/ansible/hosts @@ -10,21 +10,21 @@ cloud05.internal.efficios.com #cloud07.internal.efficios.com #cloud08.internal.efficios.com -[slave-armhf] +[node-armhf] ci-node-armhf-01 ci-node-armhf-02 -[slave-arm64] -ci-slave-arm64-01 +[node-arm64] +ci-node-arm64-01 -[slave-powerpc] +[node-powerpc] ci-node-powerpc-01 -[slave-ppc64el] +[node-ppc64el] 140.211.168.84 140.211.168.85 -[slave-i386] +[node-i386] ci-slave-i386-02-01 ci-slave-i386-02-02 ci-slave-i386-02-03 @@ -62,7 +62,7 @@ ci-slave-i386-05-06 ci-slave-i386-05-07 ci-slave-i386-05-08 -[slave-amd64] +[node-amd64] ci-slave-amd64-02-01 ci-slave-amd64-02-02 ci-slave-amd64-02-03 @@ -100,16 +100,16 @@ ci-slave-amd64-05-06 ci-slave-amd64-05-07 ci-slave-amd64-05-08 -[slave-standalone] +[node-standalone] ci-node-standalone-amd64-02 ci-node-standalone-amd64-03 ci-node-alpine-amd64-03 -[slave:children] -slave-i386 -slave-amd64 -slave-armhf -slave-arm64 -slave-powerpc -slave-ppc64el -slave-standalone +[node:children] +node-i386 +node-amd64 +node-armhf +node-arm64 +node-powerpc +node-ppc64el +node-standalone diff --git a/automation/ansible/node-all.yml b/automation/ansible/node-all.yml new file mode 100644 index 0000000..8b5638b --- /dev/null +++ b/automation/ansible/node-all.yml @@ -0,0 +1,11 @@ +- hosts: all + roles: + - common + - cross-compilers + - babeltrace + - liburcu + - lttng-ust + - lttng-tools + - lttng-modules + - lttng-analyses + - lttng-scope diff --git a/automation/ansible/node-amd64.yml b/automation/ansible/node-amd64.yml new file mode 100644 index 0000000..c5b6788 --- /dev/null +++ b/automation/ansible/node-amd64.yml @@ -0,0 +1,11 @@ +- hosts: node-amd64 + roles: + - common + - cross-compilers + - babeltrace + - liburcu + - lttng-ust + - lttng-tools + - lttng-modules + - lttng-analyses + - lttng-scope diff --git a/automation/ansible/node-arm64.yml b/automation/ansible/node-arm64.yml new file mode 100644 index 0000000..496bbe2 --- /dev/null +++ b/automation/ansible/node-arm64.yml @@ -0,0 +1,7 @@ +- hosts: node-arm64 + roles: + - common + - babeltrace + - liburcu + - lttng-ust + - lttng-tools diff --git a/automation/ansible/node-armhf.yml b/automation/ansible/node-armhf.yml new file mode 100644 index 0000000..de54056 --- /dev/null +++ b/automation/ansible/node-armhf.yml @@ -0,0 +1,7 @@ +- hosts: node-armhf + roles: + - common + - babeltrace + - liburcu + - lttng-ust + - lttng-tools diff --git a/automation/ansible/node-i386.yml b/automation/ansible/node-i386.yml new file mode 100644 index 0000000..66905ba --- /dev/null +++ b/automation/ansible/node-i386.yml @@ -0,0 +1,11 @@ +- hosts: node-i386 + roles: + - common + - cross-compilers + - babeltrace + - liburcu + - lttng-ust + - lttng-tools + - lttng-modules + - lttng-analyses + - lttng-scope diff --git a/automation/ansible/node-powerpc.yml b/automation/ansible/node-powerpc.yml new file mode 100644 index 0000000..b18ae49 --- /dev/null +++ b/automation/ansible/node-powerpc.yml @@ -0,0 +1,7 @@ +- hosts: node-powerpc + roles: + - common + - babeltrace + - liburcu + - lttng-ust + - lttng-tools diff --git a/automation/ansible/node-ppc64el.yml b/automation/ansible/node-ppc64el.yml new file mode 100644 index 0000000..0836009 --- /dev/null +++ b/automation/ansible/node-ppc64el.yml @@ -0,0 +1,7 @@ +- hosts: node-ppc64el + roles: + - common + - babeltrace + - liburcu + - lttng-ust + - lttng-tools diff --git a/automation/ansible/node-standalone.yml b/automation/ansible/node-standalone.yml new file mode 100644 index 0000000..59c1f24 --- /dev/null +++ b/automation/ansible/node-standalone.yml @@ -0,0 +1,11 @@ +- hosts: node-standalone + roles: + - common + - cross-compilers + - babeltrace + - liburcu + - lttng-ust + - lttng-tools + - lttng-modules + - lttng-analyses + - lttng-scope diff --git a/automation/ansible/site.yml b/automation/ansible/site.yml index 4319d49..ded07e2 100644 --- a/automation/ansible/site.yml +++ b/automation/ansible/site.yml @@ -1,9 +1,9 @@ --- - include: hosts.yml -- include: slave-armhf.yml -- include: slave-arm64.yml -- include: slave-powerpc.yml -- include: slave-ppc64el.yml -- include: slave-i386.yml -- include: slave-amd64.yml -- include: slave-standalone.yml +- include: node-armhf.yml +- include: node-arm64.yml +- include: node-powerpc.yml +- include: node-ppc64el.yml +- include: node-i386.yml +- include: node-amd64.yml +- include: node-standalone.yml diff --git a/automation/ansible/slave-all.yml b/automation/ansible/slave-all.yml deleted file mode 100644 index 8b5638b..0000000 --- a/automation/ansible/slave-all.yml +++ /dev/null @@ -1,11 +0,0 @@ -- hosts: all - roles: - - common - - cross-compilers - - babeltrace - - liburcu - - lttng-ust - - lttng-tools - - lttng-modules - - lttng-analyses - - lttng-scope diff --git a/automation/ansible/slave-amd64.yml b/automation/ansible/slave-amd64.yml deleted file mode 100644 index 05248d4..0000000 --- a/automation/ansible/slave-amd64.yml +++ /dev/null @@ -1,11 +0,0 @@ -- hosts: slave-amd64 - roles: - - common - - cross-compilers - - babeltrace - - liburcu - - lttng-ust - - lttng-tools - - lttng-modules - - lttng-analyses - - lttng-scope diff --git a/automation/ansible/slave-arm64.yml b/automation/ansible/slave-arm64.yml deleted file mode 100644 index 45bece5..0000000 --- a/automation/ansible/slave-arm64.yml +++ /dev/null @@ -1,7 +0,0 @@ -- hosts: slave-arm64 - roles: - - common - - babeltrace - - liburcu - - lttng-ust - - lttng-tools diff --git a/automation/ansible/slave-armhf.yml b/automation/ansible/slave-armhf.yml deleted file mode 100644 index 6cee629..0000000 --- a/automation/ansible/slave-armhf.yml +++ /dev/null @@ -1,7 +0,0 @@ -- hosts: slave-armhf - roles: - - common - - babeltrace - - liburcu - - lttng-ust - - lttng-tools diff --git a/automation/ansible/slave-i386.yml b/automation/ansible/slave-i386.yml deleted file mode 100644 index f92df6c..0000000 --- a/automation/ansible/slave-i386.yml +++ /dev/null @@ -1,11 +0,0 @@ -- hosts: slave-i386 - roles: - - common - - cross-compilers - - babeltrace - - liburcu - - lttng-ust - - lttng-tools - - lttng-modules - - lttng-analyses - - lttng-scope diff --git a/automation/ansible/slave-powerpc.yml b/automation/ansible/slave-powerpc.yml deleted file mode 100644 index f87cc00..0000000 --- a/automation/ansible/slave-powerpc.yml +++ /dev/null @@ -1,7 +0,0 @@ -- hosts: slave-powerpc - roles: - - common - - babeltrace - - liburcu - - lttng-ust - - lttng-tools diff --git a/automation/ansible/slave-ppc64el.yml b/automation/ansible/slave-ppc64el.yml deleted file mode 100644 index 8d5348d..0000000 --- a/automation/ansible/slave-ppc64el.yml +++ /dev/null @@ -1,7 +0,0 @@ -- hosts: slave-ppc64el - roles: - - common - - babeltrace - - liburcu - - lttng-ust - - lttng-tools diff --git a/automation/ansible/slave-standalone.yml b/automation/ansible/slave-standalone.yml deleted file mode 100644 index 3f71b16..0000000 --- a/automation/ansible/slave-standalone.yml +++ /dev/null @@ -1,11 +0,0 @@ -- hosts: slave-standalone - roles: - - common - - cross-compilers - - babeltrace - - liburcu - - lttng-ust - - lttng-tools - - lttng-modules - - lttng-analyses - - lttng-scope