forked from eclipse-tractusx/traceability-foss
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: TRACEFOSS-1473 merge main and add changelog info
- Loading branch information
Showing
77 changed files
with
11,981 additions
and
9,534 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
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' }} |
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# 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: Upgrade Charts | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'charts/traceability-foss/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
upgrade: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Kubernetes KinD Cluster | ||
uses: container-tools/kind-action@v2 | ||
|
||
- name: Set up Helm | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: v3.9.3 | ||
|
||
- name: Add repos | ||
run: | | ||
helm repo add bitnami https://charts.bitnami.com/bitnami | ||
helm repo add irs-helm https://eclipse-tractusx.github.io/item-relationship-service | ||
helm repo add postgresql https://charts.bitnami.com/bitnami | ||
helm repo add tractusx-connector https://eclipse-tractusx.github.io/charts/dev | ||
helm repo add runix https://helm.runix.net | ||
helm repo add tracex https://eclipse-tractusx.github.io/traceability-foss | ||
- name: Run helm install | ||
# Install latest released traceability-foss version | ||
run: | | ||
helm install tracex tracex/traceability-foss | ||
- name: Run helm upgrade | ||
# Upgrade the installed traceability-foss version with the locally available charts | ||
run: | | ||
helm dependency update charts/traceability-foss | ||
helm upgrade tracex charts/traceability-foss |
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
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
Oops, something went wrong.