Skip to content

Commit 4b53b09

Browse files
authored
Merge pull request #89664 from ShaunaDiaz/OSDOCS-11186
OSDOCS-11186: adds TLS config params MicroShift
2 parents b407f8d + 36c0603 commit 4b53b09

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

modules/microshift-config-parameters-table.adoc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,21 @@ The following table explains {microshift-short} configuration YAML parameters an
5353
|Fully qualified domain names (FQDNs), wildcards such as `*.domain.com`, or IP addresses.
5454
|Subject Alternative Names for API server certificates. SANs indicate all of the domain names and IP addresses that are secured by a certificate.
5555

56+
|`tls`
57+
|`list`
58+
|Defines the transport later protocol (TLS) used and the cipher suites allowed. Provides security for the exposed {microshift-short} API server and internal control plane endpoints.
59+
60+
|`tls.cipherSuites`
61+
|`string`
62+
|Lists the allowed cipher suites that the API server accepts and serves. Defaults to the cipher suites allowed with the TLS specification set in the `tls.minVersion` parameter.
63+
64+
|`tls.minVersion`
65+
|`VersionTLS12` or `VersionTLS13`
66+
|Specifies the minimum version of TLS to serve from the API serve. Default is value is `VersionTLS12`. TLS 1.3 ciphers are preset and not configurable.
67+
5668
|`debugging.logLevel`
5769
|`Normal`, `Debug`, `Trace`, or `TraceAll`
58-
|Log verbosity. Default is `Normal`.
70+
|Log verbosity. Default value is is `Normal`.
5971

6072
|`dns.baseDomain`
6173
|`valid domain`

modules/microshift-default-settings.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ apiServer:
3131
names:
3232
- ""
3333
subjectAltNames: []
34+
tls:
35+
cipherSuites:
36+
- ""
37+
minVersion: VersionTLS12
3438
debugging:
3539
logLevel: "Normal"
3640
dns:

0 commit comments

Comments
 (0)