- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个正在运行的 KONG 容器,我想向其中添加一个自定义插件,特别是 JWT crafter 。我已经下载了该插件,但我不知道如何让它从我的 KONG 容器中启动。因此,如果有人处于相同的位置或知道任何可遵循的路线,这将非常有帮助。
最佳答案
我尝试做同样的事情,但尚未找到详细描述的答案。您可以配置简单的 helloworld 插件,如下所示:( https://github.com/brndmg/kong-plugin-hello-world )
Docker 主机上的本地“插件”目录结构:
然后你可以挂载本地/plugins 目录并让 kong 从/plugins 目录加载自定义的 'helloworld' 插件
1)使用环境变量
$ docker run -d --name kong --network=kong-net \
-e "KONG_DATABASE=cassandra" \
-e "KONG_PG_HOST=kong-database" \
-e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \
**-e "KONG_LUA_PACKAGE_PATH=/plugins/?.lua" \
-e "KONG_CUSTOM_PLUGINS=helloworld" \ **
...
-e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \
**-v "/plugins:/plugins" \**
-p 8080:8000 -p 8443:8443 -p 8001:8001 -p 8444:8444 kong:latest
然后,您可以在 http://[kong-url]:8001/ 上看到配置的自定义插件
..
"custom_plugins": [
"helloworld"
],
..
2) 或者,您可以简单地安装描述您想要的插件的自定义 kong.conf 文件。
/etc/kong/kong.conf
plugins = bundled,helloworld,jwt-crafter
(似乎第二个选项对于最新版本的 Kong 更好,因为“kong_custom_plugin”配置打印“弃用”警告)
对于 JWT 工匠,https://github.com/foodora/kong-plugin-jwt-crafter看来该插件维护得不好,导致使用 luarocks 安装失败并出现错误。
$ luarocks install kong-plugin-jwt-crafter
....
kong-plugin-jwt-crafter 1.0-0 depends on lua-resty-jwt ~> 0.1.10-1 (not installed)
Error: Could not satisfy dependency lua-resty-jwt ~> 0.1.10-1: No results matching query were found.
相反,您可以直接将 'resty-jwt' 添加到官方 docker 镜像中,以解决依赖关系,该依赖关系不包含在官方镜像中。并将“JWT crafter”复制到“/plugins”目录中,并加载。
(docker容器内)
luarocks install lua-resty-jwt
希望这有帮助。
关于docker - 如何将自定义的 kong 插件添加到 dockerized kong 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50391213/
我是一名优秀的程序员,十分优秀!