File tree Expand file tree Collapse file tree 4 files changed +13
-4
lines changed
Expand file tree Collapse file tree 4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11apiVersion : v2
22type : application
33name : dex
4- version : 0.24 .0
4+ version : 0.25 .0
55appVersion : " 2.44.0"
66kubeVersion : " >=1.14.0-0"
77description : OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors.
@@ -21,8 +21,8 @@ maintainers:
2121 url : https://sagikazarmark.com
2222annotations :
2323 artifacthub.io/changes : |
24- - kind: changed
25- description: "Update Dex to 2.44.0 "
24+ - kind: added
25+ description: "loadBalancerSourceRanges suppport in the service "
2626 artifacthub.io/images : |
2727 - name: dex
2828 image: ghcr.io/dexidp/dex:v2.44.0
Original file line number Diff line number Diff line change 11# dex
22
3- ![ version: 0.24.0] ( https://img.shields.io/badge/version-0.24.0-informational?style=flat-square ) ![ type: application] ( https://img.shields.io/badge/type-application-informational?style=flat-square ) ![ app version: 2.44.0] ( https://img.shields.io/badge/app%20version-2.44.0-informational?style=flat-square ) ![ kube version: >=1.14.0-0] ( https://img.shields.io/badge/kube%20version->=1.14.0--0-informational?style=flat-square ) [ ![ artifact hub] ( https://img.shields.io/badge/artifact%20hub-dex-informational?style=flat-square )] ( https://artifacthub.io/packages/helm/dex/dex )
3+
4+ ![ version: 0.25.0] ( https://img.shields.io/badge/version-0.25.0-informational?style=flat-square ) ![ type: application] ( https://img.shields.io/badge/type-application-informational?style=flat-square ) ![ app version: 2.44.0] ( https://img.shields.io/badge/app%20version-2.44.0-informational?style=flat-square ) ![ kube version: >=1.14.0-0] ( https://img.shields.io/badge/kube%20version->=1.14.0--0-informational?style=flat-square ) [ ![ artifact hub] ( https://img.shields.io/badge/artifact%20hub-dex-informational?style=flat-square )] ( https://artifacthub.io/packages/helm/dex/dex )
45
56OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors.
67
@@ -151,6 +152,7 @@ ingress:
151152| service.type | string | `"ClusterIP"` | Kubernetes [service type](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types). |
152153| service.clusterIP | string | `""` | Internal cluster service IP (when applicable) |
153154| service.loadBalancerIP | string | `""` | Load balancer service IP (when applicable) |
155+ | service.loadBalancerSourceRanges | list | `[]` | Load Balancer service source ranger (when applicable) |
154156| service.ports.http.port | int | `5556` | HTTP service port |
155157| service.ports.http.nodePort | int | `nil` | HTTP node port (when applicable) |
156158| service.ports.https.port | int | `5554` | HTTPS service port |
Original file line number Diff line number Diff line change 1818 {{- with .Values.service.loadBalancerIP }}
1919 loadBalancerIP : {{ . }}
2020 {{- end }}
21+ {{- with .Values.service.loadBalancerSourceRanges }}
22+ loadBalancerSourceRanges :
23+ {{- toYaml . | nindent 4 }}
24+ {{- end }}
2125 {{- end }}
2226 ports :
2327 - name : http
Original file line number Diff line number Diff line change @@ -171,6 +171,9 @@ service:
171171 # -- Load balancer service IP (when applicable)
172172 loadBalancerIP : " "
173173
174+ # -- Load Balancer service source ranger (when applicable)
175+ loadBalancerSourceRanges : []
176+
174177 ports :
175178 http :
176179 # -- HTTP service port
You can’t perform that action at this time.
0 commit comments