Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.05 KB

File metadata and controls

33 lines (22 loc) · 1.05 KB

Setup

Deploying Kubeflow to Google Cloud Platform

This example requires a running Kubeflow environment (v0.5.0). The easiest way to setup a Kubeflow environment is by using the Deployment UI.

Set environment variables

Create the following environment variables, follow the documenation to get the project id :

export BUCKET=your-bucket-name
export PROJECT_ID=your-gcp-project-id

Create bucket

Create a bucket that will contain everything required for our Kubeflow pipeline.

gsutil mb -c regional -l us-east1 gs://${BUCKET}

Clone this repository

Clone the following repository, which contains everything needed for this example.

git clone https://github.com/kubeflow/examples.git

Open a Terminal and navigate to the folder /examples/named-entity-recognition/.

Next: Build the pipeline components

Previous: Index