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

[TT-9919] add docs for configuring cert-manager and webhooks #6054

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
22 changes: 22 additions & 0 deletions tyk-docs/content/api-management/automations/operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -5066,3 +5066,25 @@ Here are the supported features:
| Partitions | ✅ | v0.1 | [Partitioned policies]({{< ref "#security-policy-example" >}}) |
| Per API limit | ✅ | v1.0 | [Per API Limit]({{< ref "#security-policy-example" >}}) |
| Per-Endpoint limit | ✅ | v1.0 | [Per Endpoint Limit]({{< ref "#security-policy-example" >}}) |

##### Webhooks
Webhooks can now be configured using the Helm chart by specifying the necessary settings in the values.yaml file of the operator.
In addition to this, using `.Values.webhookPort` to set the operator service port has been deprecated and now replaced with
`.Values.webhooks.port`.

```
webhooks:
enabled: true
port: 9443
annotations: {}
tls:
useCertManager: true
secretName: webhook-server-cert
certificatesMountPath: "/tmp/k8s-webhook-server/serving-certs"
```
- `enabled`: Enables or disables webhooks.
- `port`: Specifies the port for webhook communication.
- `annotations`: Allows adding custom annotations.
- `tls.useCertManager`: If true, Cert-Manager will handle TLS certificates.
- `tls.secretName`: The name of the Kubernetes Secret storing the TLS certificate.
- `tls.certificatesMountPath`: Path where the webhook server mounts its certificates.