Prerequisite
You already have the fullchain and private key of the SSL certificate. How to use them to access a deployment.
Kubernetes resources
We will need the following resources:
- A deployment (WebServer) [Pre-requisite]
- A NodePort pointing to the deployment
- An Ingress pointing to the NodePort
- An SSL certificate [You can get free from nginx as well]
Upload SSL Certificate as secret
Example of HAML:
ssl.yml
1 | apiVersion: v1 |
In the tls.crt
and tls.key
value, put base64 encoded string of fullchain.pem and privkey.pem files contents.
Run kubectl apply -f ssl.yml
Do not add this file in the git, as it contains sensitive certificate credentials.
NodePort Service -> Deployment
Example HAML:
nodeport.yml
1 | apiVersion: "v1" |
Run kubectl apply -f nodeport.yml
Ingress -> NodePort Service
Example HAML:
ingress.yml
1 | apiVersion: networking.k8s.io/v1 |
Run kubectl apply -f ingress.yml
Known issues
It takes some time to get the SSL certificate available to the ingress.