Skip to content

Commit

Permalink
Merge pull request #382 from catenax-ng/chore/TRACEFOSS-1957-helm-tes…
Browse files Browse the repository at this point in the history
…t-backwards-compatability

chore(trg):[TRACEFOSS-1957] added helm test backward compatability
  • Loading branch information
ds-mwesener authored Jul 10, 2023
2 parents e476060 + e9a1822 commit ce7fe69
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/helm-test-backwards-compatability.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# 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: Test k8s version compatability

on:
workflow_dispatch:
inputs:
node_image_latest:
description: 'First version of kindest/node image for k8s kind cluster'
default: 'kindest/node:v1.27.3'
required: false
type: string
node_image_second_latest:
description: 'Second version of kindest/node image for k8s kind cluster'
default: 'kindest/node:v1.26.6'
required: false
type: string
node_image_third_latest:
description: 'Third version of kindest/node image for k8s kind cluster'
default: 'kindest/node:v1.25.11'
required: false
type: string

jobs:
test-latest:
uses: ./.github/workflows/helm-test.yaml
with:
node_image: ${{ github.event.inputs.node_image_latest || 'kindest/node:v1.27.3' }}

test-second-latest:
uses: ./.github/workflows/helm-test.yaml
with:
node_image: ${{ github.event.inputs.node_image_second_latest || 'kindest/node:v1.26.6' }}

test-third-latest:
uses: ./.github/workflows/helm-test.yaml
with:
node_image: ${{ github.event.inputs.node_image_third_latest || 'kindest/node:v1.25.11' }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Added default response types to apis
- Irs policies support ( on application startup registers policies in irs instance )
- Added helm upgrade workflow to test upgradeability of the helm charts
- Added helm test backwards compatability to test the helm charts with the latest kubernetes versions

### Changed
- Changed Layout in notification detailed view
Expand Down

0 comments on commit ce7fe69

Please sign in to comment.