Skip to content

Commit 112b45f

Browse files
committed
feat: Service loadBalancerSourceRanges
Signed-off-by: Sander Jochems <[email protected]>
1 parent c82afcc commit 112b45f

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

charts/dex/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
type: application
33
name: dex
4-
version: 0.24.0
4+
version: 0.25.0
55
appVersion: "2.44.0"
66
kubeVersion: ">=1.14.0-0"
77
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors.
@@ -21,8 +21,8 @@ maintainers:
2121
url: https://sagikazarmark.com
2222
annotations:
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

charts/dex/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
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

56
OpenID 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 |

charts/dex/templates/service.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ spec:
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

charts/dex/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)