Skip to content

Commit 13b8fc7

Browse files
feat(chart): update values for admission controller
Change-Id: I7eb9cd345f15ca60fd3ec27a6e5b79cba9466a89
1 parent d4a2651 commit 13b8fc7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

vertical-pod-autoscaler/charts/vertical-pod-autoscaler/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ The Vertical Pod Autoscaler (VPA) automatically adjusts the CPU and memory resou
3232
| admissionController.podAnnotations | object | `{}` | |
3333
| admissionController.podDisruptionBudget.enabled | bool | `true` | |
3434
| admissionController.podDisruptionBudget.maxUnavailable | int or string | `nil` | Maximum number/percentage of pods that can be unavailable after the eviction. IMPORTANT: You can specify either 'minAvailable' or 'maxUnavailable', but not both. |
35-
| admissionController.podDisruptionBudget.minAvailable | int or string | `2` | Minimum number/percentage of pods that must be available after the eviction. IMPORTANT: You can specify either 'minAvailable' or 'maxUnavailable', but not both. |
35+
| admissionController.podDisruptionBudget.minAvailable | int or string | `1` | Minimum number/percentage of pods that must be available after the eviction. IMPORTANT: You can specify either 'minAvailable' or 'maxUnavailable', but not both. |
3636
| admissionController.podLabels | object | `{}` | |
37-
| admissionController.replicas | int | `1` | |
37+
| admissionController.replicas | int | `2` | |
3838
| admissionController.resources.limits.cpu | string | `"200m"` | |
3939
| admissionController.resources.limits.memory | string | `"500Mi"` | |
4040
| admissionController.resources.requests.cpu | string | `"50m"` | |

vertical-pod-autoscaler/charts/vertical-pod-autoscaler/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ admissionController:
4242
targetPort: 8000
4343

4444
# Number of Admission Controller replicas to create.
45-
replicas: 1
45+
replicas: 2
4646

4747
# Labels to add to the Admission Controller pod.
4848
podLabels: {}
@@ -90,8 +90,8 @@ admissionController:
9090
enabled: true
9191
# -- (int or string) Minimum number/percentage of pods that must be available after the eviction.
9292
# IMPORTANT: You can specify either 'minAvailable' or 'maxUnavailable', but not both.
93-
minAvailable: 2
93+
minAvailable: 1
9494
# -- (int or string) Maximum number/percentage of pods that can be unavailable after the eviction.
9595
# IMPORTANT: You can specify either 'minAvailable' or 'maxUnavailable', but not both.
9696
maxUnavailable:
97-
# maxUnavailable: 2
97+
# maxUnavailable: 1

0 commit comments

Comments
 (0)