Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix missing value on compressor health servers #377

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/helm-lint.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions charts/vald/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1021,6 +1021,7 @@ compressor:
server:
http:
shutdown_duration: 2m
readiness: {}
metrics:
pprof: {}
prometheus: {}
Expand Down