diff --git a/content/en/docs/about/community.md b/content/en/docs/about/community.md index beb919cd3a..a0aae12768 100644 --- a/content/en/docs/about/community.md +++ b/content/en/docs/about/community.md @@ -199,12 +199,12 @@ The following table outlines which components are maintained by each Working Gro Notebooks - Admission Webhook (PodDefaults) + PodDefault Webhooks - Central Dashboard + Central Dashboard @@ -214,7 +214,7 @@ The following table outlines which components are maintained by each Working Gro - Kubeflow Access Management API (KFAM) + Kubeflow Access Management API (KFAM) @@ -224,7 +224,7 @@ The following table outlines which components are maintained by each Working Gro - Profile Controller + Profile Controller diff --git a/content/en/docs/components/central-dash/profiles.md b/content/en/docs/components/central-dash/profiles.md index bf911c3f4b..37dddf2dea 100644 --- a/content/en/docs/components/central-dash/profiles.md +++ b/content/en/docs/components/central-dash/profiles.md @@ -10,7 +10,7 @@ A Kubeflow Profile is a [Kubernetes CRD](https://kubernetes.io/docs/concepts/ext Profiles are owned by a single user, and can have multiple contributors with view or modify access. The owner of a profile can add and remove contributors (this can also be done by the cluster administrator). -Profiles and their child Namespaces are reconciled by the [Kubeflow Profile Controller](https://github.com/kubeflow/kubeflow/tree/master/components/profile-controller) and contributors (not owners) are managed by the [Kubeflow Access Management API (KFAM)](https://github.com/kubeflow/kubeflow/tree/master/components/access-management). +Profiles and their child Namespaces are reconciled by the [Kubeflow Profile Controller](https://github.com/kubeflow/dashboard/tree/main/components/profile-controller) and contributors (not owners) are managed by the [Kubeflow Access Management API (KFAM)](https://github.com/kubeflow/dashboard/tree/main/components/access-management). ## Profiles in the Central Dashboard diff --git a/content/en/docs/components/notebooks/quickstart-guide.md b/content/en/docs/components/notebooks/quickstart-guide.md index 922e51e311..74d8d52f3f 100644 --- a/content/en/docs/components/notebooks/quickstart-guide.md +++ b/content/en/docs/components/notebooks/quickstart-guide.md @@ -62,7 +62,7 @@ weight = 10 10. *(Optional)* Specify one or more __"data volumes"__ to be mounted as a PVC Volumes. 11. *(Optional)* Specify one or more additional __"configurations"__ - - These correspond to [PodDefault resources](https://github.com/kubeflow/kubeflow/blob/master/components/admission-webhook/README.md) which exist in your profile namespace. + - These correspond to [PodDefault resources](https://github.com/kubeflow/dashboard/blob/main/components/poddefaults-webhooks/README.md) which exist in your profile namespace. - Kubeflow matches the labels in the __"configurations"__ field against the properties specified in the PodDefault manifest. - For example, select the label `add-gcp-secret` in the __"configurations"__ field to match to a PodDefault manifest containing the following configuration: ```yaml diff --git a/content/en/docs/components/pipelines/user-guides/core-functions/connect-api.md b/content/en/docs/components/pipelines/user-guides/core-functions/connect-api.md index 9c6efa89fa..5595ec50a9 100644 --- a/content/en/docs/components/pipelines/user-guides/core-functions/connect-api.md +++ b/content/en/docs/components/pipelines/user-guides/core-functions/connect-api.md @@ -41,7 +41,7 @@ print(experiments) #### ServiceAccount Token Volume To use the preceding code, you will need to run it from a Pod that has a ServiceAccount token volume mounted. -You may manually add a `volume` and `volumeMount` to your PodSpec or use Kubeflow's [`PodDefaults`](https://github.com/kubeflow/kubeflow/tree/master/components/admission-webhook) to inject the required volume. +You may manually add a `volume` and `volumeMount` to your PodSpec or use Kubeflow's [`PodDefaults`](https://github.com/kubeflow/dashboard/tree/main/components/poddefaults-webhooks) to inject the required volume. __Option 1 - manually add a volume to your PodSpec:__