Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b484a01

Browse files
committedOct 7, 2024·
removed extra
1 parent e324a7f commit b484a01

8 files changed

+25
-7
lines changed
 

‎apis/v1beta1/opentelemetrycollector_types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ type OpenTelemetryCollectorSpec struct {
113113
// functionality is only available if one of the valid modes is set.
114114
// Valid modes are: deployment, daemonset and statefulset.
115115
// +optional
116-
// +kubebuilder:validation:Enum=deployment;daemonSet;statefulSet;
116+
// +kubebuilder:validation:Enum=deployment;daemonSet;statefulSet
117117
Ingress Ingress `json:"ingress,omitempty"`
118118
// Liveness config for the OpenTelemetry Collector except the probe handler which is auto generated from the health extension of the collector.
119119
// It is only effective when healthcheckextension is configured in the OpenTelemetry Collector pipeline.

‎bundle/community/manifests/opentelemetry-operator.clusterserviceversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ metadata:
9999
categories: Logging & Tracing,Monitoring
100100
certified: "false"
101101
containerImage: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
102-
createdAt: "2024-10-06T07:35:12Z"
102+
createdAt: "2024-10-06T13:43:33Z"
103103
description: Provides the OpenTelemetry components, including the Collector
104104
operators.operatorframework.io/builder: operator-sdk-v1.29.0
105105
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
@@ -479,7 +479,7 @@ spec:
479479
valueFrom:
480480
fieldRef:
481481
fieldPath: spec.serviceAccountName
482-
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.109.0-14-g703bd614
482+
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.109.0-15-ge324a7fc
483483
livenessProbe:
484484
httpGet:
485485
path: /healthz

‎bundle/community/manifests/opentelemetry.io_opentelemetrycollectors.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -5923,6 +5923,7 @@ spec:
59235923
mountpath:
59245924
type: string
59255925
name:
5926+
minLength: 3
59265927
type: string
59275928
required:
59285929
- mountpath
@@ -9260,8 +9261,12 @@ spec:
92609261
properties:
92619262
replicas:
92629263
format: int32
9264+
minimum: 0
92639265
type: integer
92649266
selector:
9267+
enum:
9268+
- deployment
9269+
- statefulset
92659270
type: string
92669271
statusReplicas:
92679272
type: string

‎bundle/openshift/manifests/opentelemetry-operator.clusterserviceversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ metadata:
9999
categories: Logging & Tracing,Monitoring
100100
certified: "false"
101101
containerImage: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
102-
createdAt: "2024-10-06T07:35:23Z"
102+
createdAt: "2024-10-06T13:43:46Z"
103103
description: Provides the OpenTelemetry components, including the Collector
104104
operators.operatorframework.io/builder: operator-sdk-v1.29.0
105105
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
@@ -483,7 +483,7 @@ spec:
483483
valueFrom:
484484
fieldRef:
485485
fieldPath: spec.serviceAccountName
486-
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.109.0-14-g703bd614
486+
image: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator:0.109.0-15-ge324a7fc
487487
livenessProbe:
488488
httpGet:
489489
path: /healthz

‎bundle/openshift/manifests/opentelemetry.io_opentelemetrycollectors.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -5923,6 +5923,7 @@ spec:
59235923
mountpath:
59245924
type: string
59255925
name:
5926+
minLength: 3
59265927
type: string
59275928
required:
59285929
- mountpath
@@ -9260,8 +9261,12 @@ spec:
92609261
properties:
92619262
replicas:
92629263
format: int32
9264+
minimum: 0
92639265
type: integer
92649266
selector:
9267+
enum:
9268+
- deployment
9269+
- statefulset
92659270
type: string
92669271
statusReplicas:
92679272
type: string

‎config/crd/bases/opentelemetry.io_opentelemetrycollectors.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -5909,6 +5909,7 @@ spec:
59095909
mountpath:
59105910
type: string
59115911
name:
5912+
minLength: 3
59125913
type: string
59135914
required:
59145915
- mountpath
@@ -9246,8 +9247,12 @@ spec:
92469247
properties:
92479248
replicas:
92489249
format: int32
9250+
minimum: 0
92499251
type: integer
92509252
selector:
9253+
enum:
9254+
- deployment
9255+
- statefulset
92519256
type: string
92529257
statusReplicas:
92539258
type: string

‎config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
8-
newTag: 0.109.0-14-g703bd614
8+
newTag: 0.109.0-15-ge324a7fc

‎docs/api.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -50578,14 +50578,17 @@ Scale is the OpenTelemetryCollector's scale subresource status.
5057850578
OpenTelemetryCollector's deployment or statefulSet.<br/>
5057950579
<br/>
5058050580
<i>Format</i>: int32<br/>
50581+
<i>Minimum</i>: 0<br/>
5058150582
</td>
5058250583
<td>false</td>
5058350584
</tr><tr>
5058450585
<td><b>selector</b></td>
50585-
<td>string</td>
50586+
<td>enum</td>
5058650587
<td>
5058750588
The selector used to match the OpenTelemetryCollector's
5058850589
deployment or statefulSet pods.<br/>
50590+
<br/>
50591+
<i>Enum</i>: deployment, statefulset<br/>
5058950592
</td>
5059050593
<td>false</td>
5059150594
</tr><tr>

0 commit comments

Comments
 (0)
Please sign in to comment.