@@ -30,23 +30,23 @@ documentation on [installing an SSL cert for load balancing](http://docs.aws.ama
3030You can also use the Deis routers to terminate SSL connections. Use ` kubectl ` to install the
3131certificate and private keys. Open your favorite text editor and create the Kubernetes manifest:
3232
33- $ $EDITOR deis-router-default -cert.yaml
33+ $ $EDITOR deis-router-platform -cert.yaml
3434
3535At this point, you'll want to create a new Kubernetes secret bearing the wildcard certificate.
3636The following criteria must be met:
3737
38- - The name must be deis-router-default -cert
38+ - The name must be deis-router-platform -cert
3939 - The certificate's public key must be supplied as the value of the ` cert ` key
4040 - The certificate's private key must be supplied as the value of the ` key ` key
4141 - Both the certificate and private key must be base64 encoded
4242
4343For example:
4444
45- $ cat deis-router-default -cert.yaml
45+ $ cat deis-router-platform -cert.yaml
4646 apiVersion: v1
4747 kind: Secret
4848 metadata:
49- name: deis-router-default -cert
49+ name: deis-router-platform -cert
5050 namespace: deis
5151 type: Opaque
5252 data:
@@ -58,5 +58,5 @@ chain, append the intermediate certs to the bottom of the `cert` value before ba
5858cert chain.
5959
6060Once you've created the certificate manifest, you can then install the certificate with
61- ` kubectl create -f deis-router-default -cert.yaml ` . The router will pick this up and update its
61+ ` kubectl create -f deis-router-platform -cert.yaml ` . The router will pick this up and update its
6262configuration on-the-fly.
0 commit comments