项目作者: tammoippen

项目描述 :
Command Line Interface (CLI) for the kong admin API.
高级语言: Python
项目地址: git://github.com/tammoippen/kongcli.git
创建时间: 2019-06-07T16:02:58Z
项目社区:https://github.com/tammoippen/kongcli

开源协议:MIT License

下载


CircleCI
Coverage Status
Language grade: Python
kong
PyPi version
PyPi license

kongcli - cli for kong admin api

Note: usable but still alpha quality - I will remove the alpha flag as soon as the coverage is above 90%.

This is a command line interface (cli) to configure the awesome kong, especially using the kong admin api. There are alternatives like

  • konga: Web GUI.
  • kong-cli: CLI to Kong 0.10.x. (Last commit Jul 2017, as of this writing)
  • kongctl: CLI to Kong. I was not aware of this, when I started the project.

At work we use(d) a kong 0.13.x, hence the CLI’s were either outdated or not ready. As with the GUI… it was to much overhead for my case. Then I collected some *.http files for the REST Client, but was never really satisfied with the ‘UI’.

I started this project for my most used endpoints, i.e. there is a lot of not-implemented endpoints - if you need them, consider the raw command or provide a PR ;) . I plan to make it compatible with kong >= 0.13.x - currently, CI tests with latest docker images for 0.13, 0.14, 0.15, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 2.0 and 2.1.

installation

TBD - not yet published

  1. > pip install kongcli

or using pipx:

  1. > pipx install kongcli

usage

kongcli support -h / --help and documentation for the individual commands (along with documentation on Kong Admin API for your kong version) should be sufficient to get most common operations done with ease:

  1. > kongcli -h
  2. Usage: kongcli [OPTIONS] COMMAND [ARGS]...
  3. Interact with your kong admin api.
  4. Some options can also be configured via environment variables:
  5. --url KONG_BASE base url to the kong admin api
  6. --apikey KONG_APIKEY api key for the kong admin api
  7. --basic KONG_BASIC_USER basic auth username for kong admin api
  8. --passwd KONG_BASIC_PASSWD basic auth password for the kong admin api
  9. Options:
  10. --url TEXT Base url to kong. [required]
  11. --apikey TEXT API key for key-auth to kong.
  12. --basic TEXT Basic auth username for kong.
  13. --passwd TEXT Basic auth password for kong. Is also prompted, if left
  14. out.
  15. --tablefmt TEXT Format for the output tables. Supported formats:
  16. fancy_grid, github, grid, html, jira, latex,
  17. latex_booktabs, latex_raw, mediawiki, moinmoin, orgtbl,
  18. pipe, plain, presto, pretty, psql, rst, simple, textile,
  19. tsv, youtrack [default: fancy_grid]
  20. --font TEXT Font for the table headers. See
  21. http://www.figlet.org/examples.html for examples.
  22. [default: banner]
  23. -v, --verbose Add more verbose output. [default: 0]
  24. -h, --help Show this message and exit.
  25. Commands:
  26. consumers Manage Consumers Objects.
  27. info Show information on the kong instance.
  28. list List various resources (chainable).
  29. plugins Manage Plugin Objects.
  30. raw Perform raw http requests to kong.
  31. routes Manage Routes Objects.
  32. services Manage Service Objects.
  33. status Show status information on the kong instance.
  34. version Show version of kongcli.

raw

If the endpoint / plugin / … you need to configure is not implemented, you can always use curl or other means to submit a request to the kong admin api. The raw command should make it a bit easier:

  1. > kongcli raw -h
  2. Usage: kongcli raw [OPTIONS] METHOD URL
  3. Perform raw http requests to kong.
  4. You can provide headers using the --header / -H option:
  5. - to get the header 'Accept: application/json' use
  6. -H Accept application/json
  7. - to get the header 'Content-Type: application/json; charset=utf-8' use
  8. -H Content-Type "application/json; charset=utf-8"
  9. You can provide a json body using the --data / -d option
  10. -d foo bar # => {"foo": "bar"}
  11. -d foo true # => {"foo": true}
  12. -d foo '"true"' # => {"foo": "true"}
  13. -d foo.bar.baz 2.3 # => {"foo": {"bar": {"baz": 2.3}}}
  14. -d name bar -d config.methods '["GET", "POST"]'
  15. # => {"name": "bar", "config": {"methods": ["GET", "POST"]}}
  16. The first argument to `--data / -d` is the key. It is split by dots and
  17. sub-dictionaries are created. The second argument is assumed to be valid
  18. JSON; if it cannot be parsed, we assume it is a string. Multiple usages of
  19. `--data / -d` will merge the dictionary.
  20. Options:
  21. --dry-run Only create the request without sending it.
  22. [default: False]
  23. -H, --header <TEXT TEXT>... Add headers.
  24. -d, --data <TEXT TEXT>... Add key-value data points to the payload.
  25. -h, --help Show this message and exit.

If you provide the base url and authentication via environment variables, requests to kong admin api via raw are like:

  1. > kongcli raw GET /
  2. > GET http://localhost:8001/
  3. > User-Agent: python-requests/2.22.0
  4. > Accept-Encoding: gzip, deflate
  5. > Accept: */*
  6. > Connection: keep-alive
  7. >
  8. < http/11 200 OK
  9. < Date: Mon, 14 Oct 2019 15:59:41 GMT
  10. < Content-Type: application/json; charset=utf-8
  11. < Transfer-Encoding: chunked
  12. < Connection: keep-alive
  13. < Access-Control-Allow-Origin: *
  14. < Server: kong/0.13.1
  15. {"plugins":{"enabled_in_cluster":[],"available_on_server":{"response-transformer":true,"correlation-id":true,"statsd":true,"jwt":true,"cors":true,"basic-auth":true,"key-auth":true,"ldap-auth":true,"http-log":true,"oauth2":true,"hmac-auth":true,"acl":true,"datadog":true,"tcp-log":true,"ip-restriction":true,"request-transformer":true,"file-log":true,"bot-detection":true,"loggly":true, ...}

CRUD for consumers, services, routes, (some) plugins

The objects consumers, services, routes, plugins all have a ‘similar’ create, read, update, delete (CRUD) interface. For consumers the commands are as follows, but the others are similar:

  1. > kongcli consumers -h
  2. Usage: kongcli consumers [OPTIONS] COMMAND [ARGS]...
  3. Manage Consumers Objects.
  4. The Consumer object represents a consumer - or a user - of a Service. You
  5. can either rely on Kong as the primary datastore, or you can map the
  6. consumer list with your database to keep consistency between Kong and your
  7. existing primary datastore.
  8. Options:
  9. -h, --help Show this message and exit.
  10. Commands:
  11. add-groups Add the given groups to the consumer.
  12. basic-auth Manage basic auths of Consumer Objects.
  13. create Create a user / consumer of your services /...
  14. delete Delete a consumer with all associated...
  15. delete-groups Delete the given groups from the consumer.
  16. enable-rate-limiting Enable the rate-limiting plugin.
  17. enable-request-size-limiting Enable the request-size-limiting plugin.
  18. enable-response-ratelimiting Enable the response-ratelimiting plugin.
  19. key-auth Manage key auths of Consumer Objects.
  20. list List all consumers along with relevant...
  21. retrieve Retrieve a specific consumer.
  22. update Update a consumer.

UI

  • Tables are printed using tabulate - other formats can be selected via the --tablefmt TEXT option from kongcli.
  • Headers are printed using pyfiglet - other fonts can be selected via the --font TEXT option from kongcli (see http://www.figlet.org/examples.html for examples).
  • logs can be shown using the -v / --verbose option from kongcli:
    • zero -v will show ERROR only
    • -v will show WARNING logs and above
    • -vv will show INFO and above
    • -vvv will show DEBUG and above

examples

CRUD on a consumer:

  1. > kongcli consumers create --username foobar
  2. ╒═══════════════════════════╤══════════════════════════════════════╤════════════╕
  3. created_at id username
  4. ╞═══════════════════════════╪══════════════════════════════════════╪════════════╡
  5. 2019-10-14 16:54:53+00:00 f4203001-c3de-4ab9-ad26-6f4ca0306ea8 foobar
  6. ╘═══════════════════════════╧══════════════════════════════════════╧════════════╛
  7. > kongcli consumers list # to get all consumers
  8. #####
  9. # # #### # # #### # # # # ###### ##### ####
  10. # # # ## # # # # ## ## # # # #
  11. # # # # # # #### # # # ## # ##### # # ####
  12. # # # # # # # # # # # # ##### #
  13. # # # # # ## # # # # # # # # # # #
  14. ##### #### # # #### #### # # ###### # # ####
  15. ╒══════════════════════════════════════╤═════════════╤════════════╤══════════════╤═══════════╤══════════════╤════════════╕
  16. id custom_id username acl_groups plugins basic_auth key_auth
  17. ╞══════════════════════════════════════╪═════════════╪════════════╪══════════════╪═══════════╪══════════════╪════════════╡
  18. f4203001-c3de-4ab9-ad26-6f4ca0306ea8 foobar
  19. ╘══════════════════════════════════════╧═════════════╧════════════╧══════════════╧═══════════╧══════════════╧════════════╛
  20. > kongcli consumers retrieve foobar # to get a specific consumer
  21. ╒═══════════════════════════╤══════════════════════════════════════╤════════════╕
  22. created_at id username
  23. ╞═══════════════════════════╪══════════════════════════════════════╪════════════╡
  24. 2019-10-14 16:54:53+00:00 f4203001-c3de-4ab9-ad26-6f4ca0306ea8 foobar
  25. ╘═══════════════════════════╧══════════════════════════════════════╧════════════╛
  26. > kongcli consumers update foobar --custom_id 1234
  27. ╒═══════════════╤═════════════╤══════════════════════════════════════╤════════════╕
  28. created_at custom_id id username
  29. ╞═══════════════╪═════════════╪══════════════════════════════════════╪════════════╡
  30. 1571072093000 1234 f4203001-c3de-4ab9-ad26-6f4ca0306ea8 foobar
  31. ╘═══════════════╧═════════════╧══════════════════════════════════════╧════════════╛
  32. > kongcli consumers delete foobar
  33. Deleted consumer `foobar`!

contribute

The project still needs some love. If you want to contribute, please consider the following things:

  • We cannot know, which version of kong somebody is stuck with - please make your contributions compatible with 0.13+. If there is a new feature not supported downwards, please do not attempt to contribute it. Also, do not contribute deprecated API, e.g. API Objects etc. .
  • make sure CI will most likely pass, e.g.:
    • static tests: make statics
    • pytests: make tests
    • try at least one or two different kong versions locally
  • if you want to contribute new endpoints, please only provide endpoints you are actually using a lot - the more specific endpoints we support, the more maintenance work has to be done.
  • i really would like it, if you just use the cli, report your bugs here, brag about how great it is on twitter, facebook, hackernews, reddit, …

start local development kong

The provided docker-compose.yml is able to start and setup different kong versions for local development (one at a time). In .testenv, change the KONG_VERSION_TAG and KONG_MIGRATION_CMD (< 0.15 use up, >= 0.15 use bootstrap). Then source the file, e.g. export $(cat .testenv | xargs). Start the docker-compose with:

  1. > docker-compose down -v
  2. > docker-compose --project-name tests up -d