Files
eCommerce-backend/Jenkinsfile
subodh 5ea3d6b226
Some checks failed
eCommerce-backend/pipeline/head There was a failure building this commit
jenkinsfile
2026-02-20 15:54:00 +00:00

83 lines
3.0 KiB
Groovy

pipeline {
agent any
environment {
REGISTRY = "myharbor.local:80"
APP_NAME = "ecommerce-app"
IMAGE_NAME = "ecommerce-backend"
IMAGE_TAG = "${REGISTRY}/library/${IMAGE_NAME}:${env.BRANCH_NAME}-${env.BUILD_NUMBER}"
NAMESPACE = "ecommerce"
}
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Build Image') {
steps {
script {
// 1. Create the directories just in case
sh "mkdir -p /run/buildkit /run/buildkit-default"
sh "chmod 777 /run/buildkit /run/buildkit-default"
// 2. Start buildkitd with the SPECIFIC socket name nerdctl is looking for
sh """
if ! pgrep buildkitd > /dev/null; then
echo "Starting buildkitd on the default socket..."
buildkitd --addr unix:///run/buildkit/buildkitd.sock --addr unix:///run/buildkit-default/buildkitd.sock > /tmp/buildkitd.log 2>&1 &
sleep 15
fi
"""
// 3. Set the environment variable for this specific command
// This tells the nerdctl/docker wrapper exactly where to look.
sh "export BUILDKIT_HOST=unix:///run/buildkit/buildkitd.sock && docker build -t ${IMAGE_TAG} ."
}
}
}
stage('Push to Harbor') {
steps {
script {
withCredentials([usernamePassword(credentialsId: 'harbor-creds', passwordVariable: 'PASS', usernameVariable: 'USER')]) {
sh "docker login ${REGISTRY} -u ${USER} -p ${PASS}"
sh "docker push ${IMAGE_TAG}"
}
}
}
}
stage('Inject to K8s Cache') {
steps {
script {
// Force the image into the local containerd store
sh "docker save ${IMAGE_TAG} | sudo ctr -n k8s.io images import -"
}
}
}
stage('Deploy to K8s') {
steps {
script {
withCredentials([file(credentialsId: 'k8s-config', variable: 'KUBECONFIG')]) {
sh """
kubectl --kubeconfig=${KUBECONFIG} patch deployment ${APP_NAME} -n ${NAMESPACE} --patch \
'{"spec": {"template": {"spec": {"containers": [{"name": "${APP_NAME}", "image": "${IMAGE_TAG}", "imagePullPolicy": "Never"}]}}}}'
"""
sh "kubectl --kubeconfig=${KUBECONFIG} rollout status deployment/${APP_NAME} -n ${NAMESPACE}"
}
}
}
}
}
post {
always {
// Cleanup to save space on the agent
sh "docker rmi ${IMAGE_TAG} || true"
}
}
}