Alistair Mackay
Alistair Mackay
To be clear on this, only properties that contain some kind of numeric quantity (all resources, including custom) should pass through the natural sort algorithm - else it should be...
Raised related issue - https://github.com/kubernetes/apimachinery/issues/165
Hmm that smells too much of a workaround. "Ok, I want to sort by `metadata.name`, but I have to remember to use `--parse-quantity=false` to not get odd results". That'll be...
Perhaps SI values are an entirely new type in the type system?
Either that, or to be treated as SI, a value *must* have a numeric component prior to any recognizable unit. Issue is that a string literal value of e.g. `k`...
@pcgeek86 I had a similar issue while creating a mechanism to handle powershell hooks natively in git for Windows. The trick is to grab `stdin` directly and read from it,...
Hi, Thanks for the reply. By "Vault", I mean Hashicorp Vault. Do you have some links into the docs where this sync mechanism is explained? I basically need to block...
Or are you suggesting that a memo class may be used as the storage for the token - and this will survive evictions, and the value stored may be updated...
Cool. Makes sense now. * Create one of these locks in the operator startup (in `on.startup` is ok?) and store in the memo. * Lock/Unlock where I deal with the...
Hi @nolar One last thing. I'd like to expose Prometheus metrics. I found https://github.com/nolar/kopf/issues/289, however have you thought any further on this since then?