From ddba8a0d3b1017740ebbcd2fffe71a1ae6dc118f Mon Sep 17 00:00:00 2001 From: adrian555 Date: Mon, 5 Oct 2020 20:25:53 -0700 Subject: [PATCH 1/3] update docs --- content/en/docs/ibm/existing-cluster.md | 6 +----- content/en/docs/ibm/iks-e2e.md | 9 ++------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/content/en/docs/ibm/existing-cluster.md b/content/en/docs/ibm/existing-cluster.md index 71a400d019..d6e3e372a9 100644 --- a/content/en/docs/ibm/existing-cluster.md +++ b/content/en/docs/ibm/existing-cluster.md @@ -4,10 +4,6 @@ description = "Set up a cluster if you already have one" weight = 5 +++ -{{% alert title="Out of date" color="warning" %}} -This guide contains outdated information pertaining to Kubeflow 1.0. This guide -needs to be updated for Kubeflow 1.1. -{{% /alert %}} ## Initial Setup for Existing Cluster @@ -15,4 +11,4 @@ Get the Kubeconfig file: ibmcloud ks cluster config --cluster $CLUSTER_NAME -From here on, please see [Install Kubeflow](/docs/ibm/install-kubeflow). +From here on, please see [Install Kubeflow](/docs/ibm/deploy/install-kubeflow). diff --git a/content/en/docs/ibm/iks-e2e.md b/content/en/docs/ibm/iks-e2e.md index 9e8327339b..58184a73ba 100644 --- a/content/en/docs/ibm/iks-e2e.md +++ b/content/en/docs/ibm/iks-e2e.md @@ -4,11 +4,6 @@ description = "Running Kubeflow using IBM Cloud Kubernetes Service (IKS)" weight = 250 +++ -{{% alert title="Out of date" color="warning" %}} -This guide contains outdated information pertaining to Kubeflow 1.0. This guide -needs to be updated for Kubeflow 1.1. -{{% /alert %}} - This is a guide for an end-to-end example of Kubeflow on [IBM Cloud Kubernetes Service (IKS)](https://cloud.ibm.com/docs/containers?topic=containers-getting-started). The core steps will be to take a base Tensorflow model, modify it for distributed training, serve the resulting model with TFServing, and deploy a web application that uses the trained model. ## Introduction @@ -60,7 +55,7 @@ In summary: * Packaging a Tensorflow program in a container. * Submitting a Tensorflow training ([tf.train][tf-train]) job. * Using the model for prediction (inference): - * Saving the trained model to [IBM Cloud Object Storage][ibm-cos)]. + * Saving the trained model to [IBM Cloud Object Storage][ibm-cos]. * Using [Tensorflow Serving][tf-serving] to serve the model. * Running the simple web app to send prediction request to the model and display the result. @@ -68,7 +63,7 @@ It's time to get started! ## Run the MNIST Tutorial on IKS -1. Follow the [IKS instructions](/docs/ibm/install-kubeflow) to deploy Kubeflow. +1. Follow the [IKS instructions](/docs/ibm/deploy/install-kubeflow) to deploy Kubeflow. 2. Launch a Jupyter notebook. * For IBM Cloud, the default NFS storage does not support some of the Python package installation. Therefore, you need to create the notebook with the setting `Don't use Persistent Storage for User's home` enabled. * Due to the Notebook user permission issue, you need to use custom images that were working in the previous version. From ae212196983fa9c516a95f8be0393bdfb61b6923 Mon Sep 17 00:00:00 2001 From: Adrian Zhuang Date: Tue, 6 Oct 2020 12:16:45 -0700 Subject: [PATCH 2/3] Update content/en/docs/ibm/existing-cluster.md Co-authored-by: 8bitmp3 <19637339+8bitmp3@users.noreply.github.com> --- content/en/docs/ibm/existing-cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/ibm/existing-cluster.md b/content/en/docs/ibm/existing-cluster.md index d6e3e372a9..f05554e7ba 100644 --- a/content/en/docs/ibm/existing-cluster.md +++ b/content/en/docs/ibm/existing-cluster.md @@ -5,7 +5,7 @@ weight = 5 +++ -## Initial Setup for Existing Cluster +## Initial setup for your existing cluster Get the Kubeconfig file: From 674382eb1f76cf039dfd1b879bf721a0ecacb6ca Mon Sep 17 00:00:00 2001 From: Adrian Zhuang Date: Tue, 6 Oct 2020 12:16:58 -0700 Subject: [PATCH 3/3] Update content/en/docs/ibm/existing-cluster.md Co-authored-by: 8bitmp3 <19637339+8bitmp3@users.noreply.github.com> --- content/en/docs/ibm/existing-cluster.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/en/docs/ibm/existing-cluster.md b/content/en/docs/ibm/existing-cluster.md index f05554e7ba..49bef50983 100644 --- a/content/en/docs/ibm/existing-cluster.md +++ b/content/en/docs/ibm/existing-cluster.md @@ -9,6 +9,8 @@ weight = 5 Get the Kubeconfig file: + ```shell ibmcloud ks cluster config --cluster $CLUSTER_NAME + ``` From here on, please see [Install Kubeflow](/docs/ibm/deploy/install-kubeflow).