[opentelemetry-integration] bump collector to 108 #154
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: Otel Integration Helm Lint And Install Test | |
on: | |
pull_request: | |
paths: | |
- 'otel-integration/k8s-helm/**' | |
jobs: | |
otel-integration-agent-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.x | |
- name: Setup cluster | |
uses: ./.github/actions/setup | |
with: | |
create-kind-cluster: "true" | |
cluster-name: "otel-integration-agent-e2e" | |
- name: Setup Secret | |
run: kubectl create secret generic coralogix-keys --from-literal=PRIVATE_KEY=123 | |
- name: Install chart for testing | |
run: | | |
cd ./otel-integration/k8s-helm | |
helm dependency build | |
helm upgrade --install otel-integration-agent-e2e . \ | |
--set global.clusterName="otel-integration-agent-e2e" \ | |
--set global.domain="coralogix.com" \ | |
-f ./values.yaml \ | |
-f ./e2e-test/testdata/values-e2e-test.yaml | |
- name: Run E2E test | |
run: | | |
kubectl wait --for=condition=ready --timeout=300s pod -l component=agent-collector | |
cd ./otel-integration/k8s-helm/e2e-test/ | |
go test -v -run=TestE2E_Agent ./... | |