Skip to content

Commit

Permalink
regenerate
Browse files Browse the repository at this point in the history
Signed-off-by: Benedikt Bongartz <bongartz@klimlive.de>
  • Loading branch information
frzifus committed Dec 8, 2022
1 parent c5de16a commit 807a7ab
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 1 deletion.
16 changes: 16 additions & 0 deletions apis/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions bundle/manifests/opentelemetry-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,18 @@ spec:
- get
- patch
- update
- apiGroups:
- route.openshift.io
resources:
- routes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- authentication.k8s.io
resources:
Expand Down
15 changes: 15 additions & 0 deletions bundle/manifests/opentelemetry.io_opentelemetrycollectors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1206,6 +1206,20 @@ spec:
resource. Ingress controller implementations use this field
to know whether they should be serving this Ingress resource.
type: string
route:
description: Route is an OpenShift specific section that is only
considered when type "routev1" is used.
properties:
termination:
description: Termination indicates termination type. By default
"edge" is used.
enum:
- insecure
- edge
- passthrough
- reencrypt
type: string
type: object
tls:
description: TLS configuration.
items:
Expand Down Expand Up @@ -1236,6 +1250,7 @@ spec:
description: 'Type default value is: "" Supported types are: ingress'
enum:
- ingress
- route
type: string
type: object
maxReplicas:
Expand Down
15 changes: 15 additions & 0 deletions config/crd/bases/opentelemetry.io_opentelemetrycollectors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1204,6 +1204,20 @@ spec:
resource. Ingress controller implementations use this field
to know whether they should be serving this Ingress resource.
type: string
route:
description: Route is an OpenShift specific section that is only
considered when type "routev1" is used.
properties:
termination:
description: Termination indicates termination type. By default
"edge" is used.
enum:
- insecure
- edge
- passthrough
- reencrypt
type: string
type: object
tls:
description: TLS configuration.
items:
Expand Down Expand Up @@ -1234,6 +1248,7 @@ spec:
description: 'Type default value is: "" Supported types are: ingress'
enum:
- ingress
- route
type: string
type: object
maxReplicas:
Expand Down
12 changes: 12 additions & 0 deletions config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,15 @@ rules:
- get
- patch
- update
- apiGroups:
- route.openshift.io
resources:
- routes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
38 changes: 37 additions & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3843,6 +3843,13 @@ Ingress is used to specify how OpenTelemetry Collector is exposed. This function
IngressClassName is the name of an IngressClass cluster resource. Ingress controller implementations use this field to know whether they should be serving this Ingress resource.<br/>
</td>
<td>false</td>
</tr><tr>
<td><b><a href="#opentelemetrycollectorspecingressroute">route</a></b></td>
<td>object</td>
<td>
Route is an OpenShift specific section that is only considered when type "routev1" is used.<br/>
</td>
<td>false</td>
</tr><tr>
<td><b><a href="#opentelemetrycollectorspecingresstlsindex">tls</a></b></td>
<td>[]object</td>
Expand All @@ -3856,7 +3863,36 @@ Ingress is used to specify how OpenTelemetry Collector is exposed. This function
<td>
Type default value is: "" Supported types are: ingress<br/>
<br/>
<i>Enum</i>: ingress<br/>
<i>Enum</i>: ingress, route<br/>
</td>
<td>false</td>
</tr></tbody>
</table>


### OpenTelemetryCollector.spec.ingress.route
<sup><sup>[↩ Parent](#opentelemetrycollectorspecingress)</sup></sup>



Route is an OpenShift specific section that is only considered when type "routev1" is used.

<table>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
<th>Required</th>
</tr>
</thead>
<tbody><tr>
<td><b>termination</b></td>
<td>enum</td>
<td>
Termination indicates termination type. By default "edge" is used.<br/>
<br/>
<i>Enum</i>: insecure, edge, passthrough, reencrypt<br/>
</td>
<td>false</td>
</tr></tbody>
Expand Down

0 comments on commit 807a7ab

Please sign in to comment.