milvus default to 2.4.19, supports imagePullSecrets for operator #164
Workflow file for this run
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
name: Chart Lint Test | |
on: | |
pull_request: | |
paths: | |
- 'charts/**' | |
jobs: | |
chart-lint-test: | |
name: Chart Lint Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.4.0 | |
- name: Add dependency chart repos | |
run: | | |
helm repo add cert-manager https://charts.jetstack.io | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (lint) | |
run: ct lint --all --config ct.yaml | |
- name: Create KinD cluster | |
uses: helm/[email protected] | |
- name: Run chart-testing (install) | |
id: install | |
run: ct install --all --config ct.yaml |