diff --git a/stable/dex/Chart.yaml b/stable/dex/Chart.yaml index 595680c7db..dd9bca18d8 100644 --- a/stable/dex/Chart.yaml +++ b/stable/dex/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: dex -version: 2.6.0 +version: 2.6.1 appVersion: 2.19.0 description: CoreOS Dex keywords: diff --git a/stable/dex/README.md b/stable/dex/README.md index 5b5c5d0ea4..475cbdc062 100644 --- a/stable/dex/README.md +++ b/stable/dex/README.md @@ -4,7 +4,7 @@ ## Introduction -Dex acts as a portal to other identity providers through "connectors." This lets dex defer authentication to LDAP servers, SAML providers, or established identity providers like GitHub, Google, and Active Directory. Clients write their authentication logic once to talk to dex, then dex handles the protocols for a given backend. +Dex acts as a portal to other identity providers through "connectors". This lets dex defer authentication to LDAP servers, SAML providers, or established identity providers like GitHub, Google, and Active Directory. Clients write their authentication logic once to talk to dex, then dex handles the protocols for a given backend. **Kubernetes authentication note** @@ -27,7 +27,7 @@ To install the chart with the release name `my-release`: $ helm install --name my-release stable/dex ``` -It'll install chart with the default parameters. However most probably it won't work for you as-is, thus before installing the chart you need to consult to the [values.yaml](values.yaml) notes as well as [dex documentation][dex]. +It'll install the chart with the default parameters. However most probably it won't work for you as-is, thus before installing the chart you need to consult the [values.yaml](values.yaml) notes as well as [dex documentation][dex]. ## Uninstalling the Chart diff --git a/stable/dex/templates/NOTES.txt b/stable/dex/templates/NOTES.txt index b0010d49b1..b256cd39b9 100644 --- a/stable/dex/templates/NOTES.txt +++ b/stable/dex/templates/NOTES.txt @@ -14,7 +14,7 @@ export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "dex.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') echo https://$SERVICE_IP:{{ .Values.service.port }} {{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "dex.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit https://127.0.0.1:8080/.well-known/openid-configuration to use your application" - kubectl port-forward $POD_NAME 8080:5556 + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ template "dex.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080/.well-known/openid-configuration to use your application" + kubectl port-forward $POD_NAME 8080:{{ .Values.ports.web.containerPort }} {{- end }}