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
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2
+
change_type: enhancement
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: auto-instrumentation
6
+
7
+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8
+
note: Add support for specifying exporter TLS certificates in auto-instrumentation.
9
+
10
+
# One or more tracking issues related to the change
11
+
issues: [3338]
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: |
17
+
Now Instrumentation CR supports specifying TLS certificates for exporter:
18
+
```yaml
19
+
spec:
20
+
exporter:
21
+
endpoint: https://otel-collector:4317
22
+
tls:
23
+
secretName: otel-tls-certs
24
+
configMapName: otel-ca-bundle
25
+
# otel-ca-bundle
26
+
ca: ca.crt
27
+
# present in otel-tls-certs
28
+
cert: tls.crt
29
+
# present in otel-tls-certs
30
+
key: tls.key
31
+
```
32
+
33
+
* Propagating secrets across namespaces can be done with https://github.com/EmberStack/kubernetes-reflector or https://github.com/zakkg3/ClusterSecret
34
+
* Restarting workloads on certificate renewal can be done with https://github.com/stakater/Reloader or https://github.com/wave-k8s/wave
0 commit comments