Remove outdated video

This commit is contained in:
js-ts 2022-01-10 21:06:14 +05:30
parent ec55b81819
commit 75294d00cb
2 changed files with 0 additions and 63 deletions

View File

@ -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.

View File

@ -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=<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/)