ChristianCiach

Results 129 comments of ChristianCiach

> What if your developers use structured logging concepts to add fields to the log instead of MDC? Would you expect these to be at the top level or also...

Actually, some of our developers already use the structured logging concepts of logback to add a very specific top level key, namely `alert`. Logback/slf4j has "error" as the highest log...

I think MDC serves a difference use-case than general structured logging. Usually I see MDC used to just dump the current "context" of a transaction. This includes the transaction-id, the...

In https://github.com/CycloneDX/cyclonedx-gradle-plugin/commit/c6250ecb3d1c0c49b88a198f97efb7706fcc8d1c @glefloch replaced instances of `List` with `ListProperty`, which is a good thing, but unfortunately the README hasn't been adjusted accordingly. Gradles `ListProperty` does not provide a `plus` method,...

`setSkipConfigs` actually replaced the list before 1.7.0, but now it has the semantics of an `addAll` methods. This seems like a bug to me, because it's confusing and the method...

The actual deployment of the not-really-changed ConfigMap is very fast, less than a second: ``` 3:00:12PM: ---- applying 1 changes [0/1 done] ---- 3:00:12PM: update configmap/clustering-cacerts-m7b68mk2mm (v1) namespace: default 3:00:12PM:...

Kapp version 0.51.0 behaves the same, so this is not a very new bug.

Thank you for your fast response! Well, we do have a custom kapp config, but I can reproduce this issue even without those. This is very confusing. I will try...

There is something **inside** the ConfigMap contents that triggers this issue. It is a root-certiticate bundle and after stripping more and more certificates from the ConfigMap, the issue eventually disappears....

Here you go: https://gist.github.com/ChristianCiach/3ac9b7261ab9b14d7cdefe7b171b542f Can you reproduce the issue when deploying this file using `kapp deploy -a app-name -f configmap-with-bug.yaml`? By the way, the file has been automatically created from...