You are browsing a read-only backup copy of Wikitech. The primary site can be found at wikitech.wikimedia.org
Nova Resource:Integration/Setup
Roles
integration-agent-{type}-XXXX
Updated September 2019 based on https://phabricator.wikimedia.org/T226233
On https://horizon.wikimedia.org/project/instances/
- Create a new instance named
integration-agent-{type}-XXXX
where{type}
is a role (example:docker
) andXXXX
increments starting from 1001. - Source: pick the Stretch image
- Flavor: pick
mediumram
flavor
Wait a few minutes (during which the instance is created, initial setup happens). Then connect to the instance over SSH and fix puppet:
rm -fR /var/lib/puppet/ssl && puppet agent -tv
- If that complains:
- get the instance fully qualified domain name (FQDN):
hostname --fqdn
- On
integration-puppetmaster01.integration.eqiad.wmflabs
, clean the old and invalid certificate(s):sudo puppet cert clean <FQDN OF INSTANCE HERE
- get the instance fully qualified domain name (FQDN):
Apply the Puppet role:
- https://horizon.wikimedia.org/project/instances/
- Click the instance then head to the tab
Puppet
- Pick
role::ci::slave::labs::docker
- For a Docker agent, set
docker_lvm_volume
variable totrue
.
Run puppet on the instance (puppet agent -tv
) and verify:
- If a Docker agent, make sure there is a
/var/lib/docker
partition for Docker - Clean unused packages:
apt-get autoremove --purge
- Upgrade packages:
apt-get -y dist-upgrade
Reboot the instance (Before adding to Jenkins). This cleans state, launches deamons, and fixes Shinken monitoring (phabricator:T91351). Once it is back, you can then add it to Jenkins
Add the instance to Jenkins
- Create "New Node" in Jenkins management
- Name: (short hostname of instance)
- Type: Permanent Agent
- Executors: 1 (for Docker agents: 4)
- Filesystem root:
/srv/jenkins/workspace
- Labels:
contintLabsSlave
- For Docker agents:
Docker
- Usage:
EXCLUSIVE
(Only build jobs with label restrictions matching this node) - Launch method: SSH
- Host: (internal IP of instance)
- Credentials: jenkins-deploy (key from role::ci::slave::labs::common)
- Availability:
Always
(Keep this slave on-line as much as possible)
The Jenkins master will automatically trust the ssh key upon the first connection.
integration-dev
- Create instance:
m1.medium
- Security group: Default
- Wait 10 minutes
- Reconfigure instance from wikitech: Enable
role::ci::slave::labs
. - Via SSH, force a puppet run (applies role).
Utilities
npm upgrade
Always use the original npm that came with Ubuntu to perform the upgrade. This installs the new version in /usr/local/bin
, preserving the original.
- For each instance, gracefully depool it (!log it), wait for any running builds on it to complete, and run the following:
- If Ubuntu Trusty:
# Note: Must sudo without preserving user environment, using -i
$ sudo -i
root$ /usr/share/npm/bin/npm-cli.js install -g npm@2.7.6
# Purge both caches
root$ rm -rf /mnt/home/jenkins-deploy/.npm /root/.npm
- Re-pool instance.
puppet
![]() | This page may be outdated or contain incorrect details. Please update it if you can. |
Use sudo /usr/local/sbin/puppet-run &
. Don't use , because that is not what cron uses and leads to inconsistencies with e.g. umask and other factors affecting default values used at runtime.
sudo puppet agent -t
screenshot
# at integration-slave1010 over ssh
$ import -display :94 -window root "image $(date).png"
# local shell
$ scp integration-slave1010.eqiad.wmflabs:image*.png . && open
Debug MediaWiki frontend
Take slave of choosing offline in Jenkins web interface (e.g. press "Mark offline" after selecting a node)
sudo -iu jenkins-deploy
$ cd /mnt/jenkins-workspace/workspace/mediawiki-core-qunit/
$ export WORKSPACE=$PWD; export BUILD_TAG=debug; export EXECUTOR_NUMBER=999
$ cd src/
$ git remote update && git checkout origin/master && git reset --hard HEAD
$ /srv/deployment/integration/slave-scripts/bin/mw-install-mysql.sh
$ /srv/deployment/integration/slave-scripts/bin/mw-apply-settings.sh
$ . /srv/deployment/integration/slave-scripts/bin/mw-set-env-localhost.sh
$ echo -e "<?php\n\$wgServer = '${MW_SERVER}';\n\$wgScriptPath = '${MW_SCRIPT_PATH}';\n\$wgScript=\$wgStylePath=\$wgLogo=false;\n\$wgEnableJavaScriptTest = true;\n" >> "$MW_INSTALL_PATH/LocalSettings.php"
$ . /srv/deployment/integration/slave-scripts/bin/npm-setup.sh
$ rm -rf node_modules && npm install
$ ln -s "$MW_INSTALL_PATH" /srv/localhost-worker/$BUILD_TAG
Now the install is ready for interacting with.
For example:
$ curl --include "$MW_SERVER/$MW_SCRIPT_PATH/index.php?title=Special:BlankPage"
$ curl --include "$MW_SERVER/$MW_SCRIPT_PATH/load.php?debug=true&modules=startup&only=scripts"
Or
$ cd $MW_INSTALL_PATH
$ grunt qunit
Remember: Clean up MySQL database afterwards by running (needs the same environment, e.g. WORKSPACE
, EXECUTOR_NUMBER
):
/srv/deployment/integration/slave-scripts/bin/mw-teardown-mysql.sh