Skip to content

Merge pull request #3382 from bcgov/feat/3372 #1

Merge pull request #3382 from bcgov/feat/3372

Merge pull request #3382 from bcgov/feat/3372 #1

Workflow file for this run

name: 05.Deploy Security Dashboard
on:
push:
branches:
- main
paths:
- .github/workflows/deploy-tools.yml
- helm/secdash/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-22.04
timeout-minutes: 5
permissions:
contents: read
environment:
name: tools
url: https://secdash-airflow.apps.silver.devops.gov.bc.ca
steps:
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: Authenticate and set context
uses: redhat-actions/oc-login@dfbd9912672664f9df2023c1c16e07bcf306043c
with:
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }}
openshift_token: ${{ secrets.OPENSHIFT_TOKEN }}
namespace: ${{ vars.OPENSHIFT_NAMESPACE }}
insecure_skip_tls_verify: true
- name: Deploy apps with Helm chart
run: |
make upgrade \
NAMESPACE=${{ vars.OPENSHIFT_NAMESPACE }}
working-directory: ./helm/secdash