Skip to content

Commit

Permalink
updated metadata and README
Browse files Browse the repository at this point in the history
  • Loading branch information
10ko committed Dec 31, 2019
1 parent 4aa9a2f commit 68fdf28
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

Easily generate a Kubernetes TLS secret manifest from a TLS key/certificate pair.

**Use case:** you want to [secure an Ingress](https://kubernetes.io/docs/concepts/services-networking/ingress/#tls) specifying a secret containing the TLS key/cert pair.

> NOTE: If your goal it's just to create a tls secret in a cluster you can use `kubectl` instead.
```sh
kubectl create secret tls ${CERT_NAME} --key ${KEY_FILE} --cert ${CERT_FILE}
```

## Installation

```sh
Expand Down
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,16 @@
"secret",
"tls"
],
"author": "Emanuele Libralato",
"author": "Emanuele Libralato - 10ko",
"homepage": "/~https://github.com/10ko/cert2secret#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+/~https://github.com/10ko/cert2secret.git"
},
"bugs": {
"url": "/~https://github.com/10ko/cert2secret/issues"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.0.1",
Expand Down

0 comments on commit 68fdf28

Please sign in to comment.