Update apps/demo-nginx/Jenkinsfile
This commit is contained in:
15
apps/demo-nginx/Jenkinsfile
vendored
15
apps/demo-nginx/Jenkinsfile
vendored
@@ -291,10 +291,10 @@ EOF
|
|||||||
stage('Wait for ArgoCD Sync') {
|
stage('Wait for ArgoCD Sync') {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
echo "⏳ Waiting for ArgoCD to apply Git revision..."
|
echo "⏳ Waiting for ArgoCD to apply GitOps revision..."
|
||||||
|
|
||||||
def expectedRevision = sh(
|
def expectedRevision = sh(
|
||||||
script: "git rev-parse HEAD",
|
script: "git -C k3s-gitops rev-parse HEAD",
|
||||||
returnStdout: true
|
returnStdout: true
|
||||||
).trim()
|
).trim()
|
||||||
|
|
||||||
@@ -309,19 +309,19 @@ EOF
|
|||||||
returnStdout: true
|
returnStdout: true
|
||||||
).trim()
|
).trim()
|
||||||
|
|
||||||
echo "Expected Git revision : ${expectedRevision}"
|
echo "Expected GitOps revision : ${expectedRevision}"
|
||||||
echo "ArgoCD applied revision: ${argoRevision}"
|
echo "ArgoCD applied revision : ${argoRevision}"
|
||||||
echo "ArgoCD sync status : ${syncStatus}"
|
echo "ArgoCD sync status : ${syncStatus}"
|
||||||
|
|
||||||
if (syncStatus == "Synced" && argoRevision == expectedRevision) {
|
if (syncStatus == "Synced" && argoRevision == expectedRevision) {
|
||||||
echo "✅ ArgoCD successfully applied Git revision"
|
echo "✅ ArgoCD successfully applied GitOps revision"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
sleep 10
|
sleep 10
|
||||||
}
|
}
|
||||||
|
|
||||||
error("❌ ArgoCD did not apply expected Git revision in time")
|
error("❌ ArgoCD did not apply expected GitOps revision in time")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -329,6 +329,7 @@ EOF
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
stage('Wait for Deployment') {
|
stage('Wait for Deployment') {
|
||||||
when { branch 'main' }
|
when { branch 'main' }
|
||||||
|
|||||||
Reference in New Issue
Block a user