10 min read
Build and deploy Odoo with and without Jenkins
Jenkins is a popular but outdated CI/CD system. Compared to modern CI/CD systems such as GitHub Actions or GitLab Workflows, Jenkins does not deliver on containerization. As Docker containers are high in demand for building and hosting applications Jenkins has to go some extra miles. Nonetheless, Jenkins is yet the only self-hostable feature-rich CI/CD solution. For a project I went with Jenkins to deploy a multi-stage Odoo environment.
In this post I would like to present the main parts of the final project such as the Docker setup or the Jenkins pipeline. An important goal was that the deployment can be done without Jenkins.
The project files are checked into a GitHub repo. It follows the GitOps approach. The repo has three branches with different roles:
- main (production): Productive Odoo environment
- int (integration): Copies and updates Odoo database from production
- dev (development): Sets up an Odoo database with demo data
On all branches there are these files:
- docker-comopse.yml.template: Template for docker compose config
- .gitignore: Ignorefile for git files and folders
- .gitmodules: Git submodules with Odoo repositories
- odoo.conf.template: Odoo config with env vars
- .dockerignore: Ignorefile for Docker image build
- Dockerfile: Build instructions for the Docker image
- .gitmodules: Odoo modules are added as git submodules
- .rsyncignore: Ignorefile for rsync command
- task: Bash script that contains the build and deployment instructions
- Jenkinsfile: Jenkins pipeline definition that wraps the task script
- .env.template: Template for .env file for deployment from localhost
Lets have a closer look at these files.
docker-compose.yml.template
version: "3"
name: ${COMPOSE_PROJECT_NAME}
services:
${SERVICE_NAME}:
image: ${DOCKER_REGISTRY}/${DOCKER_TAG}
restart: unless-stopped
environment:
HOST: ${PGHOST}
USER: ${PGUSER}
PASSWORD: ${PGPASSWORD}
PGHOST: ${PGHOST}
PGUSER: ${PGUSER}
PGPASSWORD: ${PGPASSWORD}
ENVIRONMENT: ${ENVIRONMENT}
DB_NAME: ${DB_NAME}
LOG_LEVEL: ${LOG_LEVEL}
ODOO_BASE_URL: ${ODOO_BASE_URL}
ODOO_ADDONS_PATH: /mnt/extra-addons
volumes:
- /usr/share/${SERVICE_NAME}/addons:/mnt/extra-addons
- ${SERVICE_NAME}:/var/lib/odoo
networks:
- ${DOCKER_NETWORK}
networks:
${DOCKER_NETWORK}:
external: true
volumes:
${SERVICE_NAME}:
name: ${SERVICE_NAME}
This docker compose file is templated in the deployment step. As you can see the service name is variable. The service name translates to the git branch.
.gitignore
.env
__pycache__
docker-compose.yml
odoo.conf
default.vim
This files and folders are ignored in the git project.
.gitmodules
[submodule "enterprise"]
path = enterprise
url = git@github.com:odoo/enterprise.git
branch = 16.0
[submodule "web"]
path = web
url = git@github.com:OCA/web.git
branch = 16.0
This file contains the Odoo repsitories that are checked out and deployed to the environment.
odoo.conf.template
[options]
addons_path = $ODOO_ADDONS_PATH,$ADDONS_PATH
data_dir = /var/lib/odoo
admin_passwd = $pbkdf2-sha512$25000$ZWlQaGFlbmVlMWVlamV1Tmc0S2k$4562zeZ1EPUwULaA6PtxViA.zM3TYAu0du2EPxciiZcFLMpjBJ5HeyNuXrEuSDh9.5EpZueQfy7ZGMfCiP6kYA
limit_request = 8192
limit_time_cpu = 3600
limit_time_real = 3600
max_cron_threads = 1
db_name = $DB_NAME
proxy_mode = True
workers = 8
log_level = $LOG_LEVEL
[ir.config_parameter]
web.base.url = $ODOO_BASE_URL
By default the Odoo conf does not support env vars. With the new entrypoint script we can pass env vars into the Odoo conf.
.dockerignore
**
!extra-addons
!odoo.conf.template
!entrypoint.sh
Only these files are sent to the build context.
Dockerfile
ARG ODOO_IMAGE
FROM $ODOO_IMAGE
USER root
RUN python -m pip install prometheus-client astor fastapi python-multipart ujson a2wsgi parse-accept-language pyjwt python-jose
COPY ./odoo.conf.template /etc/odoo/
USER odoo
Install additional python libraries and copy a custom Odoo configuration template to the image.
.rsyncignore
/setup
.git
These folders are ignored when syncing the submodules.
task
Now comes the juicy part. The following script is a command line tool to execute the build and deployment steps.
#!/bin/bash
set -e
if [[ -a ".env" ]]; then
export $(cat .env | sed 's/^#.*//g' | xargs)
fi
# Static env vars
ODOO_IMAGE=example/odoo:16.0.2024.0405
DOCKER_REGISTRY=example
DOCKER_TAG=odoo:16.0
DOCKER_USERNAME=example
DEPLOY_TARGET=server.example.com
DOCKER_NETWORK="example.com"
PGHOST=postgres01
PGUSER=odoo
# Dynamic env vars
: "${BRANCH:=${GIT_BRANCH##origin/}}"
: "${BRANCH:=$(git symbolic-ref --short -q HEAD)}"
: "${SERVICE_NAME:=odoo-$BRANCH}"
: "${DEPLOY_USERNAME:=$USERNAME}"
: "${VOLUME_NAME:=$SERVICE_NAME}"
: "${LOG_LEVEL:=warn}"
[[ "integration,development" =~ $ENVIRONMENT ]] && { LOG_LEVEL=debug; }
function help() {
echo
echo "task <command> [options]"
echo
echo "commands:"
echo
# Define column widths
cmd_width=10
opt_width=6
desc_width=32
# Print table header
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "Command" "Option" "Description"
echo "|$(printf '%*s' $((cmd_width + 2)) '' | tr ' ' '-')|$(printf '%*s' $((opt_width + 2)) '' | tr ' ' '-')|$(printf '%*s' $((desc_width + 2)) '' | tr ' ' '-')|"
# Print table rows
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "all" "" "Run all tasks."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "version" "" "Show version of required tools."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "submodule" "" "Checkout all git submodules."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "prepare" "" "Find and copy all Odoo modules."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "build" "" "Build Docker image."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "publish" "" "Publish Docker image."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "deploy" "" "Deploy Docker image."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "init" "" "Init database on container."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "cleanup" "" "Cleanup workspace."
printf "| %-${cmd_width}s | %-${opt_width}s | %-${desc_width}s |\n" "handler" "" "Checkout submodule reference."
echo
}
start_timer() {
START_TIME=$(date +%s)
}
end_timer() {
END_TIME=$(date +%s)
}
log_elapsed_time() {
local elapsed_time=$((END_TIME - START_TIME))
echo "Elapsed time for $1: $elapsed_time seconds"
}
function info() {
echo "Environment: $ENVIRONMENT"
echo "Log Level: $LOG_LEVEL"
echo "Service: $SERVICE_NAME"
echo "Base Image: $ODOO_IMAGE"
echo "Docker Tag: $DOCKER_TAG"
echo "Git Branch: $BRANCH"
}
function version() {
docker -v
docker-compose -v
envsubst -V
rsync -V
}
function submodule() {
echo "Update git submodule remote urls"
git submodule set-url hr-attendance git@github.com:sozialinfo/hr-attendance.git
echo "Checkout git submodules"
git submodule update --init --recursive --checkout
# echo "Reset git submodules"
# git reset --hard --recurse-submodule
echo "Remove deprecated git submodules"
rm -rf "odoo-apps-server-tools"
rm -rf "odoo-apps-partner-contact"
rm -rf "odoo-apps-survey"
rm -rf "odoo-apps-vertical-job-portal"
}
function build() {
echo "Build Docker image"
docker build . --build-arg ODOO_IMAGE="$ODOO_IMAGE" -t "$DOCKER_REGISTRY"/"$DOCKER_TAG"
}
function publish() {
ssh_exec="ssh $DEPLOY_USERNAME@$DEPLOY_TARGET"
echo "Publish Docker image to $DOCKER_USERNAME/$DOCKER_TAG"
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
docker push "$DOCKER_REGISTRY"/"$DOCKER_TAG"
}
function substitute() {
export PGHOST
export PGUSER
export DOCKER_NETWORK
export DOCKER_REGISTRY
export DOCKER_TAG
export SERVICE_NAME
export LOG_LEVEL
export COMPOSE_PROJECT_NAME=odoo-cd
export DB_NAME="$SERVICE_NAME"
echo "Sbustitute env vars from docker-compose.yml.template to docker-compose.yml"
envsubst < "docker-compose.yml.template" > "docker-compose.yml"
}
function sync() {
start_timer
ssh_exec="ssh $DEPLOY_USERNAME@$DEPLOY_TARGET"
SUBMODULE_PATH_FILE="submodule-paths.txt"
echo "Generate file with paths to submodules"
git config --file .gitmodules --get-regexp path | awk '{ print $2 }' > "$SUBMODULE_PATH_FILE"
echo "untracked-odoo-apps" >> "$SUBMODULE_PATH_FILE"
echo "Sync submodule folders to $DEPLOY_TARGET"
$ssh_exec mkdir -p "/usr/share/$SERVICE_NAME/addons"
rsync --recursive --links --update --delete --files-from="$SUBMODULE_PATH_FILE" --exclude-from=".rsyncignore" ./ "$DEPLOY_USERNAME@$DEPLOY_TARGET:/usr/share/$SERVICE_NAME/addons/"
if [[ "production,integration,development" =~ $ENVIRONMENT && -n "$ODOO_ADDONS_UPDATE" ]]; then
echo "Update Odoo modules for $SERVICE_NAME"
$ssh_exec docker-odoo-update -c "$SERVICE_NAME" -d "$SERVICE_NAME" -u "$ODOO_ADDONS_UPDATE"
fi
end_timer && log_elapsed_time "sync"
}
function deploy() {
start_timer
ssh_exec="ssh $DEPLOY_USERNAME@$DEPLOY_TARGET"
echo "Deploy image $DOCKER_REGISTRY/$DOCKER_TAG to $DEPLOY_TARGET"
$ssh_exec docker pull "$DOCKER_REGISTRY"/"$DOCKER_TAG"
OLD_CONTAINER_ID=$($ssh_exec docker ps -f "name=$SERVICE_NAME" -q | tail -n1)
NGINX_CONTAINER=$($ssh_exec docker ps --format '{{.Names}}' -f "name=nginx")
echo "Scale service $SERVICE_NAME to 2"
docker-compose -H "ssh://$DEPLOY_USERNAME@$DEPLOY_TARGET" up -d --no-deps --scale "$SERVICE_NAME=2" --no-recreate "$SERVICE_NAME"
NEW_CONTAINER_ID=$($ssh_exec docker ps -f "name=$SERVICE_NAME" -q | head -n1)
NEW_CONTAINER_IP=$($ssh_exec docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' "$NEW_CONTAINER_ID")
$ssh_exec curl --silent --include --retry-connrefused --retry 30 --retry-delay 1 --fail "http://$NEW_CONTAINER_IP:8069/web/login" || exit 1
$ssh_exec docker-nginx-reload -c "$NGINX_CONTAINER"
echo "Remove container $OLD_CONTAINER_ID"
$ssh_exec docker stop "$OLD_CONTAINER_ID" || true
$ssh_exec docker rm "$OLD_CONTAINER_ID" || true
echo "Scale service $SERVICE_NAME to 1"
docker-compose -H "ssh://$DEPLOY_USERNAME@$DEPLOY_TARGET" up -d --no-deps --scale "$SERVICE_NAME=1" --no-recreate "$SERVICE_NAME"
$ssh_exec docker-nginx-reload -c "$NGINX_CONTAINER"
end_timer && log_elapsed_time "deploy"
}
function init() {
ssh_exec="ssh $DEPLOY_USERNAME@$DEPLOY_TARGET"
if [[ $ENVIRONMENT = "development" && $RESET = true ]]; then
echo "Initialize database Odoo for $SERVICE_NAME"
$ssh_exec docker-odoo-drop -c "$SERVICE_NAME" -d "$SERVICE_NAME"
$ssh_exec docker-odoo-init -c "$SERVICE_NAME" -d "$SERVICE_NAME" -i "base" -l de_CH -w
fi
if [[ $ENVIRONMENT = "development" && -n "$ODOO_ADDONS_INIT" ]]; then
echo "Install Odoo modules for $SERVICE_NAME"
$ssh_exec docker-odoo-init -c "$SERVICE_NAME" -d "$SERVICE_NAME" -i "$ODOO_ADDONS_INIT" -w
fi
if [[ $ENVIRONMENT = "integration" && $RESET = true ]]; then
echo "Duplicate Odoo database and filestore for $SERVICE_NAME"
$ssh_exec docker-odoo-duplicate -c "$SERVICE_NAME" -s odoo-main -t "$SERVICE_NAME" -u -r -i
$ssh_exec docker-volume-copy -s odoo-main:/filestore/odoo-main -t "${SERVICE_NAME}:/filestore/${SERVICE_NAME}" -f
fi
if [[ $ENVIRONMENT = "integration" && -n "$ODOO_ADDONS_INIT" ]]; then
echo "Install Odoo modules for $SERVICE_NAME"
$ssh_exec docker-odoo-init -c "$SERVICE_NAME" -d "$SERVICE_NAME" -i "$ODOO_ADDONS_INIT"
fi
if [[ "integration,development" =~ $ENVIRONMENT && -n "$ODOO_ADDONS_UNINSTALL" ]]; then
echo "Uninstall Odoo modules for $SERVICE_NAME"
$ssh_exec docker-odoo-uninstall -c "$SERVICE_NAME" -d "$SERVICE_NAME" -u "$ODOO_ADDONS_UNINSTALL"
fi
if [[ $ENVIRONMENT = "integration" && $ANONYMIZE = true ]]; then
echo "Anonymize Odoo database $SERVICE_NAME"
$ssh_exec bash <<EOF
docker-odoo-shell -c "$SERVICE_NAME" -d "$SERVICE_NAME" -f -p "env['hr.payslip'].search([]).cancel_sheet()
env['hr.payslip'].search([]).unlink()
env['hr.payroll.register'].search([]).unlink()
env['account.move.line.salary'].search([]).unlink()"
docker-odoo-shell -c "$SERVICE_NAME" -d "$SERVICE_NAME" -f -p "env['ir.model.fields.anonymize'].search([]).action_anonymize_records()"
EOF
fi
if [[ "integration,development" =~ $ENVIRONMENT ]]; then
echo "Restart Nginx process"
NGINX_CONTAINER=$($ssh_exec docker ps --format '{{.Names}}' -f "name=nginx")
$ssh_exec docker-nginx-reload -c "$NGINX_CONTAINER"
fi
}
function cleanup() {
echo "Prune Docker images"
docker image prune -af --filter "until=$((7*24))h"
}
case "$1" in
help)
help
;;
all)
version
submodule
build
publish
substitute
sync
deploy
init
;;
info)
info
;;
version)
version
;;
submodule)
submodule
;;
build)
build
;;
publish)
publish
;;
substitute)
substitute
;;
sync)
sync
;;
deploy)
deploy
;;
init)
init
;;
cleanup)
cleanup
;;
*)
help
exit 1;
esac
The most important step is the deploy function. This step deploys the container with zero downtime. It does so by starting the container so the old and new container are running at the same time (scale=2). Then it shuts down the old container and ensures only one and only the new container is running (scale=1). Once the new container is started the proxy config is reloaded to ensure the service name resolves with the new container ip address.
In the init step the Odoo database is duplicated, defused and update. It is expected that the Ansible Build scripts are installed on the deployment target.
Jenkinsfile
The Jenkins pipeline executes the task script. Every stage is a task step. The credentials are stored in Jenkins.
pipeline {
agent any
environment {
DOCKER_PASSWORD = credentials('docker-password')
PGPASSWORD = credentials('odoo-pgpassword')
DEPLOY_USERNAME = 'sozialinfo-git-bot'
}
stages {
stage('version') {
steps {
script {
currentBuild.description = sh (script: 'git log -1 --pretty=%B', returnStdout: true).trim()
}
sh './task version'
}
}
stage('submodule') {
steps {
sshagent(credentials: ['sozialinfo-git-bot']) {
sh '''#!/bin/bash
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
ssh-keyscan -t rsa,dsa github.com >> ~/.ssh/known_hosts
./task submodule
'''
}
}
}
stage('build') {
steps {
sh './task build'
}
}
stage('publish') {
steps {
sshagent(credentials: ['sozialinfo-git-bot']) {
sh '''#!/bin/bash
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
ssh-keyscan -t rsa,dsa $DOCKER_TARGET >> ~/.ssh/known_hosts
./task publish
'''
}
}
}
stage('substitute') {
steps {
sh './task substitute'
}
}
stage('sync') {
steps {
sshagent(credentials: ['sozialinfo-git-bot']) {
sh '''#!/bin/bash
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
ssh-keyscan -t rsa,dsa $DOCKER_TARGET >> ~/.ssh/known_hosts
./task publish
'''
}
}
}
stage('deploy') {
steps {
sshagent(credentials: ['sozialinfo-git-bot']) {
sh '''#!/bin/bash
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
ssh-keyscan -t rsa,dsa $DOCKER_TARGET >> ~/.ssh/known_hosts
./task deploy
'''
}
}
}
stage('init') {
steps {
sshagent(credentials: ['sozialinfo-git-bot']) {
sh '''#!/bin/bash
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
ssh-keyscan -t rsa,dsa github.com >> ~/.ssh/known_hosts
./task init
'''
}
}
}
stage('cleanup') {
steps {
sh './task cleanup'
}
}
}
}
Noteworthy is the ssh agent instruction. It loads the ssh key from the Jenkins credentials store and is then used to make the ssh connection.
A selection of environment variables is set statically and other are passed as build parameters:
.env.template
ENVIRONMENT=development
RESET=false
ANONYMIZE=false
ODOO_ADDONS_UPDATE=partner_firstname,partner_fax
ODOO_ADDONS_INIT=web_environment_ribbon
ODOO_ADDONS_UNINSTALL=
BRANCH=dev
ODOO_BASE_URL=https://odoo-dev.example.com
DOCKER_PASSWORD=
PGPASSWORD=
As mentioned the build and deployment works on the locally by executing the task scrip. Credentials are loaded from the .env file.
Final thoughts
The setup is elaborate and the and requires and understanding of Jenkins and the Odoo Docker image. I wanted to give some insights on how this often complex setups can look like.
With the Jenkins file wrapping the task file I can switch the CI/CD system with ease. Simply set up the env vars and call the task script steps in a domain specific language.
Categories: Software developmentTags: odoo , jenkins , deployment
Edit this page
Show statistic for this page