fix: Remove otel builds until we upgrade it to the latest version #1370
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: PRs checks | |
on: | |
pull_request: | |
branches: | |
- main | |
- 'release-v[0-9]+.[0-9]+' | |
env: | |
DOCKER_BUILDKIT: 1 | |
KUTTL_VERSION: 0.12.1 | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.7' | |
- name: install markdownlint | |
run: gem install mdl | |
- name: markdownlint check | |
run: make markdownlint | |
yamllint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install yamllint | |
run: pip install yamllint | |
- name: yamllint | |
run: make yamllint | |
build-operator: | |
name: Build tailing sidecar operator | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache-dependency-path: operator/go.sum | |
- name: Run tests for tailing sidecar operator | |
working-directory: ./operator | |
run: make test | |
- name: Build tailing sidecar operator | |
working-directory: ./operator | |
run: make manager | |
test-without-helm: | |
name: Test resources created without Helm chart | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
sidecar: [fluentbit] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache-dependency-path: | | |
.otelcol-builder.yaml | |
.goreleaser.yaml | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3.1.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.7.1 | |
- name: Install opentelemetry-collector-builder | |
working-directory: ./sidecar/otelcol | |
run: make install-builder | |
- uses: imranismail/setup-kustomize@v2 | |
- name: Install kuttl | |
run: | | |
curl -Lo /usr/local/bin/kubectl-kuttl https://github.com/kudobuilder/kuttl/releases/download/v${{ env.KUTTL_VERSION }}/kubectl-kuttl_${{ env.KUTTL_VERSION }}_linux_x86_64 | |
chmod +x /usr/local/bin/kubectl-kuttl | |
- name: Run e2e tests for ${{ matrix.sidecar }} in tailing sidecar | |
run: make e2e TAILING_SIDECAR=${{ matrix.sidecar }} | |
test-helm-chart: | |
name: Test Helm chart | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
sidecar: [fluentbit] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache-dependency-path: | | |
.otelcol-builder.yaml | |
.goreleaser.yaml | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3.1.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.7.1 | |
- name: Install opentelemetry-collector-builder | |
working-directory: ./sidecar/otelcol | |
run: make install-builder | |
- uses: imranismail/setup-kustomize@v2 | |
- name: Install kuttl | |
run: | | |
curl -Lo /usr/local/bin/kubectl-kuttl https://github.com/kudobuilder/kuttl/releases/download/v${{ env.KUTTL_VERSION }}/kubectl-kuttl_${{ env.KUTTL_VERSION }}_linux_x86_64 | |
chmod +x /usr/local/bin/kubectl-kuttl | |
- name: Run Helm e2e tests for ${{ matrix.sidecar }} in tailing sidecar | |
run: make e2e-helm TAILING_SIDECAR=${{ matrix.sidecar }} | |
test-helm-chart-with-cert-manager: | |
name: Test Helm chart with cert-manager | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
sidecar: [fluentbit] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache-dependency-path: | | |
sidecar/otelcol/.otelcol-builder.yaml | |
sidecar/otelcol/.goreleaser.yaml | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3.1.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.7.1 | |
- name: Install opentelemetry-collector-builder | |
working-directory: ./sidecar/otelcol | |
run: make install-builder | |
- uses: imranismail/setup-kustomize@v2 | |
- name: Install kuttl | |
run: | | |
curl -Lo /usr/local/bin/kubectl-kuttl https://github.com/kudobuilder/kuttl/releases/download/v${{ env.KUTTL_VERSION }}/kubectl-kuttl_${{ env.KUTTL_VERSION }}_linux_x86_64 | |
chmod +x /usr/local/bin/kubectl-kuttl | |
- name: Run Helm e2e tests for ${{ matrix.sidecar }} in tailing sidecar | |
run: make e2e-helm-certmanager TAILING_SIDECAR=${{ matrix.sidecar }} | |
test-helm-chart-with-custom-configuration: | |
name: Test Helm chart with custom configuration | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
sidecar: [fluentbit] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache-dependency-path: | | |
sidecar/otelcol/.otelcol-builder.yaml | |
sidecar/otelcol/.goreleaser.yaml | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3.1.0 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3.7.1 | |
- name: Install opentelemetry-collector-builder | |
working-directory: ./sidecar/otelcol | |
run: make install-builder | |
- uses: imranismail/setup-kustomize@v2 | |
- name: Install kuttl | |
run: | | |
curl -Lo /usr/local/bin/kubectl-kuttl https://github.com/kudobuilder/kuttl/releases/download/v${{ env.KUTTL_VERSION }}/kubectl-kuttl_${{ env.KUTTL_VERSION }}_linux_x86_64 | |
chmod +x /usr/local/bin/kubectl-kuttl | |
- name: Run Helm e2e tests for ${{ matrix.sidecar }} in tailing sidecar | |
run: make e2e-helm-custom-configuration TAILING_SIDECAR=${{ matrix.sidecar }} |