feat(frontend): 支持故障池、待回收池 #7881 #7973 #709
This file contains 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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Helm Template Check | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "helm-charts/**" | |
pull_request: | |
paths: | |
- "helm-charts/**" | |
jobs: | |
helm-check: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: helm-check | |
run: |- | |
cd ./helm-charts/bk-dbm | |
helm repo add bitnami https://charts.bitnami.com/bitnami | |
helm repo add stakater-charts https://stakater.github.io/stakater-charts | |
helm dependency build | |
helm template . -f values.yaml | |
exit $? |