Skip to content

Commit

Permalink
fix: remove redundant git clone command and add docker system prune i…
Browse files Browse the repository at this point in the history
…n cleanup stage of Jenkinsfile
  • Loading branch information
Ganthepro committed Dec 26, 2024
1 parent c0095cf commit cd2a2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ pipeline {
sh "cd edusaig-manifests && git add . && git commit -m 'Update tag to $BUILD_NUMBER' && git push"
// ใช้คำสั่ง git clone เพื่อทำการ clone โปรเจคของเรา และใช้คำสั่ง sed เพื่อทำการแก้ไขไฟล์ values.yaml ในโปรเจคของเรา
}
// ใช้คำสั่ง git clone เพื่อทำการ clone โปรเจคของเรา
}
}
}
Expand All @@ -58,6 +57,7 @@ pipeline {
always {
sh "docker rmi $DOCKER_CREDENTIALS_USR/edusaig:$BUILD_NUMBER"
sh "docker rmi registry.hub.docker.com/$DOCKER_CREDENTIALS_USR/edusaig:$BUILD_NUMBER"
sh "echo y | docker system prune -a"
sh "rm -rf edusaig-manifests"
// ใช้คำสั่ง docker rmi เพื่อทำการลบ image ที่เรา build และ push ไปยัง Docker Hub
}
Expand Down

0 comments on commit cd2a2cd

Please sign in to comment.