mirror of https://github.com/kubeflow/examples.git
Add video show notes (#582)
This commit is contained in:
parent
f608c27751
commit
a046db57cc
|
@ -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.
|
||||||
|
|
|
@ -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/)
|
||||||
|
|
Loading…
Reference in New Issue