From 3777e8957b36e2e088b7cf48c71360fb428e4dbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Ch=C3=A1vez?= Date: Wed, 6 Sep 2023 20:06:04 +0200 Subject: [PATCH] chore: adds istio/proxyv2 to list of images on CI (#226) Co-authored-by: Matteo Pace --- .github/workflows/ci.yaml | 2 ++ e2e/docker-compose.yml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 84fbfd0..4513d5a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,8 @@ env: envoyproxy/envoy:v1.27-latest envoyproxy/envoy:v1.26-latest envoyproxy/envoy-dev:latest + istio/proxyv2:1.18.2 + istio/proxyv2:1.19.0 jobs: build: diff --git a/e2e/docker-compose.yml b/e2e/docker-compose.yml index fd15e27..3e3f278 100644 --- a/e2e/docker-compose.yml +++ b/e2e/docker-compose.yml @@ -8,6 +8,10 @@ services: depends_on: - httpbin image: ${ENVOY_IMAGE:-envoyproxy/envoy:v1.27-latest} + # Entryoint is explicited in order to make the ENVOY_IMAGE compatible also with istio/proxyv2 images + # The latter has as default entrypoint pilot-agent instead of envoy + # See https://github.com/tetratelabs/proxy-wasm-go-sdk/blob/main/.github/workflows/workflow.yaml#L104 + entrypoint: /usr/local/bin/envoy command: - -c - /conf/envoy-config.yaml