From 5c38715109b8df3143f62f87637148bf78b98d3e Mon Sep 17 00:00:00 2001 From: Matt Pryor Date: Tue, 13 Jun 2023 13:58:44 -0700 Subject: [PATCH] Fix linting --- .github/workflows/lint.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 46ecb75..1db3f57 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -24,10 +24,10 @@ jobs: - name: Set up chart-testing uses: scrungus/chart-testing-action@v3.7.3 - - name: Dummy cloud creds + - name: Dummy values uses: DamianReeves/write-file-action@master with: - path: clouds.yml + path: values.yml write-mode: overwrite contents: | clouds: @@ -41,6 +41,15 @@ jobs: interface: "public" identity_api_version: 3 auth_type: "v3applicationcredential" + kubernetesVersion: 1.27.2 + machineImageId: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx + controlPlane: + machineFlavor: vm.ska.cpu.general.small + machineCount: 1 + nodeGroups: + - machineCount: 2 + machineFlavor: vm.ska.cpu.general.small + name: test-group1 - name: Run chart-testing (lint) run: |- @@ -48,4 +57,4 @@ jobs: --target-branch ${{ github.event.repository.default_branch }} \ --all \ --validate-maintainers=false \ - --extra-values clouds.yml + --extra-values values.yml