Skip to content

fix(helm): read the secret from correct place into Env var for backup container. #973

fix(helm): read the secret from correct place into Env var for backup container.

fix(helm): read the secret from correct place into Env var for backup container. #973

Workflow file for this run

name: PR Closed
on:
pull_request:
branches: [main]
types: [closed]
concurrency:
# PR open and close use the same group, allowing only one at a time
group: pr-${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
jobs:
# Clean up OpenShift when PR closed, no conditions
cleanup-openshift:
name: Cleanup OpenShift
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Remove OpenShift artifacts
run: |
oc login --token=${{ secrets.OC_TOKEN }} --server=${{ vars.OC_SERVER }}
oc project ${{ vars.OC_NAMESPACE }}
# Remove old build runs, build pods and deployment pods
helm uninstall --no-hooks ${{ github.event.repository.name }}-${{ github.event.number }}
# Remove Bitnami Crunchy PVCs
oc delete pvc data-${{ github.event.repository.name }}-${{ github.event.number }}-bitnami-pg-0
# If merged into main, then handle any image promotions
image-promotions:
name: Tag Images
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main'
runs-on: ubuntu-22.04
permissions:
packages: write
strategy:
matrix:
package: [migrations, backend, frontend]
timeout-minutes: 1
steps:
- uses: shrink/actions-docker-registry-tag@v3
with:
registry: ghcr.io
repository: ${{ github.repository }}/${{ matrix.package }}
target: ${{ github.event.number }}
tags: test