chore(deps): bump github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring from 0.78.2 to 0.79.2 #1780
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: End2End tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
defaults: | |
run: | |
shell: bash | |
env: | |
KIND_VERSION: v0.24.0 | |
OPERATOR_IMAGE_PATH: /tmp/temporal-operator.tar | |
jobs: | |
run-e2e: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
kube-version: | |
- tag: v1.27.16 | |
kind-image: kindest/node:v1.27.17@sha256:3fd82731af34efe19cd54ea5c25e882985bafa2c9baefe14f8deab1737d9fabe | |
- tag: v1.28.13 | |
kind-image: kindest/node:v1.28.13@sha256:45d319897776e11167e4698f6b14938eb4d52eb381d9e3d7a9086c16c69a8110 | |
- tag: v1.29.8 | |
kind-image: kindest/node:v1.29.8@sha256:d46b7aa29567e93b27f7531d258c372e829d7224b25e3fc6ffdefed12476d3aa | |
- tag: v1.30.4 | |
kind-image: kindest/node:v1.30.4@sha256:976ea815844d5fa93be213437e3ff5754cd599b040946b5cca43ca45c2047114 | |
- tag: v1.31.0 | |
kind-image: kindest/node:v1.31.0@sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865 | |
name: Run generate E2E tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: true | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: false | |
tags: temporal-operator:latest | |
cache-from: type=gha | |
cache-to: type=gha | |
outputs: type=docker,dest=${{ env.OPERATOR_IMAGE_PATH }} | |
- name: Install Kind | |
uses: helm/kind-action@v1 | |
with: | |
install_only: true | |
version: ${{ env.KIND_VERSION }} | |
- name: Free some disk space | |
run: sudo rm -rf /usr/share/dotnet && sudo rm -rf /opt/ghc && sudo rm -rf "/usr/local/share/boost" | |
- name: Run e2e test suite | |
run: make test-e2e | |
env: | |
OPERATOR_IMAGE_PATH: ${{ env.OPERATOR_IMAGE_PATH }} | |
KUBERNETES_VERSION: ${{ matrix.kube-version.tag }} | |
KIND_IMAGE: ${{ matrix.kube-version.kind-image }} | |
- name: Archive e2e logs | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: e2e-artifacts | |
path: out/tests/e2e/ |