-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7add37d
commit c7653da
Showing
2 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
name: TFRS New Pipeline Prod | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
GIT_URL: https://github.com/bcgov/tfrs.git | ||
TEST_NAMESPACE: ${{ secrets.OPENSHIFT_NAMESPACE_PLATE }}-test | ||
PROD_NAMESPACE: ${{ secrets.OPENSHIFT_NAMESPACE_PLATE }}-prod | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
get-build-suffix: | ||
name: Find Test deployment build suffix | ||
runs-on: ubuntu-latest | ||
|
||
outputs: | ||
BUILD_SUFFIX: ${{ steps.get-build-suffix.outputs.BUILD_SUFFIX }} | ||
|
||
steps: | ||
- name: Log in to Openshift | ||
uses: redhat-actions/[email protected] | ||
with: | ||
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }} | ||
openshift_token: ${{ secrets.OPENSHIFT_TOKEN }} | ||
insecure_skip_tls_verify: true | ||
namespace: ${{ env.TEST_NAMESPACE }} | ||
|
||
- id: get-build-suffix | ||
run: | | ||
build_suffix=$(oc -n ${{ env.TEST_NAMESPACE }} describe deployment/tfrs-frontend-test | grep Image | awk -F ':' '{print $NF}') | ||
echo "Validating $build_suffix" | ||
if [[ "$build_suffix" =~ ^[0-9]+\.[0-9]+\.[0-9]$ ]]; then | ||
echo "Build suffix $build_suffix format is valid." | ||
echo "BUILD_SUFFIX=$build_suffix" >> $GITHUB_OUTPUT | ||
else | ||
echo "Error: Build suffix $build_suffix format is invalid!" | ||
exit 1 | ||
fi | ||
# deploy: | ||
# name: Deploy on Prod | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 60 | ||
# needs: [get-build-suffix] | ||
|
||
# env: | ||
# BUILD_SUFFIX: ${{ needs.get-build-suffix.outputs.BUILD_SUFFIX }} | ||
|
||
# steps: | ||
# - name: Checkout Manifest repository | ||
# uses: actions/[email protected] | ||
# with: | ||
# repository: bcgov-c/tenant-gitops-0ab226 | ||
# ref: main | ||
# ssh-key: ${{ secrets.MANIFEST_REPO_DEPLOY_KEY }} | ||
|
||
# - name: Update tags | ||
# uses: mikefarah/[email protected] | ||
# with: | ||
# cmd: | | ||
# yq -i '.image.tag = "${{ env.BUILD_SUFFIX }}"' tfrs/charts/backend/values-prod.yaml | ||
# yq -i '.image.tag = "${{ env.BUILD_SUFFIX }}"' tfrs/charts/frontend/values-prod.yaml | ||
# yq -i '.image.tag = "${{ env.BUILD_SUFFIX }}"' tfrs/charts/notification-server/values-prod.yaml | ||
# yq -i '.image.tag = "${{ env.BUILD_SUFFIX }}"' tfrs/charts/celery/values-prod.yaml | ||
# yq -i '.image.tag = "${{ env.BUILD_SUFFIX }}"' tfrs/charts/scan-coordinator/values-prod.yaml | ||
# yq -i '.image.tag = "${{ env.BUILD_SUFFIX }}"' tfrs/charts/scan-handler/values-prod.yaml | ||
|
||
# - name: GitHub Commit & Push | ||
# shell: bash {0} | ||
# run: | | ||
# git config --global user.email "[email protected]" | ||
# git config --global user.name "GitHub Actions" | ||
# git add -A | ||
# git commit -m "Update the image tag to ${{ env.BUILD_SUFFIX }} on Prod" | ||
# git push | ||
|
||
# - name: Log in to Openshift | ||
# uses: redhat-actions/[email protected] | ||
# with: | ||
# openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }} | ||
# openshift_token: ${{ secrets.OPENSHIFT_TOKEN }} | ||
# insecure_skip_tls_verify: true | ||
# namespace: ${{ env.TEST_NAMESPACE }} | ||
|
||
# - name: Tag and deploy to Prod | ||
# run: | | ||
# helm -n ${{ env.PROD_NAMESPACE }} list | ||
# oc tag ${{ env.TEST_NAMESPACE }}/tfrs-backend:${{ env.BUILD_SUFFIX }} ${{ env.PROD_NAMESPACE }}/tfrs-backend:${{ env.BUILD_SUFFIX }} | ||
# oc tag ${{ env.TEST_NAMESPACE }}/tfrs-frontend:${{ env.BUILD_SUFFIX }} ${{ env.PROD_NAMESPACE }}/tfrs-frontend:${{ env.BUILD_SUFFIX }} | ||
# oc tag ${{ env.TEST_NAMESPACE }}/tfrs-celery:${{ env.BUILD_SUFFIX }} ${{ env.PROD_NAMESPACE }}/tfrs-celery:${{ env.BUILD_SUFFIX }} | ||
# oc tag ${{ env.TEST_NAMESPACE }}/tfrs-scan-coordinator:${{ env.BUILD_SUFFIX }} ${{ env.PROD_NAMESPACE }}/tfrs-scan-coordinator:${{ env.BUILD_SUFFIX }} | ||
# oc tag ${{ env.TEST_NAMESPACE }}/tfrs-scan-handler:${{ env.BUILD_SUFFIX }} ${{ env.PROD_NAMESPACE }}/tfrs-scan-handler:${{ env.BUILD_SUFFIX }} | ||
# oc tag ${{ env.TEST_NAMESPACE }}/tfrs-notification-server:${{ env.BUILD_SUFFIX }} ${{ env.PROD_NAMESPACE }}/tfrs-notification-server:${{ env.BUILD_SUFFIX }} | ||
|
||
# - name: Helm Deployment | ||
# run: | | ||
# cd tfrs/charts/backend | ||
# helm -n ${{ env.PROD_NAMESPACE }} -f ./values-prod.yaml upgrade --install tfrs-backend-prod . \ | ||
# --set podAnnotations.rolloutTriggered="A$(date +%s)E" | ||
# cd ../frontend | ||
# helm -n ${{ env.PROD_NAMESPACE }} -f ./values-prod.yaml upgrade --install tfrs-frontend-prod . \ | ||
# --set podAnnotations.rolloutTriggered="A$(date +%s)E" | ||
# cd ../notification-server | ||
# helm -n ${{ env.PROD_NAMESPACE }} -f ./values-prod.yaml upgrade --install tfrs-notification-server-prod . \ | ||
# --set podAnnotations.rolloutTriggered="A$(date +%s)E" | ||
# cd ../celery | ||
# helm -n ${{ env.PROD_NAMESPACE }} -f ./values-prod.yaml upgrade --install tfrs-celery-prod . \ | ||
# --set podAnnotations.rolloutTriggered="A$(date +%s)E" | ||
# cd ../scan-coordinator | ||
# helm -n ${{ env.PROD_NAMESPACE }} -f ./values-prod.yaml upgrade --install tfrs-scan-coordinator-prod . \ | ||
# --set podAnnotations.rolloutTriggered="A$(date +%s)E" | ||
# cd ../scan-handler | ||
# helm -n ${{ env.PROD_NAMESPACE }} -f ./values-prod.yaml upgrade --install tfrs-scan-handler-prod . \ | ||
# --set podAnnotations.rolloutTriggered="A$(date +%s)E" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters