From f632698568088e3f62b227bc0153a7eede63ef5e Mon Sep 17 00:00:00 2001 From: "Benjamin A. Petersen" Date: Wed, 2 Aug 2023 12:27:35 -0400 Subject: [PATCH] site: add redirects for old doc links --- site/content/docs/howto/concierge/_index.md | 2 +- site/content/docs/howto/concierge/configure-concierge-jwt.md | 2 ++ .../howto/concierge/configure-concierge-supervisor-jwt.md | 2 ++ .../docs/howto/concierge/configure-concierge-webhook.md | 2 ++ .../howto/idps/configure-supervisor-with-activedirectory.md | 4 +++- .../docs/howto/idps/configure-supervisor-with-auth0.md | 2 ++ site/content/docs/howto/idps/configure-supervisor-with-dex.md | 2 ++ .../docs/howto/idps/configure-supervisor-with-gitlab.md | 2 ++ .../howto/idps/configure-supervisor-with-jumpcloudldap.md | 2 ++ .../content/docs/howto/idps/configure-supervisor-with-okta.md | 2 ++ .../docs/howto/idps/configure-supervisor-with-openldap.md | 2 ++ .../idps/configure-supervisor-with-workspace_one_access.md | 2 ++ site/content/docs/howto/idps/configure-supervisor.md | 2 ++ 13 files changed, 26 insertions(+), 2 deletions(-) diff --git a/site/content/docs/howto/concierge/_index.md b/site/content/docs/howto/concierge/_index.md index 486bb4c65..b00a3ecec 100644 --- a/site/content/docs/howto/concierge/_index.md +++ b/site/content/docs/howto/concierge/_index.md @@ -9,6 +9,6 @@ menu: weight: 60 --- -These how-to guides show you how to install and configure Pinniped Concierge: +These how-to guides show how to configure the Pinniped Supervisor after it is installed: {{< docsmenu "howto-configure-concierge" >}} diff --git a/site/content/docs/howto/concierge/configure-concierge-jwt.md b/site/content/docs/howto/concierge/configure-concierge-jwt.md index b1ab69350..7864c3c70 100644 --- a/site/content/docs/howto/concierge/configure-concierge-jwt.md +++ b/site/content/docs/howto/concierge/configure-concierge-jwt.md @@ -8,6 +8,8 @@ menu: name: JWT Authentication weight: 30 parent: howto-configure-concierge +aliases: + - /docs/howto/configure-concierge-jwt/ --- The Concierge can validate [JSON Web Tokens (JWTs)](https://tools.ietf.org/html/rfc7519), which are commonly issued by [OpenID Connect (OIDC)](https://openid.net/connect/) identity providers. diff --git a/site/content/docs/howto/concierge/configure-concierge-supervisor-jwt.md b/site/content/docs/howto/concierge/configure-concierge-supervisor-jwt.md index 726636222..f93a7a6a7 100644 --- a/site/content/docs/howto/concierge/configure-concierge-supervisor-jwt.md +++ b/site/content/docs/howto/concierge/configure-concierge-supervisor-jwt.md @@ -8,6 +8,8 @@ menu: name: JWT Authentication with Supervisor weight: 40 parent: howto-configure-concierge +aliases: + - /docs/howto/configure-concierge-supervisor-jwt/ --- The Concierge can validate [JSON Web Tokens (JWTs)](https://tools.ietf.org/html/rfc7519), which are commonly issued by [OpenID Connect (OIDC)](https://openid.net/connect/) identity providers. diff --git a/site/content/docs/howto/concierge/configure-concierge-webhook.md b/site/content/docs/howto/concierge/configure-concierge-webhook.md index 24a93dbca..0b0b0fe4f 100644 --- a/site/content/docs/howto/concierge/configure-concierge-webhook.md +++ b/site/content/docs/howto/concierge/configure-concierge-webhook.md @@ -8,6 +8,8 @@ menu: name: Webhook Authentication weight: 50 parent: howto-configure-concierge +aliases: + - /docs/howto/configure-concierge-webhook/ --- The Concierge can validate arbitrary tokens via an external webhook endpoint using the [same validation process as Kubernetes itself](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#webhook-token-authentication). diff --git a/site/content/docs/howto/idps/configure-supervisor-with-activedirectory.md b/site/content/docs/howto/idps/configure-supervisor-with-activedirectory.md index d3fad29c8..356807092 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-activedirectory.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-activedirectory.md @@ -6,8 +6,10 @@ cascade: menu: docs: name: With Active Directory - weight: 110 + weight: 150 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-activedirectory/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients. diff --git a/site/content/docs/howto/idps/configure-supervisor-with-auth0.md b/site/content/docs/howto/idps/configure-supervisor-with-auth0.md index 6ed43ace6..c662137ea 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-auth0.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-auth0.md @@ -8,6 +8,8 @@ menu: name: With Auth0 OIDC weight: 80 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-auth0/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients. diff --git a/site/content/docs/howto/idps/configure-supervisor-with-dex.md b/site/content/docs/howto/idps/configure-supervisor-with-dex.md index 1dde38ece..afa180593 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-dex.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-dex.md @@ -8,6 +8,8 @@ menu: name: With Dex OIDC weight: 80 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-dex/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single diff --git a/site/content/docs/howto/idps/configure-supervisor-with-gitlab.md b/site/content/docs/howto/idps/configure-supervisor-with-gitlab.md index c5a0a96e0..959c81af5 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-gitlab.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-gitlab.md @@ -8,6 +8,8 @@ menu: name: With GitLab OIDC weight: 90 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-gitlab/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients. diff --git a/site/content/docs/howto/idps/configure-supervisor-with-jumpcloudldap.md b/site/content/docs/howto/idps/configure-supervisor-with-jumpcloudldap.md index 07c90e0f2..8b95b07a1 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-jumpcloudldap.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-jumpcloudldap.md @@ -8,6 +8,8 @@ menu: name: With JumpCloud LDAP weight: 110 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-jumpcloudldap/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients. diff --git a/site/content/docs/howto/idps/configure-supervisor-with-okta.md b/site/content/docs/howto/idps/configure-supervisor-with-okta.md index 1e934ca85..622f55f49 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-okta.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-okta.md @@ -8,6 +8,8 @@ menu: name: With Okta OIDC weight: 80 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-okta/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients. diff --git a/site/content/docs/howto/idps/configure-supervisor-with-openldap.md b/site/content/docs/howto/idps/configure-supervisor-with-openldap.md index a858f9c91..bcca6dfb6 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-openldap.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-openldap.md @@ -8,6 +8,8 @@ menu: name: With OpenLDAP weight: 100 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-openldap/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients. diff --git a/site/content/docs/howto/idps/configure-supervisor-with-workspace_one_access.md b/site/content/docs/howto/idps/configure-supervisor-with-workspace_one_access.md index 5f11ba124..60edc65f2 100644 --- a/site/content/docs/howto/idps/configure-supervisor-with-workspace_one_access.md +++ b/site/content/docs/howto/idps/configure-supervisor-with-workspace_one_access.md @@ -8,6 +8,8 @@ menu: name: With Workspace ONE Access weight: 80 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor-with-workspace_one_access/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single "upstream" identity provider to many "downstream" cluster clients. diff --git a/site/content/docs/howto/idps/configure-supervisor.md b/site/content/docs/howto/idps/configure-supervisor.md index 2c99ba166..d002a5787 100644 --- a/site/content/docs/howto/idps/configure-supervisor.md +++ b/site/content/docs/howto/idps/configure-supervisor.md @@ -8,6 +8,8 @@ menu: name: As an OIDC Issuer weight: 10 parent: howto-configure-idps +aliases: + - /docs/howto/configure-supervisor/ --- The Supervisor is an [OpenID Connect (OIDC)](https://openid.net/connect/) issuer that supports connecting a single