diff --git a/samples/core/helloworld/hello_world.py b/samples/core/helloworld/hello_world.py new file mode 100644 index 00000000000..5eef7f9728f --- /dev/null +++ b/samples/core/helloworld/hello_world.py @@ -0,0 +1,30 @@ +# Copyright 2019 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from kfp import dsl + +def echo_op(): + return dsl.ContainerOp( + name='echo', + image='library/bash:4.4.23', + command=['sh', '-c'], + arguments=['echo "hello world"'] + ) + +@dsl.pipeline( + name='My first pipeline', + description='A hello world pipeline.' +) +def hello_world_pipeline(): + echo_task = echo_op()