Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added redirect and fixed links to getting-started guide for existing clusters #1035

Merged
merged 2 commits into from
Aug 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions content/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,5 @@ docs/started/requirements/ /docs/started/getting-started/
/docs/components/pytorchserving /docs/components/serving/pytorchserving
/docs/components/tfserving_new /docs/components/serving/tfserving_new

# Restructured the getting-started guide for existing Kubernetes.
/docs/started/getting-started-k8s/ /docs/started/k8s/
11 changes: 7 additions & 4 deletions content/docs/use-cases/kubeflow-on-multinode-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ This guide describes how to set up Kubeflow on premises (on-prem) in a multi-nod

## Vanilla on-prem Kubeflow installation

In order to install Kubeflow in an on-prem Kubernetes cluster, follow the [Kubeflow on Kubernetes](/docs/started/getting-started-k8s) guide. This guide works for single node and multi-node clusters.
In order to install Kubeflow in an on-prem Kubernetes cluster, follow the guide
to [installing Kubeflow on existing clusters](/docs/started/k8s), which works
for single node and multi-node clusters.

At the end of the installation, some Persistent Volume Claims (PVCs) might be unbound. To fix this issue, see the troubleshooting section [Pods stuck in Pending state](/docs/other-guides/troubleshooting/#pods-stuck-in-pending-state).

Expand Down Expand Up @@ -121,10 +123,11 @@ Notice that the installation command set the `storageClass.defaultClass` paramet
This sets the *nfs* as the default storage class.
Therefore when you install Kubeflow, all PVCs will be labelled with the *nfs* storage class.

## Finally: install Kubeflow!
## Finally: install Kubeflow

Now that you have prepared your on-prem, multi-node Kubernetes cluster to manage volumes using an NFS server,
you can install Kubeflow using the [Kubeflow on Kubernetes](/docs/started/getting-started-k8s/) guide.
Now that you have prepared your on-prem, multi-node Kubernetes cluster to manage
volumes using an NFS server, you can install Kubeflow by following the guide to
[installing Kubeflow on existing clusters](/docs/started/k8s).

After installing Kubeflow, notice that that Kubernetes binds each PVC created by Kubeflow to an automatically created PV with the *nfs* storage class. Notice also that the provisioner has created a directory for each PVC inside the root NFS directory.

Expand Down