Skip to content

Commit

Permalink
"kubectl create secret" command corrected #83
Browse files Browse the repository at this point in the history
  • Loading branch information
thr authored and thr committed May 10, 2024
1 parent 129be3c commit 6bedd9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion microservicesruntime/examples/msr-with-tls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This example shows how to configure the microservices runtime deployment to use
For this example you will need to deploy a TLS secret named `tls-secret` to be deployed.

```
kubectl create secret tls-secret --cert=path/to/certificate.crt --key=path/to/private.key --namespace=my-namespace
kubectl create secret generic tls-secret --cert=path/to/certificate.crt --key=path/to/private.key --namespace=my-namespace
```

## Values
Expand Down
4 changes: 2 additions & 2 deletions mywebmethodsserver/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ mws:
# -- The secret name containing user and password for the JDBC connection
# By default the secret name contains of the full name + "-mws-secret".
# Provide a value if you setup a secret manually. Example:
# kubectl create secret mws-secret --from-literal=user=mwsuser --from-literal=password=mypassword
# and use "secretName: mws-secret" in your values file
# `kubectl create secret generic mws-secret --from-literal=user=mwsuser --from-literal=password=mypassword`
# and use `secretName: mws-secret` in your values file
secretName:
jdbc:
# -- Database connection URL, based on the type of database and the driver.
Expand Down

0 comments on commit 6bedd9e

Please sign in to comment.