You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cluster-autoscaler/charts/cluster-autoscaler/README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -339,7 +339,7 @@ rbac:
339
339
340
340
### Azure - Using azure workload identity
341
341
342
-
You can use the project [Azure workload identity](https://github.com/Azure/azure-workload-identity), to automatically configure the correct setup for your pods to used federated identity with Azure.
342
+
You can use the project [Azure workload identity](https://github.com/Azure/azure-workload-identity), to automatically configure the correct setup for your pods to use federated identity with Azure.
343
343
344
344
You can also set the correct settings yourself instead of relying on this project.
345
345
@@ -463,6 +463,7 @@ vpa:
463
463
| containerSecurityContext | object |`{}`|[Security context for container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/)|
464
464
| customArgs | list |`[]`| Additional custom container arguments. Refer to https://github.com/kubernetes/autoscaler/blob/master/cluster-autoscaler/FAQ.md#what-are-the-parameters-to-ca for the full list of cluster autoscaler parameters and their default values. List of arguments as strings. |
465
465
| deployment.annotations | object |`{}`| Annotations to add to the Deployment object. |
466
+
| deployment.selector | object |`{}`| Labels for Deployment `spec.selector.matchLabels`. |
466
467
| dnsConfig | object |`{}`|[Pod's DNS Config](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config)|
467
468
| dnsPolicy | string |`"ClusterFirst"`| Defaults to `ClusterFirst`. Valid values are: `ClusterFirstWithHostNet`, `ClusterFirst`, `Default` or `None`. If autoscaler does not depend on cluster DNS, recommended to set this to `Default`. |
468
469
| envFromConfigMap | string |`""`| ConfigMap name to use as envFrom. |
@@ -490,7 +491,9 @@ vpa:
490
491
| nameOverride | string |`""`| String to partially override `cluster-autoscaler.fullname` template (will maintain the release name) |
491
492
| nodeSelector | object |`{}`| Node labels for pod assignment. Ref: https://kubernetes.io/docs/user-guide/node-selection/.|
492
493
| podAnnotations | object |`{}`| Annotations to add to each pod. |
493
-
| podDisruptionBudget | object |`{"maxUnavailable":1}`| Pod disruption budget. |
494
+
| podDisruptionBudget | object |`{"annotations":{},"maxUnavailable":1,"selector":{}}`| Pod disruption budget. |
495
+
| podDisruptionBudget.annotations | object |`{}`| Annotations to add to the PodDisruptionBudget. |
| priorityConfigMapAnnotations | object |`{}`| Annotations to add to `cluster-autoscaler-priority-expander` ConfigMap. |
@@ -500,6 +503,7 @@ vpa:
500
503
| prometheusRule.namespace | string |`"monitoring"`| Namespace which Prometheus is running in. |
501
504
| prometheusRule.rules | list |`[]`| Rules spec template (see https://github.com/prometheus-operator/prometheus-operator/blob/master/Documentation/api.md#rule).|
502
505
| rbac.additionalRules | list |`[]`| Additional rules for role/clusterrole |
506
+
| rbac.annotations | object |`{}`| Additional annotations to add to RBAC resources (Role/RoleBinding/ClusterRole/ClusterRoleBinding). |
503
507
| rbac.clusterScoped | bool |`true`| if set to false will only provision RBAC to alter resources in the current namespace. Most useful for Cluster-API |
504
508
| rbac.create | bool |`true`| If `true`, create and use RBAC resources. |
505
509
| rbac.pspEnabled | bool |`false`| If `true`, creates and uses RBAC resources required in the cluster with [Pod Security Policies](https://kubernetes.io/docs/concepts/policy/pod-security-policy/) enabled. Must be used with `rbac.create` set to `true`. |
@@ -520,6 +524,7 @@ vpa:
520
524
| service.loadBalancerIP | string |`""`| IP address to assign to load balancer (if supported). |
521
525
| service.loadBalancerSourceRanges | list |`[]`| List of IP CIDRs allowed access to load balancer (if supported). |
522
526
| service.portName | string |`"http"`| Name for service port. |
527
+
| service.selector | object |`{}`| Override labels for Service `spec.selector`. |
523
528
| service.servicePort | int |`8085`| Service port to expose. |
524
529
| service.type | string |`"ClusterIP"`| Type of service to create. |
525
530
| serviceMonitor.annotations | object |`{}`| Annotations to add to service monitor |
@@ -534,7 +539,7 @@ vpa:
534
539
| topologySpreadConstraints | list |`[]`| You can use topology spread constraints to control how Pods are spread across your cluster among failure-domains such as regions, zones, nodes, and other user-defined topology domains. (requires Kubernetes >= 1.19). |
| vpa | object |`{"containerPolicy":{},"enabled":false,"recommender":"default","updateMode":"Auto"}`| Configure a VerticalPodAutoscaler for the cluster-autoscaler Deployment. |
537
-
| vpa.containerPolicy | object |`{}`|[ContainerResourcePolicy](https://github.com/kubernetes/autoscaler/blob/vertical-pod-autoscaler/v0.13.0/vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1/types.go#L159). The containerName is always et to the deployment's container name. This value is required if VPA is enabled. |
542
+
| vpa.containerPolicy | object |`{}`|[ContainerResourcePolicy](https://github.com/kubernetes/autoscaler/blob/vertical-pod-autoscaler/v0.13.0/vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1/types.go#L159). The containerName is always set to the deployment's container name. This value is required if VPA is enabled. |
538
543
| vpa.enabled | bool |`false`| If true, creates a VerticalPodAutoscaler. |
539
544
| vpa.recommender | string |`"default"`| Name of the VPA recommender that will provide recommendations for vertical scaling. |
Copy file name to clipboardExpand all lines: cluster-autoscaler/charts/cluster-autoscaler/README.md.gotmpl
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -339,7 +339,7 @@ rbac:
339
339
340
340
### Azure - Using azure workload identity
341
341
342
-
You can use the project [Azure workload identity](https://github.com/Azure/azure-workload-identity), to automatically configure the correct setup for your pods to used federated identity with Azure.
342
+
You can use the project [Azure workload identity](https://github.com/Azure/azure-workload-identity), to automatically configure the correct setup for your pods to use federated identity with Azure.
343
343
344
344
You can also set the correct settings yourself instead of relying on this project.
0 commit comments