[stable/dex] fix notes instructions (#19781)

* [stable/dex] Notes should filter pods with the new labels

Signed-off-by: Nicolas Degory <nicolas.degory@gmail.com>

* [stable/dex] Minor corrections in README file

Signed-off-by: Nicolas Degory <nicolas.degory@gmail.com>

* [stable/dex] Increment chart version

Signed-off-by: Nicolas Degory <nicolas.degory@gmail.com>
This commit is contained in:
Nicolas Degory
2019-12-27 09:03:38 -08:00
committed by Kubernetes Prow Robot
parent 491816f580
commit 2a3b9ef567
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: dex
version: 2.6.0
version: 2.6.1
appVersion: 2.19.0
description: CoreOS Dex
keywords:
+2 -2
View File
@@ -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
+3 -3
View File
@@ -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 }}