Skip to content
This repository has been archived by the owner on Sep 14, 2020. It is now read-only.

0.17

Compare
Choose a tag to compare
@nolar nolar released this 03 Jul 08:41
· 658 commits to master since this release
bdea97b

Improvements:

  • Performance improvements when handling hundreds of resources. #109

Internal changes:

  • Internal (non-public) packages restructured — to deal with the growing complexity. #124
    • kopf.engines extracted from kopf.reactor (peering & posting & logging).
    • kopf.utilities extracted from kopf.reactor (reacting to k8s changes).
    • kopf.clients is the new kopf.k8s (renamed).
    • kopf.clients.auth extracted from kopf.config (only auth-related routines).
    • kopf.config got the configuration constants from all over the code.
  • New configuration added:
    • Configurable timeouts and thread pool sizes.
    • Configurable level of k8s-events posted; others are skipped.
  • Everything has been made asynchronous:
    • All internal K8s API wrappers/adapters are made async.
    • All blocking operations (incl. API requests) moved to thread pools.
    • All k8s-event posting is done via a queue with a background posting task. #125