From bebd96a26fe5563c97a2288925357e7df6279a61 Mon Sep 17 00:00:00 2001 From: Alan Boudreault Date: Mon, 20 Jun 2022 08:19:41 -0400 Subject: [PATCH] fix(*) export KONG_SPEC_TEST_REDIS_HOST variable for Kong 3.0.0+ (#290) Co-authored-by: Thijs Schreijer --- README.md | 7 +++++++ assets/pongo_entrypoint.sh | 2 ++ 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index e20d56f6..efc412b6 100644 --- a/README.md +++ b/README.md @@ -785,6 +785,13 @@ The result should be a new PR on the Pongo repo. * commit as `release x.y.z`, tag as `x.y.z` * push commit and tags +--- + +## unreleased + + * Export the new `KONG_SPEC_TEST_REDIS_HOST` variable to be compatible with Kong 3.0.0+ + +--- ## 1.1.0 released 14-Jun-2022 diff --git a/assets/pongo_entrypoint.sh b/assets/pongo_entrypoint.sh index 2305fcc4..35750fd5 100755 --- a/assets/pongo_entrypoint.sh +++ b/assets/pongo_entrypoint.sh @@ -67,6 +67,8 @@ export KONG_LOG_LEVEL=debug # export Pongo's redis instance to the Kong test-helpers export KONG_SPEC_REDIS_HOST=redis +# Kong test-helpers 3.0.0+ +export KONG_SPEC_TEST_REDIS_HOST=redis # set the certificate store export KONG_LUA_SSL_TRUSTED_CERTIFICATE=/etc/ssl/certs/ca-certificates.crt