chore: upgrade gretimedb chart version to 0.1.1-alpha.14 #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: CI | |
on: [push, pull_request] | |
jobs: | |
chart-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.10.0 | |
- name: Testing add greptime helm repo | |
run: | | |
helm repo add greptime https://greptimeteam.github.io/helm-charts/ | |
helm search repo greptime --devel | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Set up chart testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (lint) | |
run: ct lint --config .github/chart-test.yaml --validate-maintainers=false | |
- name: Create Kubernetes | |
uses: helm/[email protected] | |
with: | |
wait: 120s | |
- name: Run chart-testing (install) | |
run: ct install --config .github/chart-test.yaml |