Skip to content

Commit

Permalink
Add openssl instructions to readme
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Taylor <steve@deployhub.com>
  • Loading branch information
sbtaylor15 committed Mar 22, 2022
1 parent cfe2c04 commit a03d904
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/deployhub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords:
- Microservices
- SBOM
type: application
version: 10.0.6
version: 10.0.7
appVersion: 10.0.0
dependencies:
- name: dh-ms-nginx
Expand Down
8 changes: 5 additions & 3 deletions charts/deployhub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Microservice Configuration Management - Track, Version, Find, Share and Deploy M
## TL;DR

```console
$ openssl genpkey -out jwt.pri -algorithm RSA -pkeyopt rsa_keygen_bits:2048
$ openssl pkey -in jwt.pri -pubout -out jwt.pub
$ helm repo add deployhub https://deployhubproject.github.io/DeployHub-Pro/
$ helm install my-release deployhub/deployhub --set dh-postgres.DBPassword=my_db_password --set dh-ms-nginx.SSLType=OFF --set dh-postgres.DBHost=deployhubdb.us-east-1.rds.amazonaws.com --set-file dh-jwt.JwtPrivateKey=jwt.pri --set-file dh-jwt.JwtPublicKey=jwt.pub
```
Expand All @@ -19,7 +21,7 @@ This chart deploys all of the required secrets, services, and deployments on a [

- Kubernetes 1.19+
- Helm 3.2.0+
- Public/Private RSA Key for JWT Tokens
- Public/Private RSA PKCS#8 Key Pair for JWT Tokens
- External Postgres Database

## Installing the Chart
Expand All @@ -34,8 +36,8 @@ The command deploys DeployHub on the Kubernetes cluster using the following para
- dh-postgres.DBPassword = Postgres Database Password
- dh-postgres.DBHost = Postgres Database Hostname
- dh-ms-nginx.SSLType = OFF (Disable the use of SSL certificates)
- dh-jwt.JwtPrivateKey = Private RSA Key for creating the JWT Token
- dh-jwt.JwtPublicKey = Public RSA Key for creating the JWT Token
- dh-jwt.JwtPrivateKey = Private RSA PKCS#8 Key for creating the JWT Token
- dh-jwt.JwtPublicKey = Public RSA PKCS#8 Key for creating the JWT Token

> **Tip**: List all releases using `helm list`
Expand Down

0 comments on commit a03d904

Please sign in to comment.