File tree 9 files changed +23
-23
lines changed
tests/e2e-instrumentation/instrumentation-java-tls
9 files changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ subtext: |
23
23
secretName: otel-tls-certs
24
24
configMapName: otel-ca-bundle
25
25
# otel-ca-bundle
26
- ca : ca.crt
26
+ ca_file : ca.crt
27
27
# present in otel-tls-certs
28
- cert : tls.crt
28
+ cert_file : tls.crt
29
29
# present in otel-tls-certs
30
- key : tls.key
30
+ key_file : tls.key
31
31
```
32
32
33
33
* Propagating secrets across namespaces can be done with https://github.com/EmberStack/kubernetes-reflector or https://github.com/zakkg3/ClusterSecret
Original file line number Diff line number Diff line change @@ -121,13 +121,13 @@ type TLS struct {
121
121
// CA defines the key of certificate (e.g. ca.crt) in the configmap map, secret or absolute path to a certificate.
122
122
// The absolute path can be used when certificate is already present on the workload filesystem e.g.
123
123
// /var/run/secrets/kubernetes.io/serviceaccount/service-ca.crt
124
- CA string `json:"ca ,omitempty"`
124
+ CA string `json:"ca_file ,omitempty"`
125
125
// Cert defines the key (e.g. tls.crt) of the client certificate in the secret or absolute path to a certificate.
126
126
// The absolute path can be used when certificate is already present on the workload filesystem.
127
- Cert string `json:"cert ,omitempty"`
127
+ Cert string `json:"cert_file ,omitempty"`
128
128
// Key defines a key (e.g. tls.key) of the private key in the secret or absolute path to a certificate.
129
129
// The absolute path can be used when certificate is already present on the workload filesystem.
130
- Key string `json:"key ,omitempty"`
130
+ Key string `json:"key_file ,omitempty"`
131
131
}
132
132
133
133
// Sampler defines sampling configuration.
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ metadata:
99
99
categories : Logging & Tracing,Monitoring
100
100
certified : " false"
101
101
containerImage : ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
102
- createdAt : " 2024-10-10T15:31:51Z "
102
+ createdAt : " 2024-10-16T10:10:50Z "
103
103
description : Provides the OpenTelemetry components, including the Collector
104
104
operators.operatorframework.io/builder : operator-sdk-v1.29.0
105
105
operators.operatorframework.io/project_layout : go.kubebuilder.io/v3
Original file line number Diff line number Diff line change @@ -411,13 +411,13 @@ spec:
411
411
type : string
412
412
tls :
413
413
properties :
414
- ca :
414
+ ca_file :
415
415
type : string
416
- cert :
416
+ cert_file :
417
417
type : string
418
418
configMapName :
419
419
type : string
420
- key :
420
+ key_file :
421
421
type : string
422
422
secretName :
423
423
type : string
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ metadata:
99
99
categories : Logging & Tracing,Monitoring
100
100
certified : " false"
101
101
containerImage : ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
102
- createdAt : " 2024-10-10T15:31:51Z "
102
+ createdAt : " 2024-10-16T10:10:50Z "
103
103
description : Provides the OpenTelemetry components, including the Collector
104
104
operators.operatorframework.io/builder : operator-sdk-v1.29.0
105
105
operators.operatorframework.io/project_layout : go.kubebuilder.io/v3
Original file line number Diff line number Diff line change @@ -411,13 +411,13 @@ spec:
411
411
type : string
412
412
tls :
413
413
properties :
414
- ca :
414
+ ca_file :
415
415
type : string
416
- cert :
416
+ cert_file :
417
417
type : string
418
418
configMapName :
419
419
type : string
420
- key :
420
+ key_file :
421
421
type : string
422
422
secretName :
423
423
type : string
Original file line number Diff line number Diff line change @@ -409,13 +409,13 @@ spec:
409
409
type : string
410
410
tls :
411
411
properties :
412
- ca :
412
+ ca_file :
413
413
type : string
414
- cert :
414
+ cert_file :
415
415
type : string
416
416
configMapName :
417
417
type : string
418
- key :
418
+ key_file :
419
419
type : string
420
420
secretName :
421
421
type : string
Original file line number Diff line number Diff line change @@ -1659,7 +1659,7 @@ TLS needs to be enabled by specifying https:// scheme in the Endpoint.
1659
1659
</tr>
1660
1660
</thead>
1661
1661
<tbody><tr>
1662
- <td><b>ca </b></td>
1662
+ <td><b>ca_file </b></td>
1663
1663
<td>string</td>
1664
1664
<td>
1665
1665
CA defines the key of certificate (e.g. ca.crt) in the configmap map, secret or absolute path to a certificate.
@@ -1668,7 +1668,7 @@ The absolute path can be used when certificate is already present on the workloa
1668
1668
</td>
1669
1669
<td>false</td>
1670
1670
</tr><tr>
1671
- <td><b>cert </b></td>
1671
+ <td><b>cert_file </b></td>
1672
1672
<td>string</td>
1673
1673
<td>
1674
1674
Cert defines the key (e.g. tls.crt) of the client certificate in the secret or absolute path to a certificate.
@@ -1684,7 +1684,7 @@ used from the secret defined in SecretName.<br/>
1684
1684
</td>
1685
1685
<td>false</td>
1686
1686
</tr><tr>
1687
- <td><b>key </b></td>
1687
+ <td><b>key_file </b></td>
1688
1688
<td>string</td>
1689
1689
<td>
1690
1690
Key defines a key (e.g. tls.key) of the private key in the secret or absolute path to a certificate.
Original file line number Diff line number Diff line change 8
8
tls :
9
9
secretName : client-certs
10
10
configMapName : ca
11
- ca : ca.crt
12
- cert : tls.crt
13
- key : tls.key
11
+ ca_file : ca.crt
12
+ cert_file : tls.crt
13
+ key_file : tls.key
14
14
propagators :
15
15
- tracecontext
16
16
- baggage
You can’t perform that action at this time.
0 commit comments