Skip to content

Commit

Permalink
Merge pull request eclipse-tractusx#46 from bci-oss/feature/create-he…
Browse files Browse the repository at this point in the history
…lm-test

Feat: Added Helm test
  • Loading branch information
tunacicek authored Aug 15, 2023
2 parents a728faf + 2deae5f commit 77ac975
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 2 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/helm-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Copyright (c) 2023 Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
# Copyright (c) 2023 Contributors to the Eclipse Foundation

# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.

# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

# SPDX-License-Identifier: Apache-2.0
---

name: Lint and Test Charts

on:
pull_request:
workflow_dispatch:

jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Kubernetes KinD Cluster
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' }}

- name: Build image
uses: docker/build-push-action@v3
with:
context: .
file: ./backend/Dockerfile
push: true
tags: kind-registry:5000/sldt-discovery-finder:testing

- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.9.3

- uses: actions/setup-python@v4
with:
python-version: "3.9"
check-latest: true

- name: Set up chart-testing
uses: helm/chart-testing-action@v2.3.1

- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Run chart-testing (lint)
run: ct lint --validate-maintainers=false --target-branch ${{ github.event.repository.default_branch }} --config charts/chart-testing-config.yaml

- name: Run chart-testing (install)
run: ct install --charts charts/discoveryfinder --config charts/chart-testing-config.yaml
if: steps.list-changed.outputs.changed == 'true'
3 changes: 3 additions & 0 deletions charts/chart-testing-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
validate-maintainers: false
chart-repos:
- bitnami=https://charts.bitnami.com/bitnami
2 changes: 1 addition & 1 deletion charts/discoveryfinder/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ home: https://eclipse-tractusx.github.io/
sources:
- https://github.com/eclipse-tractusx/sldt-discovery-finder
type: application
version: 0.1.6
version: 0.1.7
appVersion: 0.2.3-M1

dependencies:
Expand Down
2 changes: 1 addition & 1 deletion charts/discoveryfinder/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ postgresql:
auth:
username: catenax
password: password
database: discoveryfinder
database: discoveryfinder

0 comments on commit 77ac975

Please sign in to comment.