diff --git a/videos/README.md b/videos/README.md deleted file mode 100644 index 119d5e1c..00000000 --- a/videos/README.md +++ /dev/null @@ -1,12 +0,0 @@ -# Kubeflow Videos - -This repository contains the show notes for videos that highlight Kubeflow -capabilities. Here you can find the Terminal commands and links from your favorite -videos, to save on manual transcription. - -## Installation - -* [From Zero to Kubeflow](from_zero_to_kubeflow/): Michelle Casbon gives a -walkthrough of two different ways to install Kubeflow from scratch on GCP: -via the web and command-line. - diff --git a/videos/from_zero_to_kubeflow/README.md b/videos/from_zero_to_kubeflow/README.md deleted file mode 100644 index ffe9751f..00000000 --- a/videos/from_zero_to_kubeflow/README.md +++ /dev/null @@ -1,51 +0,0 @@ -# From Zero to Kubeflow - -Video link: [YouTube](https://www.youtube.com/watch?v=AF-WH967_s4) - -## Description - -Michelle Casbon gives a straightforward walkthrough of two different ways to -install Kubeflow from scratch on GCP: - -* Web-based - [Click-to-deploy](https://deploy.kubeflow.cloud) -* CLI - [kfctl](https://www.kubeflow.org/docs/gke/deploy/deploy-cli/) - -## Commands - -The following Terminal commands are used. - -### Download the `kfctl` binary - -``` -export KUBEFLOW_TAG=0.5.1 -wget -P /tmp https://github.com/kubeflow/kubeflow/releases/download/v${KUBEFLOW_TAG}/kfctl_v${KUBEFLOW_TAG}_darwin.tar.gz -tar -xvf /tmp/kfctl_v${KUBEFLOW_TAG}_darwin.tar.gz -C ${HOME}/bin -``` - -### Generate the project directory - -``` -export PROJECT_ID= -export CLIENT_ID= -export CLIENT_SECRET= -kfctl init kubeflow-cli --platform gcp --project ${PROJECT_ID} -``` - -### Generate all files - -``` -kfctl generate all --zone us-central1-c -``` - -### Create all platform and Kubernetes objects - -``` -kfctl apply all -``` - -## Links - -* [codelabs.developers.google.com](https://codelabs.developers.google.com/) -* [github.com/kubeflow/examples](https://github.com/kubeflow/examples) -* [kubeflow.org](https://www.kubeflow.org/) -