Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion charts/cloudflared/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ maintainers:
url: https://kubito.dev
apiVersion: v2
appVersion: 2026.2.0
version: 1.7.5
version: 1.7.6
description: Kubito Cloudflared (Argo Tunnel) Helm Chart
home: https://github.com/kubitodev/helm/tree/main/charts/cloudflared
icon: https://kubito.dev/images/kubito.svg
Expand Down
4 changes: 2 additions & 2 deletions charts/cloudflared/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ The command removes all the Kubernetes components associated with the chart and
| `autoscaling.targetMemoryUtilizationPercentage` | Target memory utilization percentage for the HPA | `50` |
| `autoscaling.targetCPUUtilizationPercentage` | Target CPU utilization percentage for the HPA | `50` |
| `podDisruptionBudget.enabled` | Enable PodDisruptionBudget for the deployment | `false` |
| `podDisruptionBudget.minAvailable` | Minimum number of pods that must be available | `1` |
| `podDisruptionBudget.maxUnavailable` | Maximum number of pods that can be unavailable | `1` |
| `podDisruptionBudget.minAvailable` | Minimum number of pods that must be available(mutually exclusive with `podDisruptionBudgetmaxUnavailable`) | null |
| `podDisruptionBudget.minAvailable` | Maximum number of pods that can be unavailable(mutually exclusive with `podDisruptionBudgetmaxUnavailable`) | null |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
Expand Down
4 changes: 2 additions & 2 deletions charts/cloudflared/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ autoscaling:
## @param podDisruptionBudget.maxUnavailable Maximum number of pods that can be unavailable
podDisruptionBudget:
enabled: false
minAvailable: 1
maxUnavailable: 1
minAvailable:
maxUnavailable:
Loading