From 59de94824dc8373ff17f45f7f8970397d29b8e8e Mon Sep 17 00:00:00 2001 From: ddjain Date: Wed, 3 Apr 2024 12:10:33 +0530 Subject: [PATCH] Updated jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c9a23fe7620..4cd6f005fff 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,19 +37,19 @@ pipeline { } stage('Deploy') { steps { - echo 'Deploying hapi-fhir-jpaserver-r4 in qa' + echo 'Deploying to QA' sh 'docker run -v /var/run/docker.sock:/var/run/docker.sock $AWS_ENV $GIT_ENV cicd deploy hapi-fhir-jpaserver-r4 qa $GIT_COMMIT' } } stage('Wait') { steps { - echo 'Waiting for hapi-fhir-jpaserver-r4 service to reach steady state' + echo 'Waiting for QA service to reach steady state' sh 'docker run -v /var/run/docker.sock:/var/run/docker.sock $AWS_ENV $GIT_ENV cicd wait hapi-fhir-jpaserver-r4 qa' } } stage('Healthcheck') { steps { - echo 'Checking health of hapi-fhir-jpaserver-r4 service' + echo 'Checking health of QA service' sh 'curl -m 10 https://fhir4-qa.elimuinformatics.com/actuator/health' } }