Skip to content

Commit ef38d31

Browse files
committed
bug(docs): deis-router-platform-cert not deis-router-default-cert
1 parent b4f6a60 commit ef38d31

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/managing-workflow/platform-ssl.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ documentation on [installing an SSL cert for load balancing](http://docs.aws.ama
3030
You can also use the Deis routers to terminate SSL connections. Use `kubectl` to install the
3131
certificate 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

3535
At this point, you'll want to create a new Kubernetes secret bearing the wildcard certificate.
3636
The 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

4343
For 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
5858
cert chain.
5959

6060
Once 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
6262
configuration on-the-fly.

0 commit comments

Comments
 (0)