Skip to content

Commit

Permalink
Merge pull request #38 from dexidp/fix-missing-https-port
Browse files Browse the repository at this point in the history
Fix missing https port
  • Loading branch information
sagikazarmark authored May 19, 2021
2 parents 23fe3c8 + 6543411 commit 9600d5b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/dex/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
type: application
name: dex
version: 0.3.2
version: 0.3.3
appVersion: "2.28.1"
kubeVersion: ">=1.14.0-0"
description: OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors.
Expand All @@ -21,7 +21,7 @@ maintainers:
url: https://sagikazarmark.hu
annotations:
artifacthub.io/changes: |
- Added Pod Disruption Budget config
- Fix missing HTTPS service values
artifacthub.io/images: |
- name: dex
image: ghcr.io/dexidp/dex:v2.28.1
4 changes: 3 additions & 1 deletion charts/dex/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dex

![version: 0.3.2](https://img.shields.io/badge/version-0.3.2-informational?style=flat-square) ![type: application](https://img.shields.io/badge/type-application-informational?style=flat-square) ![app version: 2.28.1](https://img.shields.io/badge/app%20version-2.28.1-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)
![version: 0.3.3](https://img.shields.io/badge/version-0.3.3-informational?style=flat-square) ![type: application](https://img.shields.io/badge/type-application-informational?style=flat-square) ![app version: 2.28.1](https://img.shields.io/badge/app%20version-2.28.1-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)

OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors.

Expand Down Expand Up @@ -141,6 +141,8 @@ ingress:
| service.type | string | `"ClusterIP"` | Kubernetes [service type](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types). |
| service.ports.http.port | int | `5556` | HTTP service port |
| service.ports.http.nodePort | int | `nil` | HTTP node port (when applicable) |
| service.ports.https.port | int | `5554` | HTTPS service port |
| service.ports.https.nodePort | int | `nil` | HTTPS node port (when applicable) |
| service.ports.grpc.port | int | `5557` | gRPC service port |
| service.ports.grpc.nodePort | int | `nil` | gRPC node port (when applicable) |
| ingress.enabled | bool | `false` | Enable [ingress](https://kubernetes.io/docs/concepts/services-networking/ingress/). |
Expand Down
7 changes: 7 additions & 0 deletions charts/dex/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@ service:
# -- (int) HTTP node port (when applicable)
nodePort:

https:
# -- HTTPS service port
port: 5554

# -- (int) HTTPS node port (when applicable)
nodePort:

grpc:
# -- gRPC service port
port: 5557
Expand Down

0 comments on commit 9600d5b

Please sign in to comment.