generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
44 lines (40 loc) · 1.17 KB
/
uat.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Deploy UAT
on:
workflow_dispatch:
inputs:
environment:
description: "Deployment environment - test --> vault secrets"
required: true
type: choice
options: ["test","tools"]
default: "test"
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
uninstall-uat:
name: Uninstall (uat)
environment: ${{inputs.environment}}
runs-on: ubuntu-22.04
steps:
- name: uninstall
run: |
oc login --token=${{ secrets.oc_token }} --server=${{ secrets.oc_server }}
oc project ${{ secrets.OC_NAMESPACE }} # Safeguard!
helm uninstall onroutebc-uat || true
deploy-uat:
name: Deploys (UAT)
uses: ./.github/workflows/deploy.yml
needs: uninstall-uat
secrets: inherit
with:
autoscaling: true
environment: ${{inputs.environment}}
tag: "test"
release: "uat"
params: |
--set-string global.license='c28f0c' \
--set-string global.zone='test' \
--set-string global.vault.role='nonprod' \
--set-string global.vault.zone='uat' \
--set-string global.pr_num='${{ needs.vars.outputs.pr }}' \