updated docs - certificate verification
parent
b1c7cf9cec
commit
e9db375e4c
|
@ -55,3 +55,4 @@ Kubernetes The Hard Way guides you through bootstrapping a highly available Kube
|
|||
* [Smoke Test](docs/15-smoke-test.md)
|
||||
* [E2E Test](docs/16-e2e-tests.md)
|
||||
* [Extra - Dynamic Kubelet Configuration](docs/17-extra-dynamic-kubelet-configuration.md)
|
||||
* [Extra - Certificate Verification](docs/verify-certificates.md)
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 100 KiB |
Binary file not shown.
After Width: | Height: | Size: 75 KiB |
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
|
@ -0,0 +1,24 @@
|
|||
# Verify Certificates in Master-1/2 & Worker-1
|
||||
|
||||
This script intends to assist the verification of certificates for each Kubernetes component as part of building the cluster. The execution of the script is straight forward as soon as you have completed the Lab steps up to [Bootstrapping the Kubernetes Worker Nodes](./09-bootstrapping-kubernetes-workers.md). The script is named as `cert_verify.sh` and it is available at `/home/vagrant` directory of master-1 , master-2 and worker-1 nodes.
|
||||
|
||||
It is important that the script execution needs to be done by following commands after logging into the respective virtual machines [ whether it is master-1 / master-2 / worker-1 ] via SSH.
|
||||
|
||||
```bash
|
||||
cd /home/vagrant
|
||||
bash cert_verify.sh
|
||||
```
|
||||
|
||||
Following are the successful output of script execution under different nodes,
|
||||
|
||||
1. VM: Master-1
|
||||
|
||||

|
||||
|
||||
2. VM: Master-2
|
||||
|
||||

|
||||
|
||||
3. VM: Worker-1
|
||||
|
||||

|
Loading…
Reference in New Issue