Add video show notes (#582)

This commit is contained in:
Michelle Casbon 2019-06-28 18:01:24 -07:00 committed by Kubernetes Prow Robot
parent f608c27751
commit a046db57cc
2 changed files with 63 additions and 0 deletions

12
videos/README.md Normal file
View File

@ -0,0 +1,12 @@
# 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.

View File

@ -0,0 +1,51 @@
# 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=<project_id>
export CLIENT_ID=<oauth_client_id>
export CLIENT_SECRET=<oauth_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/)