diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml deleted file mode 100644 index 808ba75..0000000 --- a/.github/workflows/pre-commit.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: pre-commit - -on: - pull_request: - push: - branches: - - "**" - tags-ignore: - - '**' - workflow_dispatch: - -jobs: - pre-commit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 - - uses: actions/setup-node@v4 - with: - node-version: 18 - - uses: pre-commit/action@v3.0.0 - with: - extra_args: --all-files --show-diff-on-failure diff --git a/.github/workflows/publish-trigger.yml b/.github/workflows/publish-trigger.yml index e3cfa14..adb0192 100644 --- a/.github/workflows/publish-trigger.yml +++ b/.github/workflows/publish-trigger.yml @@ -2,8 +2,6 @@ name: Publish OpenG2P Example Bank Helm charts on: push: - tags: - - '**' branches-ignore: - develop - main diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml new file mode 100644 index 0000000..b35ef19 --- /dev/null +++ b/.github/workflows/tag.yml @@ -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 }} diff --git a/charts/openg2p-g2p-bridge-example-bank/values.yaml b/charts/openg2p-g2p-bridge-example-bank/values.yaml index 6555720..4c25d99 100644 --- a/charts/openg2p-g2p-bridge-example-bank/values.yaml +++ b/charts/openg2p-g2p-bridge-example-bank/values.yaml @@ -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: @@ -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: @@ -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