gem install thor
This toolkit requires an instance of Kong Gateway Admin API to be up and running (make sure you are running the Enterprise version). Most of the commands generate requests under the hood against the API.
The easiest way to run a specific version of the Admin API is with Gojira. It provides several options, but using kong images is probably the safest one.
Note: By default, Gojira
binds ports to random available ones on the host, so you probably want to bind them to specific ports. By default, the toolkit
expects host
to be localhost
and port
8001
.
Screen.Recording.2023-02-21.at.13.04.35.mov
Before running any of the commands, make sure you have the right version of Kong Gateway Admin API running.
Downloads the schemas in json format for the specified list of plugins and writes them into disk. Each schema will be stored under <destination>/<plugin-name>/<version>.json
Options | Descriptions |
---|---|
version |
Required. Kong Gateway release version, e.g. 3.3.x . |
plugins |
Required. Space separated list of plugins for which the schemas will be downloaded, .e.g. acme acl . Setting it to $(ls ./schemas) will download the schemas for all the plugins. |
host |
Name of the host in which the API is running. Default: localhost . |
port |
Port in which the API is listening. Default: 8001 . |
destination |
Path to the root folder in which the schemas will be stored. Default: ./schemas |
Downloading the schema for acme
:
./plugins download_schemas --version=3.3.x --plugins acme
Downloading schemas for all the plugins:
./plugins download_schemas --version=3.3.x --plugins $(ls ./schemas)
Validates plugin examples config against the plugin schema using the Admin API. It will iterate over the specified list of plugins and check whether the example for the specified version is valid.
Options | Descriptions |
---|---|
version |
Required. Kong Gateway release version, e.g. 3.3.x . |
plugins |
Required. Space separated list of plugins to use, .e.g. acme acl . |
host |
Name of the host in which the API is running. Default: localhost . |
port |
Port in which the API is listening. Default: 8001 . |
source |
Path to the root folder containing the examples. Default: ./examples . |
For example, running:
./plugins validate_examples --version 3.4.x --plugins acme --verbose
reads the file ./examples/acme/_3.4.x.yaml
and validates it against the schema using the API.
Copies the last (ordered by version) example file stored in <source>/<plugin-name>/
and writes it to <source>/<plugin-name>/<version>
.
Options | Descriptions |
---|---|
version |
Required. Kong Gateway release version, e.g. 3.3.x . The new example file is named after it. |
plugins |
Required. Space separated list of plugins to use, .e.g. acme acl . |
source |
Path to the root folder containing the exisitng examples. Default: ./examples . |
For example, running:
./plugins copy_examples --version 3.5.x --plugins acme
copies the previous example (assuming the previous version is 3.4.x
, it copies ./examples/acme/_3.4.x.yaml
) and generates a new file ./examples/acme/_3.5.x.yaml
Options | Descriptions |
---|---|
version |
Required. Kong Gateway release version, e.g. 3.3.x . |
plugins |
Required. Space separated list of plugins to use, .e.g. acme acl . |
source |
Path to the folder containing the plugin schemas. Default: ./schemas . |
destination |
Path to the root folder in which the file will be stored. Default: ./data |
For example, running:
./plugins generate_referenceable_fields_list --version 3.4.x --plugins $(ls ./schemas)
generates a file ./data/referenceable_fields/3.4.x.json
containing a list of plugins that have referenceable fields, and their corresponding referenceable fields.
Options | Descriptions |
---|---|
version |
Required. Kong Gateway release version, e.g. 3.3.x . |
host |
Name of the host in which the API is running. Default: localhost . |
port |
Port in which the API is listening. Default: 8001 . |
type |
Whether the API is running the Enterprise or OSS edition. Enum: oss or ee . |
destination |
Path to the root folder in which the file will be stored. Default: ./data |
NOTE: when generating priorities for enterprise, make sure the appdynamics plugin is installed
For example, running:
./plugins generate_plugin_priorities --type=ee --version 3.4.x
generates a file ./data/priorities/ee/3.4.x.json
containing a list of plugins and their corresponded priorities order by priority (desc).
Copies the last (ordered by version) schema file stored in <source>/<plugin-name>/
and writes it to <source>/<plugin-name>/<version>
.
Options | Descriptions |
---|---|
version |
Required. Kong Gateway release version, e.g. 3.3.x . The new example file is named after it. |
plugins |
Required. Space separated list of plugins to use, .e.g. acme acl . |
source |
Path to the root folder containing the exisitng examples. Default: ./schemas . |
For example, running:
./plugins copy_schemas --version 3.5.x --plugins acme
copies the previous schema (assuming the previous version is 3.4.x
, it copies ./schemas/acme/3.4.x.json
) and generates a new file ./schemas/acme/3.5.x.json
Whenever a new version of Kong Gateway is released, we need run the following commands in order. For all of them, specify all the plugins --plugins $(ls ./schemas)
- Download Schemas - specify the new version
x.x.x
- Copy Examples - specify the previous version
x.x.y
of the example that gets copied - Validate Examples - specify the new version
x.x.x
- Generate Referenceable Fields List - specify the new version
x.x.x
- Generate Priorities List - for
oss
andee
and specify the new versionx.x.x