Andrey Smirnov b07338f547
feat: provide machine config document to update trusted CA roots
Fixes #8867

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
2024-07-12 19:28:31 +04:00

865 B

description, title
description title
TrustedRootsConfig allows to configure additional trusted CA roots. TrustedRootsConfig

{{< highlight yaml >}} apiVersion: v1alpha1 kind: TrustedRootsConfig name: my-enterprise-ca # Name of the config document. certificates: | # List of additional trusted certificate authorities (as PEM-encoded certificates). -----BEGIN CERTIFICATE----- ... -----END CERTIFICATE----- {{< /highlight >}}

Field Type Description Value(s)
name string Name of the config document.
certificates string
List of additional trusted certificate authorities (as PEM-encoded certificates).
Multiple certificates can be provided in a single config document, separated by newline characters.