From 6fccf05668d947f6549def6e130146a4b1f4d985 Mon Sep 17 00:00:00 2001 From: Dinush Chathurya Date: Wed, 7 Jun 2023 15:37:28 +0530 Subject: [PATCH] feat: Initialize the project --- .../deploy-to-minikube-github-actions.yaml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy-to-minikube-github-actions.yaml b/.github/workflows/deploy-to-minikube-github-actions.yaml index 7940cd4..d7eb388 100644 --- a/.github/workflows/deploy-to-minikube-github-actions.yaml +++ b/.github/workflows/deploy-to-minikube-github-actions.yaml @@ -23,21 +23,11 @@ jobs: - name: Deploy to Minikube run: kubectl apply -f k8s-node-app.yaml - - hold-workflow: - runs-on: ubuntu-latest - needs: job1 - steps: - - name: Hold Workflow - run: | - echo "Workflow is on hold. Waiting for manual finish..." - sleep infinity - - test-service-urls: - runs-on: ubuntu-latest - needs: hold-workflow - steps: - name: Test service URLs run: | minikube service list minikube service nodejs-app --url + echo "------------------opening the service------------------" + curl $(minikube service nodejs-app --url) + +