Skip to content

Commit b94a784

Browse files
committed
chore: Removed the second kong in the plugin name
1 parent 67c3709 commit b94a784

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Wait for service to be ready
5555
run: |
5656
# Wait until kong is ready
57-
timeout 60s bash -c 'until docker exec kong-plugin-kong-authz-openfga-smoke-test curl -i http://localhost:8007/status/ready; do sleep 5; done'
57+
timeout 60s bash -c 'until docker exec kong-plugin-authz-openfga-smoke-test curl -i http://localhost:8007/status/ready; do sleep 5; done'
5858
- name: Run smoke tests
5959
run: |
6060
make smoke-test-run-test DOCKER_RUN_FLAGS_TTY=''

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The goal of this plugin is to integrate Kong with [OpenFGA](https://openfga.dev/
77
Install the plugin using `luarocks`.
88

99
```sh
10-
luarocks install kong-plugin-kong-authz-openfga
10+
luarocks install kong-plugin-authz-openfga
1111
```
1212

1313
## Enable it in Kong

_build/deployment/kong-smoke-test/kong/kong.local.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
plugins:
1010
- name: kong-authz-openfga
1111
config:
12-
host: kong-plugin-kong-authz-openfga-openfga
12+
host: kong-plugin-authz-openfga-openfga
1313
store_id: 01JF958AHC0F7CT35GCFN4EHP6
1414
tuple:
1515
user: user:anne

kong-plugin-kong-authz-openfga-0.1.0-2.rockspec renamed to kong-plugin-authz-openfga-0.1.0-2.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package = "kong-plugin-kong-authz-openfga"
1+
package = "kong-plugin-authz-openfga"
22
version = "0.1.0-2"
33
source = {
44
url = "git+https://github.com/dol/kong-authz-openfga.git",

kong-plugin.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local plugin_name = "kong-authz-openfga"
1+
local plugin_name = "authz-openfga"
22
local package_name = "kong-plugin-" .. plugin_name
33
local package_namespace = "kong.plugins." .. plugin_name
44
local package_path = "kong/plugins/" .. plugin_name

plugin.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
KONG_PLUGIN_NAME=kong-authz-openfga
1+
KONG_PLUGIN_NAME=authz-openfga
22
KONG_PLUGIN_VERSION=0.1.0
33
KONG_PLUGIN_REVISION=2
44
# Important: If you change any version, the image hash/digest must be updated as well

0 commit comments

Comments
 (0)