smeserver-koji/install-koji-farm.sh

250 lines
8.1 KiB
Bash
Raw Normal View History

2023-09-01 00:53:11 +02:00
#!/bin/bash
set -e
2023-09-01 08:59:55 +02:00
DEBUG=
2023-09-11 05:02:10 +02:00
KOJI_HUB_FQDN="$(hostname -f)"
KOJI_WEB_FQDN=$KOJI_HUB_FQDN
2023-09-11 08:57:02 +02:00
KOJI_BUILD_FQDNS=
2023-09-11 05:02:10 +02:00
for param in $1 $2 $3 $4 $5 $6 $7; do
2023-09-01 06:07:07 +02:00
if [ $param ] ; then
case $param in
2023-09-11 05:02:10 +02:00
debug )
DEBUG="debug" ;;
web=* )
2023-09-12 01:39:06 +02:00
KOJI_WEB_FQDN=${param#*=} ;;
2023-09-11 05:02:10 +02:00
build=* )
2023-09-12 01:39:06 +02:00
KOJI_BUILD_FQDNS=$KOJI_BUILD_FQDNS" "${param#*=} ;;
2023-09-01 06:07:07 +02:00
esac
else
break
fi
done
2023-09-01 00:53:11 +02:00
2023-09-01 08:59:55 +02:00
SILENT="-s"
QUIET="-q"
2023-09-01 06:07:07 +02:00
if [ $DEBUG ] ; then
set -xe
2023-09-01 08:59:55 +02:00
SILENT=
QUIET="-v"
2023-09-01 06:07:07 +02:00
fi
# pull down the deploy scripts
SCRIPT_GIT="https://src.koozali.org/smedev/smeserver-koji/raw/branch/master/koji-setup"
SCRIPT_DIR="$(echo ~)/bin"
2023-09-01 06:07:07 +02:00
mkdir -p $SCRIPT_DIR
curl $SILENT $SCRIPT_GIT/koji-deploy-hub.sh > $SCRIPT_DIR/koji-deploy-hub.sh
2023-09-11 05:02:10 +02:00
curl $SILENT $SCRIPT_GIT/koji-deploy-web.sh > $SCRIPT_DIR/koji-deploy-web.sh
2023-09-04 09:56:38 +02:00
curl $SILENT $SCRIPT_GIT/koji-add-builder.sh > $SCRIPT_DIR/koji-add-builder.sh
curl $SILENT $SCRIPT_GIT/koji-bootstrap-build.sh > $SCRIPT_DIR/koji-bootstrap-build.sh
curl $SILENT $SCRIPT_GIT/koji-add-user.sh > $SCRIPT_DIR/koji-add-user.sh
2023-09-01 06:26:34 +02:00
chmod o+x $SCRIPT_DIR/*.sh
2023-09-01 06:07:07 +02:00
2023-09-02 07:39:30 +02:00
# install any required packages
2023-09-04 12:53:48 +02:00
if [[ -z $(dnf list installed | grep epel-release) ]] ; then
dnf install -y epel-release $QUIET
fi
2023-09-04 12:53:48 +02:00
if [[ -z $(dnf list installed | grep netcat) ]] ; then
dnf install -y netcat $QUIET
fi
2023-09-02 07:39:30 +02:00
2023-09-01 06:07:07 +02:00
# ask for required parameters (ssh settings and build server FQDN)
2023-09-04 13:50:21 +02:00
echo "Please enter the following details for generating your SSL keys"
2023-09-01 06:07:07 +02:00
while true ; do
2023-09-04 13:50:21 +02:00
read -p "Country Code (eg, US): " COUNTRY_CODE
2023-09-01 06:23:15 +02:00
if [ ${#COUNTRY_CODE} -ne 2 ] ; then
2023-09-01 06:07:07 +02:00
echo "You must enter a 2 character country code"
else
break
fi
done
while true ; do
2023-09-04 13:50:21 +02:00
read -p "State/Region (eg. Ohio): " STATE
2023-09-01 06:07:07 +02:00
if [ $STATE ] ; then break ; else echo "State MUST be entered" ; fi
done
while true ; do
2023-09-04 13:50:21 +02:00
read -p "City/Location (eg. Columbus): " LOCATION
2023-09-01 06:07:07 +02:00
if [ $LOCATION ] ; then break ; else echo "City MUST be entered" ; fi
done
while true ; do
2023-09-04 13:50:21 +02:00
read -p "Organisation (eg. Koozali): " ORGANIZATION
2023-09-01 06:07:07 +02:00
if [ $ORGANIZATION ] ; then break ; else echo "Organization MUST be entered" ; fi
done
while true ; do
2023-09-04 13:50:21 +02:00
read -p "Org Unit (eg. Koji): " ORG_UNIT
2023-09-01 06:07:07 +02:00
if [ $ORG_UNIT ] ; then break ; else echo "Organizational Unit MUST be entered" ; fi
done
2023-09-01 00:53:11 +02:00
# setup default parameters
2023-09-04 07:38:11 +02:00
HTTPD_USER=apache
HTTPD_DOCUMENT_ROOT=/var/www/html
KOJI_DIR="/mnt/koji"
2023-09-11 10:01:55 +02:00
TAG_NAME='smeos11 smecontribs11'
2023-09-04 07:48:02 +02:00
KOJI_PKI_DIR=/etc/pki/koji
RPM_ARCH="x86_64 noarch"
KOJID_CAPACITY=16
SRC_RPM_DIR=
BIN_RPM_DIR=
DEBUG_RPM_DIR=
2023-09-05 02:56:43 +02:00
EXTERNAL_REPO='http://mirror.contribs.org/smeserver/releases/10/smeos/\$arch/'
2023-09-04 07:38:11 +02:00
POSTGRES_USER=postgres
POSTGRES_DIR=/var/lib/pgsql
2023-09-01 06:07:07 +02:00
# create the parameter script used by koji scripts
cat > $SCRIPT_DIR/koji-parameters.sh <<- EOT
#!/bin/bash
2023-09-04 07:10:17 +02:00
## HTTPD settings
2023-09-04 07:38:11 +02:00
export HTTPD_USER=$HTTPD_USER
export HTTPD_DOCUMENT_ROOT=$HTTPD_DOCUMENT_ROOT
2023-09-01 01:44:52 +02:00
## KOJI RPM BUILD AND TRACKER
export SCRIPT_GIT=$SCRIPT_GIT
2023-09-04 07:54:44 +02:00
export KOJI_DIR=$KOJI_DIR
2023-09-04 08:07:57 +02:00
export KOJI_HUB_FQDN=$KOJI_HUB_FQDN
export KOJI_URL=http://$KOJI_HUB_FQDN
export KOJI_WEB_URL=http://$KOJI_WEB_FQDN
2023-09-02 07:39:30 +02:00
export KOJID_CAPACITY=$KOJID_CAPACITY
2023-09-11 10:01:55 +02:00
export TAG_NAME='$TAG_NAME'
2023-09-01 01:44:52 +02:00
# Use for koji SSL certificates
2023-09-04 07:38:11 +02:00
export KOJI_PKI_DIR=$KOJI_PKI_DIR
2023-09-01 01:44:52 +02:00
export COUNTRY_CODE='$COUNTRY_CODE'
export STATE='$STATE'
export LOCATION='$LOCATION'
export ORGANIZATION='$ORGANIZATION'
export ORG_UNIT='$ORG_UNIT'
# Use for importing existing RPMs
2023-09-11 10:02:38 +02:00
export RPM_ARCH='$RPM_ARCH'
export SRC_RPM_DIR=$SRC_RPM_DIR
export BIN_RPM_DIR=$BIN_RPM_DIR
export DEBUG_RPM_DIR=$DEBUG_PRM_DIR
2023-09-01 01:44:52 +02:00
# Comment the following if supplying all RPMs as an upstream and not a downstream
2023-09-05 02:56:43 +02:00
export EXTERNAL_REPO=${EXTERNAL_REPO}
2023-09-01 01:44:52 +02:00
## POSTGRESQL DATABASE
2023-09-04 07:38:11 +02:00
export POSTGRES_USER=$POSTGRES_USER
export POSTGRES_DIR=$POSTGRES_DIR
2023-09-01 01:44:52 +02:00
EOT
2023-09-04 03:39:25 +02:00
chmod o+x $SCRIPT_DIR/koji-parameters.sh
2023-09-01 06:07:07 +02:00
# deploy the central koji components
koji-deploy-hub.sh $DEBUG
2023-09-01 06:07:07 +02:00
2023-09-11 05:02:10 +02:00
# deploy the web koji components
if [[ $KOJI_WEB_FQDN = $KOJI_HUB_FQDN ]] ; then
# deploy locally (default)
2023-09-11 06:39:57 +02:00
koji-deploy-web.sh $KOJI_WEB_FQDN $DEBUG
2023-09-11 05:02:10 +02:00
else
# deploy remotely to $KOJI_WEB_FQDN
# check that I can conmnect
if [ ! nc -z $KOJI_WEB_FQDN 22 2>/dev/null ] ; then
echo "I cannot connect to $KOJI_WEB_FQDN! Is it online? "
echo "Options:"
echo "- turn on the server"
echo "- add this server into the /etc/hosts file on this server"
exit 1
fi
# update hub config files to point at web server
2023-09-14 00:52:06 +02:00
sed 's,KojiWebURL.*,KojiWebURL = http://$KOJI_WEB_FQDN/koji,g' /etc/koji-hub/hub.conf
sed 's,weburl.*,weburl = http://$KOJI_WEB_FQDN/koji,g' /etc/koji.conf
2023-09-11 05:02:10 +02:00
# generate a hub ssh key if there isn't one already (for scp & ssh to web server)
if [ ! -f /root/.ssh/id-rsa ] ; then
# create a ssh key on build server
mkdir -p ~/.ssh
ssh-keygen -t rsa -f /root/.ssh/id_rsa -N ""
fi
# copy the server key into authorized keys on the web server
ssh-copy-id -i ~/.ssh/id_rsa.pub $KOJI_WEB_FQDN
# find the IP of the web server
WEB_IP=$(ssh root@$KOJI_WEB_FQDN "hostname -I")
# add web server into allowed access to db
cat >> "$POSTGRES_DIR"/data/pg_hba.conf <<- EOF
host koji koji $WEB_IP/32 scram-sha-256
EOF
systemctl reload postgresql
# copy across the ssl keys
ssh $QUIET root@$KOJI_WEB_FQDN mkdir -p $KOJI_PKI_DIR/private
2023-09-14 01:10:15 +02:00
scp $QUIET $KOJI_PKI_DIR/kojiweb.pem root@$KOJI_WEB_FQDN:$KOJI_PKI_DIR/.
2023-09-11 05:02:10 +02:00
scp $QUIET $KOJI_PKI_DIR/kojihub.pem root@$KOJI_WEB_FQDN:$KOJI_PKI_DIR/.
scp $QUIET $KOJI_PKI_DIR/private/kojihub.key root@$KOJI_WEB_FQDN:$KOJI_PKI_DIR/private/.
scp $QUIET $KOJI_PKI_DIR/koji_ca_cert.crt root@$KOJI_WEB_FQDN:$KOJI_PKI_DIR/.
# copy across the parameter files (we built them on the hub)
ssh $QUIET root@$KOJI_WEB_FQDN mkdir -p $SCRIPT_DIR
scp $QUIET $SCRIPT_DIR/koji-parameters.sh root@$KOJI_WEB_FQDN:$SCRIPT_DIR/koji-parameters.sh
# pull down the required scripts
ssh $QUIET root@$KOJI_WEB_FQDN "curl $SILENT $SCRIPT_GIT/koji-deploy-web.sh > $SCRIPT_DIR/koji-deploy-web.sh"
# make them executeable
ssh $QUIET root@$KOJI_WEB_FQDN "chmod o+x $SCRIPT_DIR/*"
# connect to nfs share
ssh $QUIET root@$KOJI_WEB_FQDN $SCRIPT_DIR/koji-deploy-nfs-client.sh $DEBUG
# deploy koji builder
ssh $QUIET root@$KOJI_WEB_FQDN $SCRIPT_DIR/koji-deploy-web.sh $KOJI_WEB_FQDN $DEBUG
fi
# add builders
2023-09-11 05:02:10 +02:00
deploy_builder () {
local FQDN=$1
# check if server available on port 22
2023-09-11 05:02:10 +02:00
until (nc -z $FQDN 22)
do
2023-09-11 05:02:10 +02:00
echo "I cannot connect to $FQDN! Is it online? "
echo "Options:"
echo "- FQDN=<FQDN of build server> # if you've mis-typed the name"
echo "- IP=<IP of build server> # I'll add this to your /etc/hosts file"
echo "- <enter> # try again (I've started the server)"
echo "- Q # quit this loop (give up)"
read RESPONSE
case $RESPONSE in
Q | q )
break
;;
null )
continue
;;
IP=* )
BIP=${RESPONSE#*=}
2023-09-02 07:39:30 +02:00
# add this builder into the hosts file
2023-09-11 05:02:10 +02:00
echo "$BIP $FQDN\n" >> /etc/hosts
continue
;;
FQDN=* )
2023-09-11 05:02:10 +02:00
FQDN=${RESPONSE#*=}
2023-09-02 07:39:30 +02:00
continue
;;
*)
continue
;;
esac
done
# we found the server and will deploy to it
2023-09-11 05:02:10 +02:00
koji-add-builder.sh $FQDN $DEBUG
}
2023-09-11 07:39:19 +02:00
# if builders added as command line parameters, use those
2023-09-11 08:57:02 +02:00
if [ $KOJI_BUILD_FQDNS ] ; then
2023-09-11 09:47:02 +02:00
for FQDN in ${KOJI_BUILD_FQDNS} ; do
2023-09-11 07:39:19 +02:00
deploy_builder $FQDN
done
else
# otherwise prompt for builders
echo "We will now deploy koji to your build servers"
MSG="Press <enter> to use your hub ($KOJI_HUB_FQDN), or enter the FQDN of your first build server) "
BSNO=1
while true ; do
read -p "Build Server FQDN: " FQDN
MSG="Add another Build Server (will stop asking if left blank) "
if [ -z $FQDN ] ; then
# if blank the first time add builder to the hub
if [[ $BSNO -gt 1 ]] ; then
break
else
FQDN=$KOJI_HUB_FQDN
fi
fi
deploy_builder $FQDN
((BSNO=BSNO+1))
done
fi
# bootstrap the targets etc.
2023-09-11 07:39:19 +02:00
koji-bootstrap-build.sh