Quick start¶
Prerequisites¶
An Ubuntu LTS workstation
Internet access without proxy
sudo
access
Install dependencies and add user to docker
group¶
sudo apt-get update
sudo apt-get install curl docker.io git vim
sudo usermod -a -G docker $(id -nu)
Warning
Restart session in order to take in account add to docker
group.
Create a single node k8s cluster¶
Option #1: kind¶
kind is a tool for running local Kubernetes clusters using Docker container “nodes”. kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI. Script below uses a simple install script for kind provided by K8s-school.
WORKDIR="$HOME/src"
mkdir -p "$WORKDIR"
cd "$WORKDIR"
git clone --depth 1 -b "k8s-v1.20.2" --single-branch https://github.com/k8s-school/kind-helper
cd kind-helper
./kind/k8s-create.sh -s
Deploy Qserv in four lines¶
This procedure is recommended for development platform only.
golang and git-lfs are pre-requisites.
RELEASE="2024.5.1-rc5"
git clone --depth 1 --single-branch -b "$RELEASE" https://github.com/lsst/qserv-operator
cd qserv-operator
# Install pre-requisites
./prereq-install.sh
# Deploy Qserv operator
kubectl apply -f manifests/operator.yaml
# Deploy Qserv
kubectl apply -k manifests/base
# Run integration tests
./tests/tools/wait-qserv-ready.sh
./tests/e2e/integration.sh