Skip to content

Merge pull request #4 from openlit/patcher9-patch-1 #12

Merge pull request #4 from openlit/patcher9-patch-1

Merge pull request #4 from openlit/patcher9-patch-1 #12

Workflow file for this run

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.10.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."