Creating a user in the Kubernetes cluster
Step 1: Generate a private key
To generate a private key with OpenSSL, run the following command:
openssl genrsa -out robin.key 2048
This command generates a new 2048-bit RSA private key and saves it to a file called user.key.
Step 2: Create a cert...