Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On Mac and Windows

Install kfctl kfctl

On Windows 

Code Block
#install kfctl
wget https://github.com/kubeflow/kfctl/releases/download/v1.0.2/kfctl_v1.0.2-0-ga476281_linux.tar.gz                    
tar xvfz kfctl_v1.0.2-0-ga476281_linux.tar.gz                                                                           
cp kfctl /usr/local/bin                                                                                                                                                                                                                         


On Mac

Code Block
wget https://github.com/kubeflow/kfctl/releases/download/v1.2.0/kfctl_v1.2.0-0-gbc038f9_darwin.tar.gz
tar xvfz kfctl_v1.2.0-0-gbc038f9_darwin.tar.gz
sudo cp kfctl /usr/local/bin/.


Install Kubeflow

On Windows in Container

Code Block
#install kubeflow
export KF_NAME=kubeflow
export BASE_DIR=/opt/ubuntu/                                                                                            
export KF_DIR=${BASE_DIR}/${KF_NAME}                                                                                    
export CONFIG_URI="https://raw.githubusercontent.com/kubeflow/manifests/v1.0-branch/kfdef/kfctl_k8s_istio.v1.0.2.yaml"  
mkdir -p ${KF_DIR}                                                                                                      
cd ${KF_DIR}                                                                                                            
kfctl apply -V -f ${CONFIG_URI} 


On Mac

Code Block
#install kubeflow
export KF_NAME=kubeflow
export BASE_DIR=/Users/<USERNAME>/kfctlinstall                                                                                            
export KF_DIR=${BASE_DIR}/${KF_NAME}                                                                                    
export CONFIG_URI="https://raw.githubusercontent.com/kubeflow/manifests/v1.0-branch/kfdef/kfctl_k8s_istio.v1.0.2.yaml"  
mkdir -p ${KF_DIR}                                                                                                      
cd ${KF_DIR}                                                                                                            
kfctl apply -V -f ${CONFIG_URI} 

...