From b599ba43328700ff035e3a4a31f3fd37b4843374 Mon Sep 17 00:00:00 2001 From: Alexey Volkov Date: Wed, 18 Sep 2019 12:43:26 -0700 Subject: [PATCH] Fixed the papermill issue --- samples/core/component_build/component_build.ipynb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/samples/core/component_build/component_build.ipynb b/samples/core/component_build/component_build.ipynb index d41973449d1d..0e45cb999548 100644 --- a/samples/core/component_build/component_build.ipynb +++ b/samples/core/component_build/component_build.ipynb @@ -69,6 +69,13 @@ "# Set your output and project. !!!Must Do before you can proceed!!!\n", "EXPERIMENT_NAME = 'basic_component'\n", "PROJECT_NAME = 'Your-Gcp-Project-Name' #'Your-GCP-Project-ID'\n", + ] + }, + { + "cell_type": "code", + "execution_count": null, + "outputs": [], + "source": [ "OUTPUT_DIR = 'gs://%s-basic-component' % PROJECT_NAME # A path for asset outputs\n", "BASE_IMAGE = 'google/cloud-sdk:latest' # Base image used in various steps of the pipeline\n", "TARGET_IMAGE = 'gcr.io/%s/component:latest' % PROJECT_NAME # Target image that will include our final code"