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: operator, collector
6
+
7
+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8
+
note: Allow operator to get TLS settings from OpenShift `APIServer` CR and configure operands TLS settings.
9
+
10
+
# One or more tracking issues related to the change
11
+
issues: [4669]
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
+
Added operator flag `--tls-cluster-profile` which obtains the TLS min version and cipher suites from the OpenShift `APIServer` `cluster` custom resource (CR).
18
+
It overrides the `--tls-min-version` and `--tls-cipher-suites` flags if set.
19
+
The flags is disabled by default on Kubernetes and enabled on OpenShift.
20
+
21
+
Added operator flag `--tls-configure-operands` which configures operands TLS settings (min version, cipher suites)
22
+
based on the supplied operator TLS flags (`--tls-cipher-suites` and `--tls-min-version`) or from the OpenShift `APIServer` CR
23
+
if `--tls-cluster-profile` is enabled.
24
+
The flag is disabled by default on Kubernetes and enabled on OpenShift.
25
+
26
+
The `--tls-min-version` defaults to `TLSv1.2` which matches the collector's default.
27
+
The `--tls-cipher-suites` is empty by default which matches the collector's default.
28
+
Therefore enabling `--tls-configure-operands` with the default TLS flags should not change the collector's behavior.
0 commit comments