From cd2a2cdfb4d50abd6102a686d4d8083c1dd71d3b Mon Sep 17 00:00:00 2001 From: ganthepro Date: Thu, 26 Dec 2024 19:49:15 +0700 Subject: [PATCH] fix: remove redundant git clone command and add docker system prune in cleanup stage of Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 13d6023..5444bbe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 โปรเจคของเรา } } } @@ -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 }