-
Notifications
You must be signed in to change notification settings - Fork 258
Add docs for tls-additional #1981
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
base: main
Are you sure you want to change the base?
Conversation
|
@snasovich does this need anything to unblock? |
LucasSaintarbor
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jakefhyde Sorry for the late review. Requesting some small changes. May rebase your branch and add these changes to the version docs they apply to i.e. versioned_docs/version-2.12/getting-started/installation-and-upgrade/resources/add-tls-secrets.md, versioned_docs/version-2.11/getting-started/installation-and-upgrade/resources/add-tls-secrets.md, versioned_docs/version-2.10/getting-started/installation-and-upgrade/resources/add-tls-secrets.md, versioned_docs/version-2.9/getting-started/installation-and-upgrade/resources/add-tls-secrets.md. Thanks!
|
|
||
| ## Adding Additional CA Certificates | ||
|
|
||
| If you are using a node driver which makes API requests using a different CA than the one configured for Rancher, additional root certificates and certificate chains can be added. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| If you are using a node driver which makes API requests using a different CA than the one configured for Rancher, additional root certificates and certificate chains can be added. | |
| If you are using a node driver that makes API requests with a different CA than the one configured for Rancher, you can add additional root certificates and certificate chains. |
| Create a unique file ending in `.pem` for each certificate that is required, and use kubectl to create the | ||
| `tls-additional` secret in the `cattle-system` namespace. | ||
|
|
||
| ``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ``` | |
| ```console |
| --from-file=cacerts1.pem=cacerts1.pem --from-file=cacerts2.pem=cacerts2.pem | ||
| ``` | ||
|
|
||
| These CA root certificates and certificate chains will be mounted into the node driver pod during provisioning. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| These CA root certificates and certificate chains will be mounted into the node driver pod during provisioning. | |
| Rancher mounts these CA root certificates and certificate chains into the node driver pod during provisioning. |
Fixes #1858
Reminders
See the README for more details on how to work with the Rancher docs.
Verify if changes pertain to other versions of Rancher. If they do, finalize the edits on one version of the page, then apply the edits to the other versions.
If the pull request is dependent on an upcoming release, remember to add a "MERGE ON RELEASE" label and set the proper milestone.
Description
documenting how to configure
tls-additional, and what it is used for.Comments
Would love some feedback on this.
SURE-9870