Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added self signed certificates values documentation in README #105

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions charts/port-ocean/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ The following table lists the configuration parameters of the `port-ocean` chart
| `integration.type` | Type of the integration. i.e (`pager-duty`) | `""` |
| `integration.config` | Configuration for the integration. | `{}` |
| `integration.secrets` | Secrets for the integration (irrelevant if secret.useExistingSecret=true). | `{}` |
| `selfSignedCertificate.enabled` | Enable self-signed certificate trust for the integration. | `false` |
| `selfSignedCertificate.certificate` | The value of the self-signed certificate (only when `selfSignedCertificate.enabled=true`) | `""` |
| `selfSignedCertificate` | Self Signed certificate for the integration | `{}` |
| `selfSignedCertificate.enabled` | Enable self-signed certificate trust for the integration. | `false` |
| `selfSignedCertificate.certificate` | The value of the self-signed certificate (only when `selfSignedCertificate.enabled=true`) | `""` |
| `selfSignedCertificate.secret` | Secret with self-signed certificate | `{}` |
| `selfSignedCertificate.secret.useExistingSecret` | Enable this if you wish to use your own secret with the self-signed certificate | `false` |
| `selfSignedCertificate.secret.key` | The key in the existing self-signed certificate secret | `crt` |
| `selfSignedCertificate.secret.name` | The name of an existing secret containing the self-signed certificate | `""` |
| `eventListener.type` | Type of the event listener for the integration, one of the following "WEBHOOK" / "KAFKA" / "SAMPLE" | `"KAFKA"` |

To override values in `helm install`, use either the `--set` flag.
Expand Down
Loading