File tree 9 files changed +44
-9
lines changed
google_cloud_pipeline_components
9 files changed +44
-9
lines changed Original file line number Diff line number Diff line change 5
5
python :
6
6
version : 3.7
7
7
install :
8
- - requirements : sdk/python/requirements.txt
8
+ - requirements : sdk/python/requirements.txt
Original file line number Diff line number Diff line change 1
- # Current Version 0.1.4 .dev (Still in Development)
1
+ # Current Version 0.1.5 .dev (Still in Development)
2
2
3
3
* Add notes for next release here.
4
4
5
+ # Release 0.1.4
6
+
7
+ * Experimental component for tfp_anomaly_detection.
8
+ * Experimental module for Custom Job Wrapper.
9
+ * Fix to include YAML files in PyPI package.
10
+ * Restructure the google_cloud_pipeline_components.
11
+
5
12
# Release 0.1.3
6
13
7
14
* Use correct dataset type when passing dataset to CustomTraining.
Original file line number Diff line number Diff line change @@ -584,7 +584,7 @@ def component_yaml_generator(**kwargs):
584
584
command = [
585
585
'python3' ,
586
586
'-m' ,
587
- 'google_cloud_pipeline_components.aiplatform.remote_runner' ,
587
+ 'google_cloud_pipeline_components.remote. aiplatform.remote_runner' ,
588
588
'--cls_name' ,
589
589
cls_name ,
590
590
'--method_name' ,
Original file line number Diff line number Diff line change 24
24
from kfp .components import structures
25
25
26
26
_DEFAULT_CUSTOM_JOB_MACHINE_TYPE = 'n1-standard-4'
27
- _DEFAULT_CUSTOM_JOB_CONTAINER_IMAGE = 'gcr.io/managed-pipeline-test/gcp-launcher:v7 '
27
+ _DEFAULT_CUSTOM_JOB_CONTAINER_IMAGE = 'gcr.io/managed-pipeline-test/gcp-launcher:latest '
28
28
29
29
30
30
def run_as_vertex_ai_custom_job (
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM python:3.7-slim
15
+ FROM gcr.io/google-appengine/python:latest
16
16
17
- RUN pip install -U google-cloud-aiplatform
18
- RUN pip install -U google-cloud-storage
17
+ RUN pip3 install -U google-cloud-aiplatform
18
+ RUN pip3 install -U google-cloud-storage
19
19
20
20
RUN pip3 install "git+https://github.com/kubeflow/pipelines.git#egg=google-cloud-pipeline-components&subdirectory=components/google-cloud"
21
21
Original file line number Diff line number Diff line change
1
+ # Copyright 2021 The Kubeflow Authors. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """Google Cloud Pipeline Components root."""
Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ RUN pip3 install --upgrade pip
22
22
23
23
RUN pip3 install "git+https://github.com/kubeflow/pipelines.git#egg=google-cloud-pipeline-components&subdirectory=components/google-cloud"
24
24
25
- ENTRYPOINT ["python3" ,"-m" ,"google_cloud_pipeline_components.aiplatform.remote_runner" ]
25
+ ENTRYPOINT ["python3" ,"-m" ,"google_cloud_pipeline_components.remote. aiplatform.remote_runner" ]
Original file line number Diff line number Diff line change
1
+ # Copyright 2021 The Kubeflow Authors. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+ """Google Cloud Pipeline Components root."""
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
"""Contains the version string of Google Cloud Pipeline Components."""
15
15
16
- __version__ = "0.1.4 .dev"
16
+ __version__ = "0.1.5 .dev"
You can’t perform that action at this time.
0 commit comments