From b00ca3638f9603b099caf098729d7d96a8fc90e8 Mon Sep 17 00:00:00 2001 From: Trevor Richards Date: Mon, 19 Aug 2024 12:02:49 -0700 Subject: [PATCH] fix: openshift/environment references --- .github/workflows/deploy-to-openshift-backend-uat.yml | 2 +- .github/workflows/deploy-to-openshift-frontend-uat.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-to-openshift-backend-uat.yml b/.github/workflows/deploy-to-openshift-backend-uat.yml index dd32c7ed8..e0fbd39cc 100644 --- a/.github/workflows/deploy-to-openshift-backend-uat.yml +++ b/.github/workflows/deploy-to-openshift-backend-uat.yml @@ -143,7 +143,7 @@ jobs: # Process update-configmap curl -s https://raw.githubusercontent.com/bcgov/${{ env.REPO_NAME }}/${{ env.BRANCH }}/tools/config/update-configmap.sh \ | bash /dev/stdin \ - test \ + uat \ ${{ env.APP_NAME }} \ ${{ env.NAMESPACE }} \ ${{ env.SPLUNK_TOKEN }} diff --git a/.github/workflows/deploy-to-openshift-frontend-uat.yml b/.github/workflows/deploy-to-openshift-frontend-uat.yml index 1031711eb..fd12cbd09 100644 --- a/.github/workflows/deploy-to-openshift-frontend-uat.yml +++ b/.github/workflows/deploy-to-openshift-frontend-uat.yml @@ -122,7 +122,7 @@ jobs: # Create tag for TEST env from DEV env image oc tag \ ${{ env.NAMESPACE }}-dev/${{ env.REPO_NAME }}-${{ env.IMAGE_NAME }}-${{ env.BRANCH }}:${{ steps.get-latest-tag.outputs.tag }} \ - ${{ env.NAMESPACE }}-uat/${{ env.REPO_NAME }}-${{ env.IMAGE_NAME }}-${{ env.BRANCH }}:${{ steps.get-latest-tag.outputs.tag }} + ${{ env.NAMESPACE }}-test/${{ env.REPO_NAME }}-${{ env.IMAGE_NAME }}-${{ env.BRANCH }}:${{ steps.get-latest-tag.outputs.tag }} # Process and apply deployment template oc process \