Custom domain names and secure transport
Custom domain names and HTTPS secure data transport are implemented in the
route object level. They are controlled with the keywords spec.host
and
spec.tls
.
The public DNS CNAME record of the custom domain name should point to rahtiapp.fi
,
and the custom DNS name is placed in the spec.host
entry of the route object:
route-with-dns.yaml
:
apiVersion: v1
kind: Route
metadata:
labels:
app: serveapp
name: myservice
spec:
host: my-custom-dns-name.replace.this.com
to:
kind: Service
name: serve
weight: 100
The TLS certificates and private keys are placed in the spec.tls
field, for
example:
apiVersion: v1
kind: Route
metadata:
labels:
app: serveapp
name: myservice
spec:
host: my-custom-dns-name.replace.this.com
to:
kind: Service
name: serve
weight: 100
tls:
insecureEdgeTerminationPolicy: Redirect
termination: edge
certificate: |-
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
key: |-
-----BEGIN PRIVATE KEY-----
...
-----END PRIVATE KEY-----
This definition creates a route with the private key placed in
spec.tls.key
and the certificates placed in spec.tls.certificate
. In this example,
HTTP traffic is redirected to use the HTTPS protocol due to the Redirect
setting in
spec.tls.insecureEdgeTerminationPolicy
, and the TLS termination is handled by the
route object, in the sense that traffic coming from the service serve
is assumed
to be non-encrypted (the spec.tls.termination: edge
). Other termination policies:
passthrough
: Assume that the TLS connection is terminated internally in the pod and forward the encrypted traffic.reencrypt
: Terminate the TLS connection in the router and open another secure connection that must be terminated at the pod.
Caution
Always treat the contents of the field spec.tls.key
in the route objects with
special care, since the private TLS key should be never exposed to
non-trusted parties.
Let's Encrypt
letsencrypt.org provides free and open certificates. Routes can automatically obtain a "let's encrypt" certificate using the third-party openshift-acme controller. The process is simple:
- Clone the openshift-acme controller repository.
git clone https://github.com/tnozicka/openshift-acme.git
- The whole process is documented in the README.md file. We recommend the Single namespace method. It will deploy the controller inside your Rahti project and it will only work for the
Route
you have defined inside said project:
cd openshift-acme
oc apply -fdeploy/single-namespace/{role,serviceaccount,issuer-letsencrypt-live,deployment}.yaml
oc create rolebinding openshift-acme --role=openshift-acme --serviceaccount="$( oc project -q ):openshift-acme" --dry-run -o yaml | oc apply -f -
- Add an annotation to the Route you need the certificate for.
oc annotate route <route_name> kubernetes.io/tls-acme='true'
- Wait for few minutes. The controller will see that the annotation has been added, and it will start the process of requesting the certificate, validating the request, issuing the certificate, and finally adding it to the Route. It will also add an annotation to the
Route
with the status:
annotations:
acme.openshift.io/status: |
provisioningStatus:
earliestAttemptAt: "2021-02-09T10:26:15.006145385Z"
orderStatus: valid
orderURI: https://acme-v02.api.letsencrypt.org/acme/order/XXXXXXXXX/XXXXXXXXXX
startedAt: "2021-02-09T10:26:15.006145385Z"
kubernetes.io/tls-acme: 'true'
The certificate is ready. The controller will take care of checking the validity of the certificate, and of renewing it when necessary (every 3 months).