From 1fd195dc1117b5cd7aeef0b15cba9839c20b649e Mon Sep 17 00:00:00 2001 From: Abhimanyu Babbar Date: Mon, 26 Aug 2024 22:52:01 +0530 Subject: [PATCH] chore: minor fixes --- .github/workflows/ut-tests.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ut-tests.yml b/.github/workflows/ut-tests.yml index a96030c552..b825bdb9d3 100644 --- a/.github/workflows/ut-tests.yml +++ b/.github/workflows/ut-tests.yml @@ -29,12 +29,6 @@ jobs: with: fetch-depth: 1 - - name: Login to Dockerhub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Setup Node uses: actions/setup-node@v4.0.3 with: @@ -81,8 +75,8 @@ jobs: - name: Patch default service account in openfaas-fn run: 'kubectl patch serviceaccount default -n openfaas-fn -p ''{"imagePullSecrets": [{"name": "regcred"}]}''' - - name: Patch Gateway Deployment with ImagePullSecret - run: 'kubectl patch deployment gateway -n openfaas -p=''{"spec": {"template": {"spec": {"imagePullSecrets": [{"name": "regcred"}]}}}}''' + - name: Patch deployment "gateway" + run: 'kubectl patch deployment gateway -n openfaas -p ''{"spec": {"template": {"spec": {"imagePullSecrets": [{"name": "regcred"}]}}}}''' - name: Wait for deployment "gateway" rollout run: kubectl rollout status deploy/gateway --timeout 120s -n openfaas