From b2d8fcb36e501d079fdd1ade9c702152eeec8757 Mon Sep 17 00:00:00 2001 From: Jesse Suen Date: Fri, 22 Jun 2018 13:50:52 -0700 Subject: [PATCH] Update sso.md to remove unnecessary step to restart server --- docs/sso.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/docs/sso.md b/docs/sso.md index cd014f5131..376e03c366 100644 --- a/docs/sso.md +++ b/docs/sso.md @@ -55,6 +55,8 @@ data: - name: your-github-org ``` +After saving, the changes should take affect automatically. + NOTES: * Any values which start with '$' will look to a key in argocd-secret of the same name (minus the $), to obtain the actual value. This allows you to store the `clientSecret` as a kubernetes secret. @@ -62,11 +64,3 @@ NOTES: ArgoCD will automatically use the correct `redirectURI` for any OAuth2 connectors, to match the correct external callback URL (e.g. https://argocd.example.com/api/dex/callback) -### 3. Restart ArgoCD for changes to take effect -Any changes to the `argocd-cm` ConfigMap or `argocd-secret` Secret, currently require a restart of -the ArgoCD API server for the settings to take effect. Delete the `argocd-server` pod to force a -restart. [Issue #174](https://github.com/argoproj/argo-cd/issues/174) will address this limitation. - -``` -kubectl delete pod -l app=argocd-server -```