Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update external-datastore.md #646

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/src/snap/howto/external-datastore.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Create a configuration file and insert the contents below while replacing
the placeholder values based on the configuration of your etcd cluster.

```yaml
datastore: external
datastore-type: external
datastore-url: "<etcd-member-addresses>"
datastore-ca-crt: |
<etcd-root-ca-certificate>
Expand All @@ -36,9 +36,10 @@ datastore-client-crt: |
datastore-client-key: |
<etcd-client-key>
```

<!-- markdownlint-disable -->
* `datastore-url` expects a comma seperated list of addresses
(e.g. `https://10.42.254.192:2379,https://10.42.254.193:2379,https://10.42.254.194:2379`)
<!-- markdownlint-restore -->
* `datastore-ca-crt` expects a certificate for the CA in PEM format
* `datastore-client-crt` expects a certificate that's signed by the root CA
for the client in PEM format
Expand Down
Loading