Skip to content

Commit

Permalink
chore(build): upgrade helm lint workflow dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianBezold committed Nov 20, 2023
1 parent bd6b780 commit 2469a94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/helm-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:
node_image:
description: 'kindest/node image for k8s kind cluster'
# k8s version from 3.1 release as default
default: 'kindest/node:v1.24.6'
default: 'kindest/node:v1.27.3'
required: false
type: string
upgrade_from:
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Kubernetes KinD Cluster
uses: container-tools/kind-action@v2
with:
version: v0.19.0
version: v0.20.0
node_image: ${{ github.event.inputs.node_image || 'kindest/node:v1.24.6' }}
- name: Build image
uses: docker/build-push-action@v3
Expand All @@ -67,7 +67,7 @@ jobs:
with:
version: v3.10.3

# Setup python as a prerequisite for chart linting
# Setup python as a prerequisite for chart linting
- uses: actions/setup-python@v4
with:
python-version: '3.9'
Expand All @@ -83,11 +83,11 @@ jobs:
if [[ -n "$changed" ]]; then
echo "CHART_CHANGED=true" >> $GITHUB_ENV
fi
# run chart linting
# run chart linting
- name: Run chart-testing (lint)
run: ct lint --charts charts/orchestrator --config charts/chart-testing-config.yaml


- name: Run chart-testing (install)
run: ct install --charts charts/orchestrator --config charts/chart-testing-config.yaml --helm-extra-set-args "--set=image.tag=testing --set=image.repository=kind-registry:5000/managed-service-orchestrator"
if: github.event_name != 'pull_request' || steps.list-changed.outputs.changed == 'true'
Expand Down

0 comments on commit 2469a94

Please sign in to comment.