Update Chart.yaml #9
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: Helm Test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.1 | |
- name: Add Timescale Chart Repo | |
run: helm repo add timescale https://charts.timescale.com/ | |
- name: Update Chart Repositories | |
run: helm repo update | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
check-latest: true | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2.6.1 | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Run chart-testing (lint) | |
if: steps.list-changed.outputs.changed == 'true' | |
run: ct lint --target-branch ${{ github.event.repository.default_branch }} | |
- name: Create kind cluster | |
if: steps.list-changed.outputs.changed == 'true' | |
uses: helm/kind-action@v1.9.0 | |
- name: Install Helm Chart in namespace `openlit` | |
if: steps.list-changed.outputs.changed == 'true' | |
run: helm install openlit ./charts/openlit --namespace openlit --create-namespace | |
- name: Wait for Pods to be ready in namespace `openlit` | |
if: steps.list-changed.outputs.changed == 'true' | |
run: sleep 120 | |
- name: Check Pod status in namespace `openlit` | |
if: steps.list-changed.outputs.changed == 'true' | |
run: | | |
kubectl get pods -n openlit | |
- name: Print logs for a pod with label `app=openlit` | |
if: steps.list-changed.outputs.changed == 'true' | |
run: | | |
kubectl logs -n openlit -l app=openlit | |
- name: Check if OpenLIT pod is running | |
if: steps.list-changed.outputs.changed == 'true' | |
run: | | |
STATUS=$(kubectl get pods -l app=openlit -n openlit -o jsonpath="{.items[*].status.phase}") | |
if [ "$STATUS" != "Running" ]; then | |
echo "Pod is not in Running state: $STATUS" | |
exit 1 | |
fi | |
echo "All pods are in the Running state." |