diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 0d4006b8..9b1d6fcc 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -16,17 +16,20 @@ jobs: kind: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: provider: + # service mesh - istio - linkerd + - osm + - kuma + # ingress controllers - contour - nginx - traefik - gloo - skipper - - osm - - kuma - kubernetes steps: - name: Checkout @@ -34,7 +37,7 @@ jobs: - name: Setup Kubernetes uses: engineerd/setup-kind@v0.5.0 with: - version: "v0.11.0" + version: "v0.11.1" image: kindest/node:v1.21.1@sha256:fae9a58f17f18f06aeac9772ca8b5ac680ebbed985e266f711d936e91d113bad - name: Build container image run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index d79d2982..84982ed7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,9 +16,12 @@ command flag, or with Helm `--set clusterName=my-cluster`. - Add kuma support for progressive traffic shifting canaries [#1085](https://github.com/fluxcd/flagger/pull/1085) + [#1093](https://github.com/fluxcd/flagger/pull/1093) #### Improvements +- Publish a Software Bill of Materials (SBOM) + [#1094](https://github.com/fluxcd/flagger/pull/1094) - Add cluster name to flagger cmd args for altering [#1041](https://github.com/fluxcd/flagger/pull/1041) diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index d0146471..cc885636 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -138,7 +138,7 @@ tolerations: [] prometheus: # to be used with ingress controllers install: false - image: docker.io/prom/prometheus:v2.23.0 + image: docker.io/prom/prometheus:v2.32.1 pullSecret: retention: 2h # when enabled, it will add a security context for the prometheus pod diff --git a/docs/gitbook/tutorials/kuma-progressive-delivery.md b/docs/gitbook/tutorials/kuma-progressive-delivery.md index 27853b85..5b184772 100644 --- a/docs/gitbook/tutorials/kuma-progressive-delivery.md +++ b/docs/gitbook/tutorials/kuma-progressive-delivery.md @@ -1,4 +1,4 @@ - # Kuma Canary Deployments +# Kuma Canary Deployments This guide shows you how to use Kuma and Flagger to automate canary deployments.