Skip to content

Commit

Permalink
Tracking pull request to merge release-2.16.0 to master (#2836)
Browse files Browse the repository at this point in the history
* add new minio instance

* update minio settings

* fix: 2023 option not available - #2838 (#2840)

* fix: 2023 option not available

* chore: revert formatting

* add new minio chart

* update backupcontainer schedule

---------

Co-authored-by: kevin-hashimoto <[email protected]>
  • Loading branch information
kuanfandevops and kevin-hashimoto committed Mar 4, 2024
1 parent 620006b commit 8abf653
Show file tree
Hide file tree
Showing 13 changed files with 3,607 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dev-release.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## For each release, the value of name, branches, RELEASE_NAME and PR_NUMBER need to be adjusted accordingly
## For each release, update lib/config.js: version and releaseBranch

name: TFRS Dev release-2.15.0
name: TFRS Dev release-2.16.0

on:
push:
branches: [ release-2.15.0 ]
branches: [ release-2.16.0 ]
paths:
- frontend/**
- backend/**
Expand All @@ -15,8 +15,8 @@ on:
env:
## The pull request number of the Tracking pull request to merge the release branch to main
## Also remember to update the version in .pipeline/lib/config.js
PR_NUMBER: 2828
RELEASE_NAME: release-2.15.0
PR_NUMBER: 2836
RELEASE_NAME: release-2.16.0

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tfrs-release.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## For each release, the value of name, branches, RELEASE_NAME and PR_NUMBER need to be adjusted accordingly
## For each release, update lib/config.js: version and releaseBranch

name: TFRS release-2.15.0
name: TFRS release-2.16.0

on:
workflow_dispatch:
Expand All @@ -10,8 +10,8 @@ on:
env:
## The pull request number of the Tracking pull request to merge the release branch to main
## Also remember to update the version in .pipeline/lib/config.js
PR_NUMBER: 2828
RELEASE_NAME: release-2.15.0
PR_NUMBER: 2836
RELEASE_NAME: release-2.16.0

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .pipeline/lib/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';
const options= require('@bcgov/pipeline-cli').Util.parseArguments()
const changeId = options.pr //aka pull-request
const version = '2.15.0'
const version = '2.16.0'
const name = 'tfrs'
const ocpName = 'apps.silver.devops'

Expand All @@ -13,7 +13,7 @@ options.git.repository='tfrs'
const phases = {
build: { namespace:'0ab226-tools' , name: `${name}`, phase: 'build' , changeId:changeId, suffix: `-build-${changeId}` ,
instance: `${name}-build-${changeId}` , version:`${version}-${changeId}`, tag:`build-${version}-${changeId}`,
releaseBranch: 'release-2.15.0'
releaseBranch: 'release-2.16.0'
},
dev: {namespace:'0ab226-dev' , name: `${name}`, phase: 'dev' , changeId:changeId, suffix: `-dev` ,
instance: `${name}-dev` , version:`${version}`, tag:`dev-${version}`, dbServiceName: 'tfrs-spilo',
Expand Down
6 changes: 6 additions & 0 deletions charts/tfrs-minio/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Add the following two keys to tfrs-minio-[env] secret
root-user
root-password
helm -n namespace -f ./values-dev.yaml install tfrs-minio oci://registry-1.docker.io/bitnamicharts/minio --version 13.6.2
Create Opensift route tfrs-minio-console-test
Update the existing route tfrs-minio-test to use the newly created service tfrs-minio api port
Loading

0 comments on commit 8abf653

Please sign in to comment.