Craig Ringer
Craig Ringer
@gpspake Looks like you can't do it; it's autogenerated by github.
The specific error above seems to arise from https://github.com/open-telemetry/opentelemetry-operator/blob/0dce2dfbdaefa86b0052775641a38263a7599266/pkg/collector/reconcile/configmap.go#L188 with a configmap created by https://github.com/open-telemetry/opentelemetry-operator/blob/0dce2dfbdaefa86b0052775641a38263a7599266/pkg/collector/reconcile/configmap.go#L41
See also https://github.com/open-telemetry/opentelemetry-operator/issues/873
@pavolloffay I'm suggesting that the docs for the operator cover how to raise the debug level of the operator. Managing the log level of the deployed collector is simple and...
@pavolloffay I opened a PR for operator-sdk already @ https://github.com/operator-framework/operator-sdk/pull/5766 It looks like it'll be merged soon. So the opentelemetry-collector docs could probably just link to that. It won't be...
BTW @pavolloffay I'm thinking of attempting a much bigger change for the operator at https://github.com/open-telemetry/opentelemetry-operator/issues/901 that would address a large set of related open issues. But I really need some...
For example, this ``` apiVersion: opentelemetry.io/v1alpha1 kind: OpenTelemetryCollector metadata: name: otel spec: image: my-registry/opentelemetry-collector-contrib:vA.B.C upgradeStrategy: none mode: deployment serviceAccount: otel-collector env: - name: MYAPP_ENVIRONMENT valueFrom: configMapKeyRef: name: some-configmap key: ENVIRONMENT...
Here's an expanded example of what the `PodTemplate` based `OpentelemetryCollector` could configure: ``` apiVersion: opentelemetry.io/v1alpha1 kind: OpenTelemetryCollector metadata: name: otel spec: mode: deployment upgradeStrategy: none template: spec: serviceAccountName: otel-collector imagePullSecrets:...
I'm pretty new to the stack but I could possibly attempt this, if I had some indication the idea would be welcomed. It doesn't look excessively complex. But I'd really...
@pavolloffay Yeah, that's definitely a concern. And there are some places where the operator will have to override what's in the pod spec. But if you look at the list...