mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
cert-wip
This commit is contained in:
parent
eb531a57a4
commit
fa92a6fd70
@ -17,3 +17,163 @@ https://cert-manager.io/docs/concepts/issuer/
|
||||
## Certificate
|
||||
|
||||
https://cert-manager.io/docs/concepts/certificate/
|
||||
|
||||
|
||||
## CertificateRequests
|
||||
|
||||
## Orders and Challenges
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
You can find the latest release for `cert-manager` on their [GitHub Releases page](https://github.com/jetstack/cert-manager/) <br/>
|
||||
|
||||
For this demo, I will use K8s 1.19 and `cert-manager` [v1.0.4](https://github.com/jetstack/cert-manager/releases/tag/v1.0.4)
|
||||
|
||||
```
|
||||
|
||||
# Get a container to work in
|
||||
|
||||
# mount our kubeconfig file and source code
|
||||
docker run -it --rm -v ${HOME}:/root/ -v ${PWD}:/work -w /work --net host alpine sh
|
||||
|
||||
# install kubectl
|
||||
apk add --no-cache curl
|
||||
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
|
||||
chmod +x ./kubectl
|
||||
mv ./kubectl /usr/local/bin/kubectl
|
||||
|
||||
#test cluster access:
|
||||
/work # kubectl get nodes
|
||||
NAME STATUS ROLES AGE VERSION
|
||||
certmanager-control-plane Ready master 3m6s v1.19.1
|
||||
|
||||
|
||||
# get cert-manager
|
||||
|
||||
cd kubernetes/cert-manager/
|
||||
curl -LO https://github.com/jetstack/cert-manager/releases/download/v1.0.4/cert-manager.yaml
|
||||
|
||||
mv cert-manager.yaml cert-manager-1.0.4.yaml
|
||||
|
||||
# install cert-manager
|
||||
|
||||
kubectl create ns cert-manager
|
||||
kubectl apply --validate=false -f cert-manager-1.0.4.yaml
|
||||
```
|
||||
|
||||
## Cert Manager Resources
|
||||
|
||||
We can see our components deployed
|
||||
|
||||
```
|
||||
kubectl -n cert-manager get all
|
||||
|
||||
NAME READY STATUS RESTARTS AGE
|
||||
pod/cert-manager-86548b886-2b8x7 1/1 Running 0 77s
|
||||
pod/cert-manager-cainjector-6d59c8d4f7-hrs2v 1/1 Running 0 77s
|
||||
pod/cert-manager-webhook-578954cdd-tphpj 1/1 Running 0 77s
|
||||
|
||||
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
|
||||
service/cert-manager ClusterIP 10.96.87.136 <none> 9402/TCP 77s
|
||||
service/cert-manager-webhook ClusterIP 10.104.59.25 <none> 443/TCP 77s
|
||||
|
||||
NAME READY UP-TO-DATE AVAILABLE AGE
|
||||
deployment.apps/cert-manager 1/1 1 1 77s
|
||||
deployment.apps/cert-manager-cainjector 1/1 1 1 77s
|
||||
deployment.apps/cert-manager-webhook 1/1 1 1 77s
|
||||
|
||||
NAME DESIRED CURRENT READY AGE
|
||||
replicaset.apps/cert-manager-86548b886 1 1 1 77s
|
||||
replicaset.apps/cert-manager-cainjector-6d59c8d4f7 1 1 1 77s
|
||||
replicaset.apps/cert-manager-webhook-578954cdd 1 1 1 77
|
||||
|
||||
```
|
||||
|
||||
## Test Certificate Issuing
|
||||
|
||||
Let's create some test certificates
|
||||
|
||||
```
|
||||
kubectl apply -f test.yaml
|
||||
|
||||
kubectl describe certificate -n cert-manager-test
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
|
||||
https://cert-manager.io/docs/configuration/
|
||||
|
||||
|
||||
## DNS
|
||||
|
||||
## HTTP
|
||||
|
||||
## Ingress Controller
|
||||
|
||||
Let's deploy an Ingress controller: <br/>
|
||||
|
||||
```
|
||||
kubectl create ns ingress-nginx
|
||||
|
||||
kubectl -n ingress-nginx apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.41.2/deploy/static/provider/cloud/deploy.yaml
|
||||
|
||||
kubectl -n ingress-nginx get pods
|
||||
kubectl -n ingress-nginx get svc
|
||||
|
||||
kubectl -n ingress-nginx --address 0.0.0.0 port-forward svc/ingress-nginx-controller 80
|
||||
kubectl -n ingress-nginx --address 0.0.0.0 port-forward svc/ingress-nginx-controller 443
|
||||
```
|
||||
|
||||
We should be able to access NGINX in the browser and see a `404 Not Found` page: http://localhost/
|
||||
This indicates there are no routes to `/` and the ingress controller is running
|
||||
|
||||
## Setup my DNS
|
||||
|
||||
In my container, I can get the public IP address of my computer by running a simple command:
|
||||
|
||||
```
|
||||
curl ifconfig.co
|
||||
```
|
||||
|
||||
I can log into my DNS provider and point my DNS A record to my IP.<br/>
|
||||
Also setup my router to allow 80 and 443 to come to my PC <br/>
|
||||
|
||||
If you are running in the cloud, your Ingress controller and Cloud provider will give you a
|
||||
public IP and you can point your DNS to that accordingly.
|
||||
|
||||
## Create Let's Encrypt Issuer for our cluster
|
||||
|
||||
We create a `ClusterIssuer` that allows us to issue certs in any namespace
|
||||
|
||||
```
|
||||
kubectl apply -f cert-issuer-nginx-ingress.yaml
|
||||
|
||||
# check the issuer
|
||||
kubectl describe clusterissuer letsencrypt-cluster-issuer
|
||||
|
||||
```
|
||||
|
||||
## Issue Certificate
|
||||
|
||||
```
|
||||
kubectl apply -f certificate.yaml
|
||||
|
||||
# check the cert has been issued
|
||||
|
||||
kubectl describe certificate example-app
|
||||
|
||||
# TLS created as a secret
|
||||
kubectl get secrets
|
||||
NAME TYPE DATA AGE
|
||||
example-app-tls kubernetes.io/tls 2 84m
|
||||
```
|
||||
|
||||
## Deploy a pod that uses SSL
|
||||
|
||||
```
|
||||
kubectl apply -f .\kubernetes\deployments\
|
||||
kubectl apply -f .\kubernetes\configmaps\
|
||||
kubectl apply -f .\kubernetes\services\
|
||||
```
|
14
kubernetes/cert-manager/cert-issuer-nginx-ingress.yaml
Normal file
14
kubernetes/cert-manager/cert-issuer-nginx-ingress.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: ClusterIssuer
|
||||
metadata:
|
||||
name: letsencrypt-cluster-issuer
|
||||
spec:
|
||||
acme:
|
||||
server: https://acme-v02.api.letsencrypt.org/directory
|
||||
email: your-email@email.com
|
||||
privateKeySecretRef:
|
||||
name: letsencrypt-cluster-issuer-key
|
||||
solvers:
|
||||
- http01:
|
||||
ingress:
|
||||
class: nginx
|
26311
kubernetes/cert-manager/cert-manager-1.0.4.yaml
Normal file
26311
kubernetes/cert-manager/cert-manager-1.0.4.yaml
Normal file
File diff suppressed because it is too large
Load Diff
12
kubernetes/cert-manager/certificate.yaml
Normal file
12
kubernetes/cert-manager/certificate.yaml
Normal file
@ -0,0 +1,12 @@
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: Certificate
|
||||
metadata:
|
||||
name: example-app
|
||||
namespace: default
|
||||
spec:
|
||||
dnsNames:
|
||||
- marcel.guru
|
||||
secretName: example-app-tls
|
||||
issuerRef:
|
||||
name: letsencrypt-cluster-issuer
|
||||
kind: ClusterIssuer
|
22
kubernetes/cert-manager/ingress.yaml
Normal file
22
kubernetes/cert-manager/ingress.yaml
Normal file
@ -0,0 +1,22 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: "nginx"
|
||||
name: example-app
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- marcel.guru
|
||||
secretName: example-app-tls
|
||||
rules:
|
||||
- host: marcel.guru
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: example-service
|
||||
port:
|
||||
number: 80
|
24
kubernetes/cert-manager/test.yaml
Normal file
24
kubernetes/cert-manager/test.yaml
Normal file
@ -0,0 +1,24 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: cert-manager-test
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: Issuer
|
||||
metadata:
|
||||
name: test-selfsigned
|
||||
namespace: cert-manager-test
|
||||
spec:
|
||||
selfSigned: {}
|
||||
---
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: Certificate
|
||||
metadata:
|
||||
name: selfsigned-cert
|
||||
namespace: cert-manager-test
|
||||
spec:
|
||||
dnsNames:
|
||||
- example.com
|
||||
secretName: selfsigned-cert-tls
|
||||
issuerRef:
|
||||
name: test-selfsigned
|
Loading…
x
Reference in New Issue
Block a user