Merge pull request #3945 from zgfh/patch-1

fix typo: delete '`'
This commit is contained in:
Kubernetes Prow Robot 2019-03-31 16:02:32 -07:00 committed by GitHub
commit fec5459165
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ Anytime we reference a TLS secret, we mean a PEM-encoded X.509, RSA (2048) secre
You can generate a self-signed certificate and private key with: You can generate a self-signed certificate and private key with:
```bash ```bash
$ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ${KEY_FILE} -out ${CERT_FILE} -subj "/CN=${HOST}/O=${HOST}"` $ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ${KEY_FILE} -out ${CERT_FILE} -subj "/CN=${HOST}/O=${HOST}"
``` ```
Then create the secret in the cluster via: Then create the secret in the cluster via: