blob: 874025b4afd2354ad9855bb37464ec525be94608 [file] [log] [blame]
# 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.
---
name: GettingStartedPipeline
volumes:
- volume: gettingstartedvol
local:
path: .
pipelines:
- pipeline: getting_started_pipeline
owner: Bosco Albert Baracus
start_date: 1970-01-01
timeout_minutes: 10
schedule: 0 * 1 * *
default_arg_loaded: check
default_array_loaded: [2, 3, 4]
default_object_loaded:
key1: val1
key2: val2
metrics:
namespace: TestNamespace
backends: [ ]
tasks:
- task: python_hello_world_example
type: python
description: static input task
image: python_hello_world_example_image
source: helloworld
env_vars:
env1: "a"
env2: "b"
mounts:
- mount: mymount
volume: gettingstartedvol
path: /mnt/gettingstartedvol
cmd: python -u hello_world.py
- task: parallelized_hello_world_example_task
type: python
description: parallelized parallelized hello world example
image: python_hello_world_example_image
env_vars:
env1: "a"
env2: "b"
mounts:
- mount: mymount
volume: gettingstartedvol
path: /mnt/gettingstartedvol
split_input: True
executors: 2
cmd: python -u hello_world.py
- task: python_hello_world_output_task
type: python
description: task with input from other task's output
image: python_hello_world_example_image
env_vars:
env1: "a"
env2: "b"
mounts:
- mount: mymount
volume: gettingstartedvol
path: /mnt/gettingstartedvol
cmd: python -u hello_world.py
services:
- service:
name: liminal_getting_started_python_server
type: python_server
description: my python server
image: liminal_getting_started_server_image
source: myserver
endpoints:
- endpoint: /myendpoint1
module: my_server
function: myendpoint1func