You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable controller and webhook for TargetAllocator CR (#3426)
* Enable controller and webhook for TargetAllocator CR
# Conflicts:
# bundle/community/manifests/opentelemetry-operator.clusterserviceversion.yaml
# bundle/openshift/manifests/opentelemetry-operator.clusterserviceversion.yaml
# Conflicts:
# bundle/community/manifests/opentelemetry-operator.clusterserviceversion.yaml
# bundle/openshift/manifests/opentelemetry-operator.clusterserviceversion.yaml
* Add documentation about the TA CRD
* Update controllers/targetallocator_controller.go
Co-authored-by: Jacob Aronoff <[email protected]>
* Apply suggestions from code review
Co-authored-by: Jacob Aronoff <[email protected]>
* Fix e2e test
* Use TA CRD only if it's available
This way we won't break installations which don't have the new CRD yet
for whatever reason.
---------
Co-authored-by: Jacob Aronoff <[email protected]>
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2
+
change_type: new_component
3
+
4
+
# The name of the component, or a single word describing the area of concern, (e.g. collector, target allocator, auto-instrumentation, opamp, github action)
5
+
component: target allocator
6
+
7
+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8
+
note: Introduce TargetAllocator CRD
9
+
10
+
# One or more tracking issues related to the change
11
+
issues: [2422]
12
+
13
+
# (Optional) One or more lines of additional information to render under the primary note.
14
+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15
+
# Use pipe (|) for multiline entries.
16
+
subtext: See the [CRD changelog](./docs/crd-changelog.md) for more information.
- description: TargetAllocator is the Schema for the targetallocators API.
245
+
displayName: Target Allocator
246
+
kind: TargetAllocator
247
+
name: targetallocators.opentelemetry.io
248
+
resources:
249
+
- kind: ConfigMaps
250
+
name: ""
251
+
version: v1
252
+
- kind: Deployment
253
+
name: ""
254
+
version: apps/v1
255
+
- kind: Pod
256
+
name: ""
257
+
version: v1
258
+
- kind: PodDisruptionBudget
259
+
name: ""
260
+
version: policy/v1
261
+
- kind: Service
262
+
name: ""
263
+
version: v1
264
+
- kind: ServiceAccount
265
+
name: ""
266
+
version: v1
267
+
specDescriptors:
268
+
- description: ObservabilitySpec defines how telemetry data gets handled.
269
+
displayName: Observability
270
+
path: observability
271
+
- description: Metrics defines the metrics configuration for operands.
272
+
displayName: Metrics Config
273
+
path: observability.metrics
274
+
- description: Metrics defines the metrics configuration for operands.
275
+
displayName: Metrics Config
276
+
path: observability.metrics
277
+
- description: EnableMetrics specifies if ServiceMonitor or PodMonitor(for sidecar
278
+
mode) should be created for the service managed by the OpenTelemetry Operator.
279
+
The operator.observability.prometheus feature gate must be enabled to use
280
+
this feature.
281
+
displayName: Create ServiceMonitors for OpenTelemetry Collector
282
+
path: observability.metrics.enableMetrics
283
+
- description: EnableMetrics specifies if ServiceMonitor or PodMonitor(for sidecar
284
+
mode) should be created for the service managed by the OpenTelemetry Operator.
285
+
The operator.observability.prometheus feature gate must be enabled to use
286
+
this feature.
287
+
displayName: Create ServiceMonitors for OpenTelemetry Collector
288
+
path: observability.metrics.enableMetrics
289
+
version: v1alpha1
244
290
description: |-
245
291
OpenTelemetry is a collection of tools, APIs, and SDKs. You use it to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) for analysis in order to understand your software's performance and behavior.
0 commit comments