Closed
Bug 1255812
Opened 9 years ago
Closed 9 years ago
Move 10 XP test machines to the Windows 8 pool
Categories
(Infrastructure & Operations Graveyard :: CIDuty, task)
Infrastructure & Operations Graveyard
CIDuty
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: vciobancai, Assigned: aselagea)
References
Details
Attachments
(3 files)
(deleted),
patch
|
kmoir
:
review+
aselagea
:
checked-in+
|
Details | Diff | Splinter Review |
(deleted),
text/plain
|
kmoir
:
review+
aselagea
:
checked-in+
|
Details |
(deleted),
text/csv
|
kmoir
:
review+
aselagea
:
checked-in+
|
Details |
Let's move 10 machines from the WinXP pool to the Windows 8 pool.
Reporter | ||
Comment 1•9 years ago
|
||
We will disabled the following xp slaves:
t-xp32-ix-123
t-xp32-ix-124
t-xp32-ix-125
t-xp32-ix-126
t-xp32-ix-127
t-xp32-ix-128
t-xp32-ix-129
t-xp32-ix-130
t-xp32-ix-131
t-xp32-ix-132
Reporter | ||
Comment 2•9 years ago
|
||
The new hosts will became :
t-w864-ix-194.wintest.releng.scl3.mozilla.com
t-w864-ix-195.wintest.releng.scl3.mozilla.com
t-w864-ix-196.wintest.releng.scl3.mozilla.com
t-w864-ix-197.wintest.releng.scl3.mozilla.com
t-w864-ix-198.wintest.releng.scl3.mozilla.com
t-w864-ix-199.wintest.releng.scl3.mozilla.com
t-w864-ix-200.wintest.releng.scl3.mozilla.com
t-w864-ix-201.wintest.releng.scl3.mozilla.com
t-w864-ix-202.wintest.releng.scl3.mozilla.com
t-w864-ix-203.wintest.releng.scl3.mozilla.com
Reporter | ||
Comment 3•9 years ago
|
||
(In reply to Vlad Ciobancai [:vladC] from comment #2)
> The new hosts will became :
>
> t-w864-ix-194.wintest.releng.scl3.mozilla.com
> t-w864-ix-195.wintest.releng.scl3.mozilla.com
> t-w864-ix-196.wintest.releng.scl3.mozilla.com
> t-w864-ix-197.wintest.releng.scl3.mozilla.com
> t-w864-ix-198.wintest.releng.scl3.mozilla.com
> t-w864-ix-199.wintest.releng.scl3.mozilla.com
> t-w864-ix-200.wintest.releng.scl3.mozilla.com
> t-w864-ix-201.wintest.releng.scl3.mozilla.com
> t-w864-ix-202.wintest.releng.scl3.mozilla.com
> t-w864-ix-203.wintest.releng.scl3.mozilla.com
Sorry for the mistake, the new hosts will be:
t-w864-ix-195.wintest.releng.scl3.mozilla.com
t-w864-ix-196.wintest.releng.scl3.mozilla.com
t-w864-ix-197.wintest.releng.scl3.mozilla.com
t-w864-ix-198.wintest.releng.scl3.mozilla.com
t-w864-ix-199.wintest.releng.scl3.mozilla.com
t-w864-ix-200.wintest.releng.scl3.mozilla.com
t-w864-ix-201.wintest.releng.scl3.mozilla.com
t-w864-ix-202.wintest.releng.scl3.mozilla.com
t-w864-ix-203.wintest.releng.scl3.mozilla.com
t-w864-ix-204.wintest.releng.scl3.mozilla.com
Assignee | ||
Comment 4•9 years ago
|
||
Buildbot-config changes.
Attachment #8729590 -
Flags: review?(kmoir)
Assignee | ||
Comment 5•9 years ago
|
||
Adding the slaves to graph server.
Attachment #8729591 -
Flags: review?(kmoir)
Assignee | ||
Comment 6•9 years ago
|
||
Adding the slaves to slavealloc.
Attachment #8729592 -
Flags: review?(kmoir)
Updated•9 years ago
|
Attachment #8729590 -
Flags: review?(kmoir) → review+
Updated•9 years ago
|
Attachment #8729591 -
Flags: review?(kmoir) → review+
Comment 7•9 years ago
|
||
Comment on attachment 8729592 [details]
bug1255812_slavealloc.csv
should remove the old machines from slavealloc too once they are no longer in use
Attachment #8729592 -
Flags: review?(kmoir) → review+
Assignee | ||
Updated•9 years ago
|
Assignee: nobody → alin.selagea
Assignee | ||
Updated•9 years ago
|
Attachment #8729591 -
Flags: checked-in+
Assignee | ||
Comment 8•9 years ago
|
||
Comment on attachment 8729592 [details]
bug1255812_slavealloc.csv
Added the new slaves to slavealloc, also removed the missing entries for the XP slaves that were migrated to other Windows pools.
mysql> select slaveid, name from slaves where name like 't-w864-ix%' order by cast(substring(name, -3) as unsigned) desc limit 5;
+---------+---------------+
| slaveid | name |
+---------+---------------+
| 30273 | t-w864-ix-204 |
| 30271 | t-w864-ix-203 |
| 30269 | t-w864-ix-202 |
| 30267 | t-w864-ix-201 |
| 30265 | t-w864-ix-200 |
+---------+---------------+
5 rows in set (0.00 sec)
mysql> select count(*) from slaves where (name like 't-xp32-ix%' and cast(substring(name, -3) as unsigned) > 122);
+----------+
| count(*) |
+----------+
| 50 |
+----------+
1 row in set (0.00 sec)
mysql> delete from slaves where (name like 't-xp32-ix%' and cast(substring(name, -3) as unsigned) > 122);
Query OK, 50 rows affected (0.01 sec)
mysql> select slaveid, name from slaves where name like 't-xp32-ix%' order by cast(substring(name, -3) as unsigned) desc limit 5;
+---------+---------------+
| slaveid | name |
+---------+---------------+
| 10445 | t-xp32-ix-122 |
| 10443 | t-xp32-ix-121 |
| 10441 | t-xp32-ix-120 |
| 10439 | t-xp32-ix-119 |
| 10437 | t-xp32-ix-118 |
+---------+---------------+
5 rows in set (0.00 sec)
Attachment #8729592 -
Flags: checked-in+
Assignee | ||
Updated•9 years ago
|
Attachment #8729590 -
Flags: checked-in+
Assignee | ||
Comment 9•9 years ago
|
||
@Amy: could u please help with nagios and inventory changes?
Thanks.
Flags: needinfo?(arich)
Comment 10•9 years ago
|
||
There was some issues with the inventory entry for t-xp32-ix-124 which had to be cleaned up first, and I've done that.
Inventory and nagios have now been updated for all 10 hosts.
.
Flags: needinfo?(arich)
Comment 11•9 years ago
|
||
I also kicked off a reimage, but I haven't had time to go back and make sure they were all successful. If you folks have a chance to do that, great. Since they are w8 machines, they do not need to have the graphics disabled, so I did not do that.
Assignee | ||
Comment 12•9 years ago
|
||
I checked the machines and they all look good.
Comment 13•9 years ago
|
||
Assignee | ||
Comment 14•9 years ago
|
||
The slaves have been enabled in slavealloc. Noticed that they started taking jobs.
Comment 15•9 years ago
|
||
Is there anything left to do here?
Reporter | ||
Comment 16•9 years ago
|
||
(In reply to Chris AtLee [:catlee] from comment #15)
> Is there anything left to do here?
Nope, I checked the new slaves and seems to be OK
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Product: Release Engineering → Infrastructure & Operations
Updated•5 years ago
|
Product: Infrastructure & Operations → Infrastructure & Operations Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•