Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Lo <[email protected]>
  • Loading branch information
lowc1012 committed Mar 9, 2024
1 parent 6fbc88e commit d48ecba
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/validate-helm-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
lint-and-test-charts:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -50,13 +50,13 @@ jobs:
validate-manifests:
needs:
- lint-and-test-charts
runs-on: self-hosted
runs-on: ubuntu-latest
defaults:
run:
shell: bash
strategy:
matrix:
k8s_versions: [ "1.29.2", "v1.28.7", "v1.27.11", "v1.26.14" ]
k8s_versions: [ "1.29.2", "v1.28.7", "v1.27.11" ]

steps:
- name: Checkout code
Expand All @@ -77,6 +77,5 @@ jobs:
sudo mv kubeconform /usr/local/bin/kubeconform
- name: Validate manifests
working-directory: deployment
run: |
kubeconform -strict -summary -skip CustomResourceDefinition -kubernetes-version ${{ matrix.k8s_versions }} ./deployment ./manifests
kubeconform -strict -summary -skip CustomResourceDefinition -kubernetes-version ${{ matrix.k8s_versions }} ./deployment ./docker/sandbox-bundled/manifests

0 comments on commit d48ecba

Please sign in to comment.