-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(acme): support redis namespace (#10562)
* feat(acme): support redis namespace This PR relies on [fffonion/lua-resty-acme#101](fffonion/lua-resty-acme#101) `namespace` will be treated as a prefix of key and is default to empty string `""` for backward compatibility. `namespace` must not be prefixed with any of the reserverd words. [KAG-615](https://konghq.atlassian.net/browse/KAG-615) * add changelog * fix lint * fix rockspec * add changelog and more test cases * fix lint * Update CHANGELOG.md Co-authored-by: Chrono <chrono_cpp@me.com> --------- Co-authored-by: Chrono <chrono_cpp@me.com>
- Loading branch information
Showing
6 changed files
with
268 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
local reserved_words = { | ||
RENEW_KEY_PREFIX = "kong_acme:renew_config:", | ||
RENEW_LAST_RUN_KEY = "kong_acme:renew_last_run", | ||
CERTKEY_KEY_PREFIX = "kong_acme:cert_key:", | ||
} | ||
|
||
return reserved_words |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c36fe3e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bazel Build
Docker image available
kong/kong:c36fe3e16d29a2adf45e11960502899793b4212a
Artifacts available https://github.com/Kong/kong/actions/runs/4555581251