Sergey Vasilyev
Sergey Vasilyev
@eshepelyuk Can you please create a separate issue for that?
@eshepelyuk No (yet). Twitter [@nolar](https://twitter.com/nolar) is one way to reach me. I am also passively present in https://kubernetes.slack.com/ — there is no special chat room for Kopf, so #kubernetes-operators is...
@chilicat Thanks for reporting. Can you please make an experiment in your environment: if you put this line on top of your script, does the delayed error happen exactly by...
@chilicat Thanks. So, let it be a workaround for now (despite that `kopf.config...` is undocumented and internal). Please, wrap it with `try-except` — in case this module/class/attribute is renamed/removed in...
`kopf==0.23rc1` is now pre-released (see the [release notes](https://github.com/zalando-incubator/kopf/releases/tag/0.23rc1)). It is now fully aiohttp-based, and contains no synchronous API calls. Which means, the whole I/O machinery is changed. Which means, the...
@amolkavitkar Sorry for the delayed answer. First of all, I see Python 3.5.2 mentioned. Kopf uses some features of Python 3.7, which did not exist earlier (such as `contextvars`, but...
I also observed this strange behaviour once (accidentally) — when the operator didn't see the custom resource created. Surprisingly, it saw other resources and reacted to them. But I couldn't...
Kopf injects its own logger in `kopf.configure()` based on `--verbose`, `--debug`, or `--quiet` CLI options. See [the source code](https://github.com/zalando-incubator/kopf/blob/0.25/kopf/config.py#L25-L30). The easiest way would be to define your `@kopf.on.startup()` handler, and...
Related: #58 #264 See also: https://github.com/zalando-incubator/kopf/issues/264#issuecomment-562845724 You are right, the only way is —as you said— _"adding separate listeners for both the parent/children, and within the children listeners update the...
In seconds (float) — same as in all (or most) sleeps & durations in Python. Indeed, this should be clarified, and could be extended with some time-parsing library to support...