Mateusz Litwin

Results 11 comments of Mateusz Litwin

I am excluding custom labels used in my org using pattern like this: ``` labels: "k8s:!.*myorg.com" ``` This is enough to prevent cilium from creating of new security identities when...

Are there any benefits from mirroring pod labels that are not identity-relevant labels? If not, it would be best to ignore them.

I am not familiar with cilium code. Would something like this work? ``` diff --git a/pkg/k8s/watchers/pod.go b/pkg/k8s/watchers/pod.go index cc776b651a..5fda7eb89a 100644 --- a/pkg/k8s/watchers/pod.go +++ b/pkg/k8s/watchers/pod.go @@ -13,6 +13,7 @@ import (...

It seems to be caused by https://github.com/FasterXML/jackson-databind/issues/921 I suggest maybe generating `@JsonCreator` code to fix this issue? It will also get rid of `@JsonDeserialize`.

This would be great. For Java 7 it would be nice to be able to specify container for a collection or make it a normal attribute - so builder will...

I believe this is related https://github.com/palantir/http-remoting-api/issues/110. For conjure-go-runtime implementation I literally copy pasted the same regexp from http-remoting-api and added a link why we are using this and not other...

Might be hard to design a simple test. Issue occurred multiple times in the production environment where we had 100s of pods pending and 1000s of nodes to check. I...

@Huang-Wei do you have some links to the previous discussions?

@Huang-Wei @cwdsuzhou Thank you for working on this. Can you elaborate on how new feature can be used to address this issue? If I understand correctly, new feature allow us...