Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,38 @@ jobs:
- name: Check coverage
run: make coverage

test-e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Create kind cluster
uses: helm/kind-action@v1.3.0
with:
version: v0.14.0
node_image: v1.22.13
kubectl_version: v1.22.13

- name: Setup Helm
uses: azure/setup-helm@v3

- name: Setup Prometheus
run: |
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update

helm install prometheus prometheus-community/kube-prometheus-stack \
--version 12.7.0 \
--namespace monitoring \
--create-namespace \
--values ${{ github.workspace }}/helm/examples/integrations/prometheus/values.yaml

- name: Test kind and helm
run: |
helm version
kubectl get pods -n monitoring

test-build:
runs-on: ubuntu-latest
steps:
Expand Down