diff --git a/notebooks/kubeflow_pipelines/cicd/labs/kfp_cicd_vertex.ipynb b/notebooks/kubeflow_pipelines/cicd/labs/kfp_cicd_vertex.ipynb index f00583cf..f63a8a92 100644 --- a/notebooks/kubeflow_pipelines/cicd/labs/kfp_cicd_vertex.ipynb +++ b/notebooks/kubeflow_pipelines/cicd/labs/kfp_cicd_vertex.ipynb @@ -74,7 +74,7 @@ "\n", "In the cell below, write a docker file that\n", "* Uses `gcr.io/deeplearning-platform-release/base-cpu` as base image\n", - "* Install the python packages `kfp` with version `1.8.22 ` and `google-cloud-aiplatform` with version `1.26.0`\n", + "* Install the python packages `kfp` with version `1.8.22 ` and `google-cloud-aiplatform` with version `1.43.0`\n", "* Starts `/bin/bash` as entrypoint" ] }, diff --git a/notebooks/kubeflow_pipelines/cicd/solutions/kfp-cli_vertex/Dockerfile b/notebooks/kubeflow_pipelines/cicd/solutions/kfp-cli_vertex/Dockerfile index 900efbc8..e6b50c6d 100644 --- a/notebooks/kubeflow_pipelines/cicd/solutions/kfp-cli_vertex/Dockerfile +++ b/notebooks/kubeflow_pipelines/cicd/solutions/kfp-cli_vertex/Dockerfile @@ -1,4 +1,4 @@ FROM gcr.io/deeplearning-platform-release/base-cpu RUN pip install kfp==1.8.22 -RUN pip install google-cloud-aiplatform==1.26.0 +RUN pip install google-cloud-aiplatform==1.43.0 ENTRYPOINT ["/bin/bash"]