From e6c9e440fd9bf5754eb8223d2dd44049aef6c44a Mon Sep 17 00:00:00 2001 From: Alan Boudreault Date: Sun, 19 Jun 2022 10:12:46 -0400 Subject: [PATCH] fix(*) export the new variable to be compatible with Kong 3.0.0+ --- README.md | 2 ++ assets/pongo_entrypoint.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 30560966..8938a73c 100644 --- a/README.md +++ b/README.md @@ -799,6 +799,8 @@ The result should be a new PR on the Pongo repo. * Upgrade image `redis:5.0.4-alpine` to `redis:6.2.6-alpine` + * Export the new `KONG_SPEC_TEST_REDIS_HOST` variable to be compatible with Kong 3.0.0+ + --- ## 1.0.0 released 1-Feb-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