-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Helm Chart: Reduce number of failed pods from jobs (#657)
* feat: reduce failedJobsHistoryLimit to 1 * feat: reduce backoffLimit to 0 * ci: simplify publish pipeline * ci: rename unit test job * fix: add service account to all components * chore: formatting * chore: remove extractVersionFromGitTag.js
- Loading branch information
Showing
8 changed files
with
32 additions
and
95 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,14 @@ on: | |
push: | ||
tags: "*" | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
jobs: | ||
publish-admin-cli: | ||
name: Publish Admin CLI Container Image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -22,11 +23,6 @@ jobs: | |
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract version from git tag | ||
id: extract-version-from-git-tag | ||
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.js)" >> $GITHUB_OUTPUT | ||
env: | ||
GIT_TAG: ${{ github.ref_name }} | ||
- name: Log in to Docker Hub for accessing the cloud builder | ||
uses: docker/login-action@v3 | ||
with: | ||
|
@@ -41,15 +37,12 @@ jobs: | |
- name: Build and Push Container Image | ||
run: ./.ci/acli/buildContainerImage.js | ||
env: | ||
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
TAG: ${{ github.ref_name }} | ||
PUSH: 1 | ||
|
||
publish-admin-ui: | ||
name: Publish Admin UI Container Image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -61,11 +54,6 @@ jobs: | |
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract version from git tag | ||
id: extract-version-from-git-tag | ||
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.js)" >> $GITHUB_OUTPUT | ||
env: | ||
GIT_TAG: ${{ github.ref_name }} | ||
- name: Log in to Docker Hub for accessing the cloud builder | ||
uses: docker/login-action@v3 | ||
with: | ||
|
@@ -80,15 +68,12 @@ jobs: | |
- name: Build and Push Container Image | ||
run: ./.ci/aui/buildContainerImage.js | ||
env: | ||
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
TAG: ${{ github.ref_name }} | ||
PUSH: 1 | ||
|
||
publish-consumer-api: | ||
name: Publish Consumer API Container Image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -100,11 +85,6 @@ jobs: | |
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract version from git tag | ||
id: extract-version-from-git-tag | ||
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.js)" >> $GITHUB_OUTPUT | ||
env: | ||
GIT_TAG: ${{ github.ref_name }} | ||
- name: Log in to Docker Hub for accessing the cloud builder | ||
uses: docker/login-action@v3 | ||
with: | ||
|
@@ -119,15 +99,12 @@ jobs: | |
- name: Build and Push Container Image | ||
run: ./.ci/capi/buildContainerImage.js | ||
env: | ||
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
TAG: ${{ github.ref_name }} | ||
PUSH: 1 | ||
|
||
publish-event-handler: | ||
name: Publish Event Handler Service Container Image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -139,11 +116,6 @@ jobs: | |
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract version from git tag | ||
id: extract-version-from-git-tag | ||
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.js)" >> $GITHUB_OUTPUT | ||
env: | ||
GIT_TAG: ${{ github.ref_name }} | ||
- name: Log in to Docker Hub for accessing the cloud builder | ||
uses: docker/login-action@v3 | ||
with: | ||
|
@@ -158,31 +130,17 @@ jobs: | |
- name: Build and Push Container Image | ||
run: ./.ci/eh/buildContainerImage.js | ||
env: | ||
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
TAG: ${{ github.ref_name }} | ||
PUSH: 1 | ||
|
||
publish-database-migrator: | ||
name: Publish Database Migrator Container Image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install script dependencies | ||
run: npm install --prefix ./.ci | ||
- name: Docker Login | ||
uses: docker/[email protected] | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract version from git tag | ||
id: extract-version-from-git-tag | ||
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.js)" >> $GITHUB_OUTPUT | ||
env: | ||
GIT_TAG: ${{ github.ref_name }} | ||
- name: Log in to Docker Hub for accessing the cloud builder | ||
uses: docker/login-action@v3 | ||
with: | ||
|
@@ -197,15 +155,12 @@ jobs: | |
- name: Build and Push Container Image | ||
run: ./.ci/dbm/buildContainerImage.js | ||
env: | ||
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
TAG: ${{ github.ref_name }} | ||
PUSH: 1 | ||
|
||
publish-identity-deletion-jobs: | ||
name: Publish Identity Deletion Jobs Image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -217,11 +172,6 @@ jobs: | |
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract version from git tag | ||
id: extract-version-from-git-tag | ||
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.js)" >> $GITHUB_OUTPUT | ||
env: | ||
GIT_TAG: ${{ github.ref_name }} | ||
- name: Log in to Docker Hub for accessing the cloud builder | ||
uses: docker/login-action@v3 | ||
with: | ||
|
@@ -236,15 +186,12 @@ jobs: | |
- name: Build and Push Container Image | ||
run: ./.ci/idj/buildContainerImage.js | ||
env: | ||
TAG: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
TAG: ${{ github.ref_name }} | ||
PUSH: 1 | ||
|
||
publish-helm-chart: | ||
name: Publish Helm Chart | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
needs: | ||
- publish-admin-cli | ||
- publish-admin-ui | ||
|
@@ -259,16 +206,11 @@ jobs: | |
env: | ||
USER: ${{ github.actor }} | ||
PASSWORD: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract version from git tag | ||
id: extract-version-from-git-tag | ||
run: echo "VERSION=$(./.ci/extractVersionFromGitTag.js)" >> $GITHUB_OUTPUT | ||
env: | ||
GIT_TAG: ${{ github.ref_name }} | ||
- name: Build Helm Chart | ||
run: ./.ci/helm/buildChart.js | ||
env: | ||
VERSION: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
VERSION: ${{ github.ref_name }} | ||
- name: Push Helm Chart | ||
run: ./.ci/helm/pushChart.js | ||
env: | ||
VERSION: ${{ steps.extract-version-from-git-tag.outputs.VERSION }} | ||
VERSION: ${{ github.ref_name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters