mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
Bumps [helm/kind-action](https://github.com/helm/kind-action) from 1.7.0 to 1.8.0. - [Release notes](https://github.com/helm/kind-action/releases) - [Commits](https://github.com/helm/kind-action/compare/v1.7.0...v1.8.0) --- updated-dependencies: - dependency-name: helm/kind-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: e2e
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
e2e-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
provider:
|
|
# service mesh
|
|
- istio
|
|
- linkerd
|
|
- kuma
|
|
# ingress controllers
|
|
- contour
|
|
- nginx
|
|
- traefik
|
|
- gloo
|
|
- skipper
|
|
- kubernetes
|
|
- gatewayapi
|
|
- keda
|
|
- apisix
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Setup Kubernetes
|
|
uses: helm/kind-action@v1.8.0
|
|
with:
|
|
version: v0.18.0
|
|
cluster_name: kind
|
|
node_image: kindest/node:v1.24.12@sha256:0bdca26bd7fe65c823640b14253ea7bac4baad9336b332c94850f84d8102f873
|
|
- name: Build container image
|
|
run: |
|
|
docker build -t test/flagger:latest .
|
|
kind load docker-image test/flagger:latest
|
|
- name: Run tests
|
|
run: |
|
|
./test/${{ matrix['provider'] }}/run.sh
|