Skip to content

Commit

Permalink
Fix PDBs
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinBisson committed Feb 23, 2024
1 parent 0622297 commit 3eb8a7f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
6 changes: 3 additions & 3 deletions keda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ their default values.
| `operator.revisionHistoryLimit` | int | `10` | ReplicaSets for this Deployment you want to retain (Default: 10) |
| `permissions.operator.restrict.secret` | bool | `false` | Restrict Secret Access for KEDA operator |
| `podAnnotations.keda` | object | `{}` | Pod annotations for KEDA operator |
| `podDisruptionBudget.operator` | object | `{"minAvailable":1}` | Capability to configure [Pod Disruption Budget] |
| `podDisruptionBudget.operator` | object | `{}` | Capability to configure [Pod Disruption Budget] |
| `podLabels.keda` | object | `{}` | Pod labels for KEDA operator |
| `podSecurityContext.operator` | object | [See below](#KEDA-is-secure-by-default) | [Pod security context] of the KEDA operator pod |
| `resources.operator` | object | `{"limits":{"cpu":1,"memory":"1000Mi"},"requests":{"cpu":"100m","memory":"100Mi"}}` | Manage [resource request & limits] of KEDA operator pod |
Expand Down Expand Up @@ -173,7 +173,7 @@ their default values.
| `metricsServer.useHostNetwork` | bool | `false` | Enable metric server to use host network |
| `permissions.metricServer.restrict.secret` | bool | `false` | Restrict Secret Access for Metrics Server |
| `podAnnotations.metricsAdapter` | object | `{}` | Pod annotations for KEDA Metrics Adapter |
| `podDisruptionBudget.metricServer` | object | `{"minAvailable":1}` | Capability to configure [Pod Disruption Budget] |
| `podDisruptionBudget.metricServer` | object | `{}` | Capability to configure [Pod Disruption Budget] |
| `podLabels.metricsAdapter` | object | `{}` | Pod labels for KEDA Metrics Adapter |
| `podSecurityContext.metricServer` | object | [See below](#KEDA-is-secure-by-default) | [Pod security context] of the KEDA metrics apiserver pod |
| `resources.metricServer` | object | `{"limits":{"cpu":1,"memory":"1000Mi"},"requests":{"cpu":"100m","memory":"100Mi"}}` | Manage [resource request & limits] of KEDA metrics apiserver pod |
Expand Down Expand Up @@ -292,7 +292,7 @@ their default values.
| `logging.webhooks.level` | string | `"info"` | Logging level for KEDA Operator. allowed values: `debug`, `info`, `error`, or an integer value greater than 0, specified as string |
| `logging.webhooks.timeEncoding` | string | `"rfc3339"` | Logging time encoding for KEDA Operator. allowed values are `epoch`, `millis`, `nano`, `iso8601`, `rfc3339` or `rfc3339nano` |
| `podAnnotations.webhooks` | object | `{}` | Pod annotations for KEDA Admission webhooks |
| `podDisruptionBudget.webhooks` | object | `{"minAvailable":1}` | Capability to configure [Pod Disruption Budget] |
| `podDisruptionBudget.webhooks` | object | `{}` | Capability to configure [Pod Disruption Budget] |
| `podLabels.webhooks` | object | `{}` | Pod labels for KEDA Admission webhooks |
| `podSecurityContext.webhooks` | object | [See below](#KEDA-is-secure-by-default) | [Pod security context] of the KEDA admission webhooks |
| `resources.webhooks` | object | `{"limits":{"cpu":"50m","memory":"100Mi"},"requests":{"cpu":"10m","memory":"10Mi"}}` | Manage [resource request & limits] of KEDA admission webhooks pod |
Expand Down
20 changes: 11 additions & 9 deletions keda/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -228,17 +228,19 @@ networkPolicy:

podDisruptionBudget:
# -- Capability to configure [Pod Disruption Budget]
operator:
minAvailable: 1
# maxUnavailable: 1
operator: {}
# minAvailable: 1
# maxUnavailable: 1

# -- Capability to configure [Pod Disruption Budget]
metricServer:
minAvailable: 1
# maxUnavailable: 1
metricServer: {}
# minAvailable: 1
# maxUnavailable: 1

# -- Capability to configure [Pod Disruption Budget]
webhooks:
minAvailable: 1
# maxUnavailable: 1
webhooks: {}
# minAvailable: 1
# maxUnavailable: 1

# -- Custom labels to add into metadata
additionalLabels:
Expand Down

0 comments on commit 3eb8a7f

Please sign in to comment.