From 168bb4c203575baa18f98db678bb3beada3ba9c9 Mon Sep 17 00:00:00 2001 From: Sarah Maddox Date: Mon, 24 Jun 2019 09:28:35 +1000 Subject: [PATCH] Updated links in READMEs. --- README.md | 6 ++++-- components/README.md | 7 ++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5a40774e790..c7897fb18bb 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,13 @@ The Kubeflow pipelines service has the following goals: ## Documentation -Get started with your first pipeline and read further information in the [Kubeflow Pipelines documentation](https://www.kubeflow.org/docs/guides/pipelines/pipelines-overview/). +Get started with your first pipeline and read further information in the [Kubeflow Pipelines overview](https://www.kubeflow.org/docs/pipelines/overview/pipelines-overview/). + +See the various ways you can [use the Kubeflow Pipelines SDK](https://www.kubeflow.org/docs/pipelines/sdk/sdk-overview/). See the Kubeflow [Pipelines API doc](https://www.kubeflow.org/docs/pipelines/reference/api/kubeflow-pipeline-api-spec/) for API specification. -Consult the [Python SDK reference docs](https://kubeflow-pipelines.readthedocs.io/en/latest/) when writing pipelines using the python SDK. +Consult the [Python SDK reference docs](https://kubeflow-pipelines.readthedocs.io/en/latest/) when writing pipelines using the Python SDK. ## Blog posts diff --git a/components/README.md b/components/README.md index b9f31bcd8d2..1bb8471bceb 100644 --- a/components/README.md +++ b/components/README.md @@ -1,9 +1,9 @@ # Kubeflow pipeline components Kubeflow pipeline components are implementations of Kubeflow pipeline tasks. Each task takes -one or more [artifacts](https://www.kubeflow.org/docs/guides/pipelines/pipelines-concepts/#step-output-artifacts) +one or more [artifacts](https://www.kubeflow.org/docs/pipelines/overview/concepts/output-artifact/) as input and may produce one or more -[artifacts](https://www.kubeflow.org/docs/guides/pipelines/pipelines-concepts/#step-output-artifacts) as output. +[artifacts](https://www.kubeflow.org/docs/pipelines/overview/concepts/output-artifact/) as output. **Example: XGBoost DataProc components** @@ -31,4 +31,5 @@ Note the naming convention for client code and runtime code—for a task nam * The `mytask.py` program contains the client code. * The `mytask` directory contains all the runtime code. -See [how to build your own components](https://www.kubeflow.org/docs/guides/pipelines/build-component/) +See how to [use the Kubeflow Pipelines SDK](https://www.kubeflow.org/docs/pipelines/sdk/sdk-overview/) +and [build your own components](https://www.kubeflow.org/docs/pipelines/sdk/build-component/).