You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org
Backport windows/Deployers/Script: Difference between revisions
Jump to navigation
Jump to search
imported>Lucas Werkmeister (WMDE) (update for datacenter switch) |
imported>Lucas Werkmeister (WMDE) (update hosts in table below script) |
||
Line 36: | Line 36: | ||
and a GNOME Terminal window with four SSH sessions arranged like this: | and a GNOME Terminal window with four SSH sessions arranged like this: | ||
{|class="wikitable" style="width: 40em; height: 30ch;" | {|class="wikitable" style="width: 40em; height: 30ch;" | ||
| style="width: 50%; height: 50%;" | logspam-watch on [[ | | style="width: 50%; height: 50%;" | logspam-watch on [[mwlog2002]], keep an eye on this | ||
| style="width: 50%; height: 50%;" | [[deployment.eqiad.wmnet|deployment]], run <code>git fetch</code>, <code>scap sync-file</code> etc. here | | style="width: 50%; height: 50%;" | [[deployment.eqiad.wmnet|deployment]], run <code>git fetch</code>, <code>scap sync-file</code> etc. here | ||
|- | |- | ||
| style="width: 50%; height: 50%;" | [[ | | style="width: 50%; height: 50%;" | [[mwdebug2001]], run <code>scap pull</code> here | ||
| style="width: 50%; height: 50%;" | [[ | | style="width: 50%; height: 50%;" | [[mwmaint2002]], run <code>mwscript</code> here if necessary | ||
|} | |} | ||
[[Category:Deployment]] | [[Category:Deployment]] |
Revision as of 08:20, 30 June 2021
The following Bash script automates the steps in Backport windows/Deployers#SSH Connections and Error Logs:
#!/bin/bash
function backport {
# open browser window
firefox \
https://wikitech.wikimedia.org/wiki/Deployments#!/deploycal/current \
https://wikitech.wikimedia.org/wiki/Backport_windows/Deployers \
https://logstash.wikimedia.org/app/kibana#/dashboard/mediawiki-errors \
https://logstash.wikimedia.org/app/kibana#/dashboard/mwdebug1002 \
https://integration.wikimedia.org/zuul/ \
https://versions.toolforge.org/
# ensure the ssh key is in the agent and the ControlMaster connection is alive
ssh mwdebug2001.codfw.wmnet true
# ensure the new tmux session will still be able to connect to the agent
# (in case the tmux server was started before the agent was set up)
tmux set-environment -g SSH_AUTH_SOCK "$SSH_AUTH_SOCK"
# set up the backport/config terminal window:
# logspam-watch deployment
# mwdebug2001 mwmaint2002
gnome-terminal --maximize \
tmux \
new-session -s backport ssh mwlog2002.codfw.wmnet \; \
split-window -h ssh deployment.eqiad.wmnet \; \
split-window -t {left} -v ssh mwdebug2001.codfw.wmnet \; \
split-window -t {right} -v ssh mwmaint2002.codfw.wmnet \; \
send-keys -t {top-left} "exec logspam-watch" Enter \; \
send-keys -t {top-right} "cd /srv/mediawiki-staging" Enter \; \
select-pane -t {top-right} \;
}
It will open a new Firefox window with some relevant tabs, and a GNOME Terminal window with four SSH sessions arranged like this:
logspam-watch on mwlog2002, keep an eye on this | deployment, run git fetch , scap sync-file etc. here
|
mwdebug2001, run scap pull here
|
mwmaint2002, run mwscript here if necessary
|