From f7dc424041fa7bc6a1ff487e20749df88963446c Mon Sep 17 00:00:00 2001 From: Rintaro Okamura Date: Thu, 14 May 2020 11:26:01 +0900 Subject: [PATCH 1/2] :bug: Fix missing value on compressor health servers Signed-off-by: Rintaro Okamura --- charts/vald/values.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/vald/values.yaml b/charts/vald/values.yaml index 472ec0bd74..1afe80cd4a 100644 --- a/charts/vald/values.yaml +++ b/charts/vald/values.yaml @@ -1021,6 +1021,7 @@ compressor: server: http: shutdown_duration: 2m + readiness: {} metrics: pprof: {} prometheus: {} From 137399671f8288bcae4a436f5cca938a4461de5b Mon Sep 17 00:00:00 2001 From: Rintaro Okamura Date: Thu, 14 May 2020 11:31:32 +0900 Subject: [PATCH 2/2] :green_heart: Add helm-lint Signed-off-by: Rintaro Okamura --- .github/workflows/helm-lint.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/helm-lint.yml diff --git a/.github/workflows/helm-lint.yml b/.github/workflows/helm-lint.yml new file mode 100644 index 0000000000..ca548381a9 --- /dev/null +++ b/.github/workflows/helm-lint.yml @@ -0,0 +1,26 @@ +name: 'Run Helm lint' +on: + pull_request: + paths: + - 'charts' + +jobs: + helm-lint: + name: helm lint + runs-on: ubuntu-latest + container: + image: vdaas/vald-ci-container:nightly + steps: + - name: Check out code. + uses: actions/checkout@v1 + with: + fetch-depth: 1 + - name: Helm version + run: | + helm version + - name: Run lint for charts/vald + run: | + helm lint charts/vald + - name: Run lint for charts/vald-helm-operator + run: | + helm lint charts/vald-helm-operator