From 25a7eae6bf45bdbeda5a6a39d3fd939eb6af6a9a Mon Sep 17 00:00:00 2001 From: Christoph Voigt Date: Fri, 10 Nov 2023 16:01:55 +0100 Subject: [PATCH] update docs in README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index c035862..578937e 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,11 @@ please refer to [the official krakend documentation](https://www.krakend.io/docs | nameOverride | string | `""` | | | nodeSelector | object | `{}` | The nodeSelector to use for the krakend pod | | podAnnotations | object | `{}` | The annotations to use for the krakend pod | +| podDisruptionBudget | object | `{"enabled":false,"maxUnavailable":"","minAvailable":1,"unhealthyPodEvictionPolicy":""}` | podDisruptionBudget allows you to define minumum and maximum available pods | +| podDisruptionBudget.enabled | bool | `false` | Set to true to create a default ServiceMonitor for your application | +| podDisruptionBudget.maxUnavailable | string | `""` | maximum available pods | +| podDisruptionBudget.minAvailable | int | `1` | minimum available pods | +| podDisruptionBudget.unhealthyPodEvictionPolicy | string | `""` | UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction | | podSecurityContext | object | `{}` | The securityContext to use for the krakend pod | | readinessProbe | object | `{"httpGet":{"path":"/__health","port":"http"}}` | The readinessProbe to use for the krakend pod | | replicaCount | int | `1` | Number of replicas to deploy |