-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from catenax-ng/feature/CXAR-919-quality-gates
feat:cxar-919 quality gates
- Loading branch information
Showing
53 changed files
with
585 additions
and
405 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,17 +21,36 @@ name: Lint and Test Charts | |
|
||
# Run chart linting and tests on each pull request | ||
on: | ||
# Runs automatically on pushes and PRs into main and release branches, if changes to the chart have been performed | ||
push: | ||
branches: | ||
- main | ||
- releases | ||
- 'releases/**' | ||
paths: | ||
- .github/workflows/** | ||
- charts/** | ||
pull_request: | ||
branches: | ||
- main | ||
- 'releases/**' | ||
paths: | ||
- .github/workflows/** | ||
- charts/** | ||
# Can be triggered to investigate upgrades | ||
workflow_dispatch: | ||
inputs: | ||
node_image: | ||
description: 'kindest/node image for k8s kind cluster' | ||
# k8s version from 3.1 release as default | ||
default: 'kindest/node:v1.24.6' | ||
required: false | ||
type: string | ||
upgrade_from: | ||
description: 'chart version to upgrade from' | ||
# chart version from 3.2 release as default | ||
default: 'x.x.x' | ||
required: false | ||
type: string | ||
|
||
jobs: | ||
lint-test: | ||
|
@@ -47,14 +66,18 @@ jobs: | |
with: | ||
version: v3.10.3 | ||
|
||
# Setup python as a prerequisite for chart linting | ||
- uses: ./.github/actions/setup-java | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.7 | ||
python-version: 3.9 | ||
|
||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
- name: Run chart-testing (lint) | ||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --config charts/config/chart-testing-config.yaml | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
|
@@ -63,17 +86,53 @@ jobs: | |
echo "CHART_CHANGED=true" >> $GITHUB_ENV | ||
fi | ||
# run chart linting | ||
- name: Run chart-testing (lint) | ||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --config charts/config/chart-testing-config.yaml | ||
|
||
# Preparing a kind cluster to install and test charts on | ||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
if: ${{ env.CHART_CHANGED == 'true' }} | ||
uses: container-tools/kind-action@v1 | ||
with: | ||
# upgrade version, default (v0.17.0) uses node image v1.21.1 and doesn't work with more recent node image versions | ||
version: v0.19.0 | ||
# default value for event_name != workflow_dispatch | ||
node_image: ${{ github.event.inputs.node_image || 'kindest/node:v1.24.6' }} | ||
if: github.event_name != 'pull_request' || env.CHART_CHANGED == 'true' | ||
|
||
- name: Build Java/Docker via Maven | ||
run: | | ||
./mvnw -s settings.xml deploy -Drepo=kind-registry:5000/tractusx/ -Dmaven.deploy.skip -DskipTests -Pwith-docker-image | ||
if: github.event_name != 'pull_request' || env.CHART_CHANGED == 'true' | ||
|
||
# install the chart to the kind cluster and run helm test | ||
# define charts to test with the --charts parameter | ||
- name: Run chart-testing (install) | ||
run: ct install --charts charts/conforming-agent,charts/provisioning-agent,charts/remoting-agent --config charts/config/chart-testing-config.yaml | ||
if: ${{ env.CHART_CHANGED == 'true' }} | ||
run: ct install --charts charts/conforming-agent,charts/provisioning-agent,charts/remoting-agent --config charts/config/chart-testing-config.yaml --helm-extra-set-args="--set=image.registry=kind-registry:5000/" | ||
if: github.event_name != 'pull_request' || env.CHART_CHANGED == 'true' | ||
|
||
# Upgrade the released chart version with the locally available chart | ||
# default value for event_name != workflow_dispatch | ||
- name: Run helm upgrade on conforming agent | ||
run: | | ||
helm repo add tractusx-dev https://eclipse-tractusx.github.io/charts/dev | ||
helm install conforming tractusx-dev/conforming-agent --version ${{ github.event.inputs.upgrade_from }} --set=image.registry=kind-registry:5000/ | ||
helm dependency update charts/conforming-agent | ||
helm upgrade conforming charts/conforming-agent | ||
if: (github.event_name != 'pull_request' || env.CHART_CHANGED == 'true') && github.event.inputs.upgrade_from != '' && github.event.inputs.upgrade_from != 'x.x.x' | ||
|
||
# Upgrade the released chart version with the locally available chart | ||
# default value for event_name != workflow_dispatch | ||
- name: Run helm upgrade on provisioning agent | ||
run: | | ||
helm repo add tractusx-dev https://eclipse-tractusx.github.io/charts/dev | ||
helm install provisioning tractusx-dev/provisioning-agent --version ${{ github.event.inputs.upgrade_from }} --set=image.registry=kind-registry:5000/ | ||
helm dependency update charts/provisioning-agent | ||
helm upgrade provisioning charts/provisioning-agent | ||
if: (github.event_name != 'pull_request' || env.CHART_CHANGED == 'true') && github.event.inputs.upgrade_from != '' && github.event.inputs.upgrade_from != 'x.x.x' | ||
|
||
# Upgrade the released chart version with the locally available chart | ||
# default value for event_name != workflow_dispatch | ||
- name: Run helm upgrade on remoting agent | ||
run: | | ||
helm repo add tractusx-dev https://eclipse-tractusx.github.io/charts/dev | ||
helm install remoting tractusx-dev/provisioning-agent --version ${{ github.event.inputs.upgrade_from }} --set=image.registry=kind-registry:5000/ | ||
helm dependency update charts/remoting-agent | ||
helm upgrade remoting charts/remoting-agent | ||
if: (github.event_name != 'pull_request' || env.CHART_CHANGED == 'true') && github.event.inputs.upgrade_from != '' && github.event.inputs.upgrade_from != 'x.x.x' |
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
Oops, something went wrong.