Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$ certbot certonly --manual -d *.globuswhatever.ndslabs.org --agree-tos --no-bootstrap --server https://acme-v02.api.letsencrypt.org/directory
...
Please deploy a DNS TXT record under the name
_acme-challenge.whatever.ndslabs.org with the following value:

XXuXXmIvjuvCNa-cXXoX4Xy0c2VDkbQrNnp3V4qrnXo

Before continuing, verify the record is deployed.

...

In the certbot window, Press Enter to Continue.  This will create the certificate in /etc/letsencrypt/live/domain.  

Code Block
cp -r /etc/letsencrypy/archive/domain .


Exit the container

Code Block
cd domain
kubectl create secret generic ndslabs-tls-secret --from-file=tls.crt=fullchainfullchain1.pem --from-file=tls.key=privkeyprivkey1.pem --namespace=default


A few things to note: 

...