docs: add guide for custom CAs

This adds a guide on how to add a custom CA.

Signed-off-by: Andrew Rynhard <andrew@rynhard.io>
This commit is contained in:
Andrew Rynhard 2020-12-07 12:20:28 -08:00 committed by Andrey Smirnov
parent 1cf6b98fb8
commit 42f36caddd

View File

@ -0,0 +1,21 @@
---
title: "Configuring Certificate Authorities"
description: ""
---
## Appending the Certificate Authority
Put into each machine the PEM encoded certificate:
```yaml
machine:
...
files:
- content: |
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
permissions: 0644
path: /etc/ssl/certs/ca-certificates
op: append
```