[BugFix] Enable minReadySeconds on warehouse and fix the condition for graceful shutdown #277
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Action Run helm template | |
on: | |
pull_request: | |
branches: ["main"] | |
paths: | |
- 'helm-charts/**' | |
jobs: | |
chart: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.10.0 | |
- name: Run helm template | |
run: | | |
cd helm-charts/charts/kube-starrocks/ | |
helm template -f values.yaml . |