Mikołaj Świątek

Results 312 comments of Mikołaj Świątek

It would really help me if someone were able to reproduce this problem in a KiND cluster and post their reproduction steps. I've tried several combinations, including upgrading `0.56.0` ->...

Allowing annotations to be added to the CRDs is at least straightforward, even if it will introduce other problems due to the way Helm manages hooks. But if you want...

Worth noting that even if you solve the CRD problem, applying `v1alpha1` CRDs while also installing the operator will not work, as the conversion webhook is necessary for that, and...

Could you go into some more detail about the problem you ran into? How many Pods you were creating, how much resources the operator was using, and what happened to...

The purpose of the webhook is to make changes to Pods before they're created. For the operator this involves injecting autoinstrumentation or sidecar Otel Collector containers. As Pods are immutable,...

We need the instrumentation container to be able to copy the agent JAR to a shared volume, from which the application can read it. Busybox `cp` is the simplest way...

> A possible development is to use a container as volume, a new feature previewed in kubernetes 1.31: https://kubernetes.io/docs/tasks/configure-pod-container/image-volumes/ That would be ideal! Hopefully this feature makes it out of...

Could you post your OpenTelemetryCollector CR? From your description, what you're trying to do should work, but it's hard to say without more details.

Could you please reformat these into a more readable form? Using code blocks tagged `yaml` should help. ````md ```yaml apiVersion: monitoring.coreos.com/v1 kind: PodMonitor metadata: ``` ````

In reality, I think the logic here should be very simple. We should clear everything except labels and annotations, and even in their case I'm not completely convinced this is...