From 60e72079fb02204e45178f185ab6b7e7eb661656 Mon Sep 17 00:00:00 2001 From: miampf Date: Tue, 11 Feb 2025 14:10:19 +0100 Subject: [PATCH] Fix some vale errors --- docs/docs/workflows/troubleshooting.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/workflows/troubleshooting.md b/docs/docs/workflows/troubleshooting.md index 7f1821de8..4a1ac787f 100644 --- a/docs/docs/workflows/troubleshooting.md +++ b/docs/docs/workflows/troubleshooting.md @@ -150,9 +150,9 @@ Debugging via a shell on a node is [directly supported by Kubernetes](https://ku ### Emergency SSH access -Emergency SSH access to nodes can be useful to diagnose issues or download important data even in the event that the kubernetes API is not accessible anymore. +Emergency SSH access to nodes can be useful to diagnose issues or download important data even if the Kubernetes API isn't reachable anymore. -1. Enter the `constellation-terraform` directory in your constellation workspace and allow emergency SSH access to the cluster: +1. Enter the `constellation-terraform` directory in your constellation workspace and enable emergency SSH access to the cluster: ```bash cd constellation-terraform @@ -160,16 +160,16 @@ Emergency SSH access to nodes can be useful to diagnose issues or download impor terraform apply ``` -2. Sign an existing SSH keypair with your master secret: +2. Sign an existing SSH key with your master secret: ```bash cd ../ # go back to your constellation workspace constellation ssh --key your_public_key.pub ``` - A certificate will be written to `constellation_cert.pub`. + A certificate is written to `constellation_cert.pub`. - The certificate is valid for 24 hours and allows you to access your constellation nodes using + The certificate is valid for 24 hours and enables you to access your constellation nodes using [certificate based authentication](https://en.wikibooks.org/wiki/OpenSSH/Cookbook/Certificate-based_Authentication). 3. Finally, you can connect to any constellation node using your certificate and your private key.