From 996306958918cc108291d417c18cbbb65ca24c99 Mon Sep 17 00:00:00 2001 From: shubham82 Date: Fri, 1 Nov 2024 15:57:58 +0530 Subject: [PATCH] Improvement: Added service.clusterIP --- charts/cluster-autoscaler/Chart.yaml | 2 +- charts/cluster-autoscaler/README.md | 1 + charts/cluster-autoscaler/values.yaml | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/charts/cluster-autoscaler/Chart.yaml b/charts/cluster-autoscaler/Chart.yaml index c8b062cb5441..bc5aab925d0e 100644 --- a/charts/cluster-autoscaler/Chart.yaml +++ b/charts/cluster-autoscaler/Chart.yaml @@ -11,4 +11,4 @@ name: cluster-autoscaler sources: - https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler type: application -version: 9.43.1 +version: 9.43.2 diff --git a/charts/cluster-autoscaler/README.md b/charts/cluster-autoscaler/README.md index bf15dfa84dde..fea52ebec764 100644 --- a/charts/cluster-autoscaler/README.md +++ b/charts/cluster-autoscaler/README.md @@ -470,6 +470,7 @@ vpa: | secretKeyRefNameOverride | string | `""` | Overrides the name of the Secret to use when loading the secretKeyRef for AWS and Azure env variables | | securityContext | object | `{}` | [Security context for pod](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) | | service.annotations | object | `{}` | Annotations to add to service | +| service.clusterIP | string | `""` | IP address to assign to service | | service.create | bool | `true` | If `true`, a Service will be created. | | service.externalIPs | list | `[]` | List of IP addresses at which the service is available. Ref: https://kubernetes.io/docs/concepts/services-networking/service/#external-ips. | | service.labels | object | `{}` | Labels to add to service | diff --git a/charts/cluster-autoscaler/values.yaml b/charts/cluster-autoscaler/values.yaml index 177df71e7fdd..6e10673ae855 100644 --- a/charts/cluster-autoscaler/values.yaml +++ b/charts/cluster-autoscaler/values.yaml @@ -372,6 +372,9 @@ service: # service.externalIPs -- List of IP addresses at which the service is available. Ref: https://kubernetes.io/docs/concepts/services-networking/service/#external-ips. externalIPs: [] + # service.clusterIP -- IP address to assign to service + clusterIP: "" + # service.loadBalancerIP -- IP address to assign to load balancer (if supported). loadBalancerIP: "" # service.loadBalancerSourceRanges -- List of IP CIDRs allowed access to load balancer (if supported).