Skip to content

Commit

Permalink
Merge pull request #8 from OpenG2P/1.0
Browse files Browse the repository at this point in the history
1.0
  • Loading branch information
venky-ganapathy authored Dec 6, 2024
2 parents 9a0b487 + c26d2b3 commit 234b109
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 31 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/pre-commit.yml

This file was deleted.

6 changes: 2 additions & 4 deletions .github/workflows/publish-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Publish OpenG2P Example Bank Helm charts

on:
push:
tags:
- '**'
branches-ignore:
- develop
- main
Expand Down Expand Up @@ -68,7 +66,7 @@ jobs:
echo "SKIP=TRUE" >> $GITHUB_ENV
fi
- name: Upload tar as Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: charts
path: ./*.tgz
Expand All @@ -83,7 +81,7 @@ jobs:
if: env.SKIP != 'TRUE'

- name: Download tar from Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: charts
path: ./
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tag the repo
on:
workflow_dispatch:
inputs:
new-tag:
description: Tag in "vN.N.N" format
required: true
type: string
previous-tag:
description: Previous tag. "None" if no previous tag
required: true
type: string
default: latest
jobs:
tag-repo:
uses: openg2p/openg2p-packaging/.github/workflows/tag.yml@main
with:
new-tag: ${{ inputs.new-tag }}
previous-tag: ${{ inputs.previous-tag }}
secrets:
OPENG2P_BOT_GITHUB_PAT: ${{ secrets.OPENG2P_BOT_GITHUB_PAT }}
16 changes: 12 additions & 4 deletions charts/openg2p-g2p-bridge-example-bank/values.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
global:
exampleBankHostname: example-bank.sandbox.openg2p.net
exampleBankHostname: example-bank.explore.openg2p.org

openg2p-g2p-bridge-example-bank-api:
enabled: true
image:
registry: docker.io
tag: '1.0.2'
common:
enabled: false
postgresql:
Expand All @@ -22,6 +25,9 @@ openg2p-g2p-bridge-example-bank-api:

openg2p-g2p-bridge-example-bank-celery:
enabled: true
image:
registry: docker.io
tag: '1.0.2'
common:
enabled: false
postgresql:
Expand Down Expand Up @@ -53,8 +59,10 @@ postgresql:
max_replication_slots = 10
redis:
cluster:
enabled: false
replicaCount: 1
enabled: true
architecture: standalone
master:
persistence:
enabled: false
auth:
enabled: false

0 comments on commit 234b109

Please sign in to comment.