-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathtekton.py
437 lines (381 loc) · 17 KB
/
tekton.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
# Copyright 2021 kubeflow.org
#
# 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 typing import List, Iterable, Union, Optional, TypeVar, Text, Tuple, Dict
from kfp.dsl import _pipeline_param, _for_loop, _pipeline
from kfp import dsl
from kfp import components
from kfp.dsl._for_loop import LoopArguments, ItemList
from kfp.dsl._pipeline_param import ConditionOperator, PipelineParam
from kfp_tekton.compiler._k8s_helper import sanitize_k8s_name
BREAK_TASK_IMAGE_NAME = "aipipeline/breaktask:latest"
CEL_EVAL_IMAGE = "aipipeline/cel-eval:latest"
ANY_SEQUENCER_IMAGE = "quay.io/aipipeline/any-sequencer:latest"
DEFAULT_CONDITION_OUTPUT_KEYWORD = "outcome"
TEKTON_CUSTOM_TASK_IMAGES = [CEL_EVAL_IMAGE, BREAK_TASK_IMAGE_NAME]
LOOP_PIPELINE_NAME_LENGTH = 40
LOOP_GROUP_NAME_LENGTH = 16
_Num = TypeVar('_Num', int, float)
def AnySequencer(any: Iterable[Union[dsl.ContainerOp, ConditionOperator]],
name: str = None, statusPath: str = None,
skippingPolicy: str = None, errorPolicy: str = None,
image: str = ANY_SEQUENCER_IMAGE):
"""A containerOp that will proceed when any of the dependent containerOps completed
successfully
Args:
name: The name of the containerOp. It does not have to be unique within a pipeline
because the pipeline will generate a unique new name in case of conflicts.
any: List of `Conditional` containerOps that deploy together with the `main`
containerOp, or the condtion that must meet to continue.
statusPath: The location to write the output stauts
skippingPolicy: Determines for the Any Sequencer reacts to
no-dependency-condition-matching case. Values can be one of `skipOnNoMatch`
or `errorOnNoMatch`, a status with value "Skipped" will be generated and the
exit status will still be succeeded on `skipOnNoMatch`.
errorPolicy: The standard field, either `failOnError` or `continueOnError`. On
`continueOnError`, a status with value "Failed" will be generated
but the exit status will still be succeeded. For `Fail_on_error` the
Any Sequencer should truly fail in the Tekton terms, as it does now.
image: The image to implement the any sequencer logic. Default to aipipeline/any-sequencer:latest.
"""
arguments = [
"--namespace",
"$(context.pipelineRun.namespace)",
"--prName",
"$(context.pipelineRun.name)"
]
tasks_list = []
condition_list = []
file_outputs = None
for cop in any:
if isinstance(cop, dsl.ContainerOp):
cop_name = sanitize_k8s_name(cop.name)
tasks_list.append(cop_name)
elif isinstance(cop, ConditionOperator):
condition_list.append(cop)
if len(tasks_list) > 0:
task_list_str = "\'" + ",".join(tasks_list) + "\'"
arguments.extend(["--taskList", task_list_str])
if statusPath is not None:
file_outputs = '{outputPath: %s}' % statusPath
arguments.extend(["--statusPath", file_outputs])
if skippingPolicy is not None:
assert skippingPolicy == "skipOnNoMatch" or skippingPolicy == "errorOnNoMatch"
arguments.extend(["--skippingPolicy", skippingPolicy])
if errorPolicy is not None:
assert errorPolicy == "continueOnError" or errorPolicy == "failOnError"
arguments.extend(["--errorPolicy", errorPolicy])
conditonArgs = processConditionArgs(condition_list)
arguments.extend(conditonArgs)
AnyOp_yaml = '''\
name: %s
description: 'Proceed when any of the dependents completed successfully'
outputs:
- {name: %s, description: 'The output file to create the status'}
implementation:
container:
image: %s
command: [any-task]
args: [%s]
''' % (name, statusPath, image, ",".join(arguments))
AnyOp_template = components.load_component_from_text(AnyOp_yaml)
AnyOp = AnyOp_template()
return AnyOp
def processOperand(operand) -> (str, str):
if isinstance(operand, dsl.PipelineParam):
return "results_" + sanitize_k8s_name(operand.op_name) + "_" + \
sanitize_k8s_name(operand.name, allow_capital=True), operand.op_name
else:
# Do the same as in _get_super_condition_template to check whehter it's int
try:
operand = int(operand)
except:
operand = '\'' + str(operand) + '\''
return operand, None
def processCondition(condition: ConditionOperator) -> str:
op1, taskName1 = processOperand(condition.operand1)
op2, taskName2 = processOperand(condition.operand2)
if taskName1 is not None and taskName2 is not None:
assert taskName1 == taskName2, "The result for condition must come from the same task."
assert taskName1 is not None or taskName2 is not None, "Must at least contain one result in one condition for a task."
conditionStr = f"{op1} {condition.operator} {op2}"
return conditionStr
def processConditionArgs(conditions: List[ConditionOperator]) -> List[str]:
conditionArgs = []
for condition in conditions:
conditionStr = processCondition(condition)
conditionArgs.extend(["-c", conditionStr])
return conditionArgs
def after_any(any: Iterable[Union[dsl.ContainerOp, ConditionOperator]], name: str = None,
statusPath: str = None, skippingPolicy: str = None, errorPolicy: str = None):
'''
The function adds a new AnySequencer and connects the given op to it
'''
seq = AnySequencer(any, name, statusPath, skippingPolicy, errorPolicy)
def _after_components(cop):
cop.after(seq)
return cop
return _after_components
def CEL_ConditionOp(condition_statement):
'''A containerOp template for CEL and converts it into Tekton custom task
during Tekton compiliation.
Args:
condition_statement: CEL expression statement using string and/or pipeline params.
'''
ConditionOp_yaml = '''\
name: 'condition-cel'
description: 'Condition Operation using Common Expression Language'
inputs:
- {name: condition_statement, type: String, description: 'Condition statement', default: ''}
outputs:
- {name: %s, type: String, description: 'Default condition output'}
implementation:
container:
image: %s
command: ['sh', '-c']
args: [
'--apiVersion', 'cel.tekton.dev/v1alpha1',
'--kind', 'CEL',
'--name', 'cel_condition',
'--%s', {inputValue: condition_statement},
{outputPath: %s},
]
''' % (DEFAULT_CONDITION_OUTPUT_KEYWORD,
CEL_EVAL_IMAGE,
DEFAULT_CONDITION_OUTPUT_KEYWORD,
DEFAULT_CONDITION_OUTPUT_KEYWORD)
ConditionOp_template = components.load_component_from_text(ConditionOp_yaml)
ConditionOp = ConditionOp_template(condition_statement)
return ConditionOp
def Break():
'''A BreakOp template for Break Operation using PipelineLoop
'''
BreakOp_yaml = '''\
name: 'pipelineloop-break-operation'
description: 'Break Operation using PipelineLoop'
implementation:
container:
image: %s
command: ['sh', '-c']
args: [
'--apiVersion', 'custom.tekton.dev/v1alpha1',
'--kind', 'BreakTask',
'--name', 'pipelineloop-break-operation',
]
''' % (BREAK_TASK_IMAGE_NAME)
BreakOp_template = components.load_component_from_text(BreakOp_yaml)
BreakOp = BreakOp_template()
return BreakOp
class TektonLoopArguments(LoopArguments):
def __init__(self,
items: Union[str, ItemList, dsl.PipelineParam],
code: Text,
name_override: Optional[Text] = None,
op_name: Optional[Text] = None,
*args,
**kwargs):
if isinstance(items, str):
# temporary list wrapping for validation to pass
super().__init__([items], code, name_override, op_name, *args, **kwargs)
self.items_or_pipeline_param = items
else:
super().__init__(items, code, name_override, op_name, *args, **kwargs)
def to_str_for_task_yaml(self):
if isinstance(self.items_or_pipeline_param, str):
return self.items_or_pipeline_param
else:
raise ValueError(
'You should only call this method on loop args which are string literals, '
'not lists or pipeline param items.')
class TektonLoopIterationNumber(PipelineParam):
def __init__(self, name: str):
super().__init__(name=name, param_type='Integer')
class Loop(dsl.ParallelFor):
ITERATION_NUMBER = 'iteration-number'
@classmethod
def sequential(cls,
loop_args: _for_loop.ItemList,
extra_fields: Optional[dict] = None,
valid_extra_field_values: Optional[dict] = None):
return cls(loop_args=loop_args,
parallelism=1,
extra_fields=extra_fields,
valid_extra_field_values=valid_extra_field_values)
@classmethod
def from_string(cls,
loop_args: Union[str, _pipeline_param.PipelineParam],
separator: Optional[Union[str, _pipeline_param.PipelineParam]] = None,
parallelism: Optional[int] = None,
extra_fields: Optional[dict] = None,
valid_extra_field_values: Optional[dict] = None):
return cls(loop_args=loop_args,
separator=separator,
parallelism=parallelism,
extra_fields=extra_fields,
valid_extra_field_values=valid_extra_field_values)
@classmethod
def range(cls,
start: Union[_Num, PipelineParam],
end: Union[_Num, PipelineParam],
step: Optional[Union[_Num, PipelineParam]] = None,
parallelism: Optional[int] = None,
extra_fields: Optional[dict] = None,
valid_extra_field_values: Optional[dict] = None):
return cls(start=start,
step=step,
end=end,
parallelism=parallelism,
extra_fields=extra_fields,
valid_extra_field_values=valid_extra_field_values)
def add_pod_annotation(self, name: str, value: str):
"""Adds a pod's metadata annotation.
Args:
name: The name of the annotation.
value: The value of the annotation.
"""
self.pod_annotations[name] = value
return self
def add_pod_label(self, name: str, value: str):
"""Adds a pod's metadata label.
Args:
name: The name of the label.
value: The value of the label.
"""
self.pod_labels[name] = value
return self
def _next_id(self):
return str(_pipeline.Pipeline.get_default_pipeline().get_next_group_id())
def _seek_id(self):
return str(_pipeline.Pipeline.get_default_pipeline().group_id)
def __init__(self,
loop_args: Union[str,
_for_loop.ItemList,
_pipeline_param.PipelineParam] = None,
start: Union[_Num, PipelineParam, None] = None,
end: Union[_Num, PipelineParam, None] = None,
step: Union[_Num, PipelineParam, None] = None,
separator: Optional[Union[str, _pipeline_param.PipelineParam]] = None,
parallelism: Optional[int] = None,
extra_fields: Optional[dict] = None,
valid_extra_field_values: Optional[dict] = None):
self.start = None
self.end = None
self.step = None
self.call_enumerate = False
self.iteration_number = None
self.pod_annotations = {}
self.pod_labels = {}
self.iterate_param_pass_style = None
self.item_pass_style = None
self.config_value_list = {"iterate_param_pass_style": ["inline", "file"],
"item_pass_style": ["inline", "file"]}
if extra_fields:
if extra_fields.get('iterate_param_pass_style'):
self.iterate_param_pass_style = extra_fields['iterate_param_pass_style']
if extra_fields.get('item_pass_style'):
self.item_pass_style = extra_fields['item_pass_style']
# Update allowed values in the extra fields
if valid_extra_field_values:
for k, v in valid_extra_field_values.items():
self.config_value_list[k] = v
if start and end:
super().__init__(loop_args=["iteration"], parallelism=parallelism)
self.start = start
self.end = end
self.step = step
else:
if loop_args is None and (start is None or end is None):
raise RuntimeError("loop_args or start/end parameters are missing for 'Loop' class")
if isinstance(loop_args, str):
# temporary list wrapping for validation to pass
super().__init__(loop_args=[loop_args], parallelism=parallelism)
self.loop_args = TektonLoopArguments(
loop_args,
code=self._next_id(),
)
self.items_is_string = True
else:
super().__init__(loop_args=loop_args, parallelism=parallelism)
self.loop_args = TektonLoopArguments(
loop_args,
code=self._next_id(),
)
self.items_is_string = False
self.separator = None
if separator is not None:
self.separator = PipelineParam(
name=LoopArguments._make_name(self._next_id()),
value=separator
)
# param_name is unique on the pipeline level but not cluster level. Therefore, we still need to replace it to a cluster
# unique uuid during our compiler step.
param_name = "-".join([_pipeline.Pipeline.get_default_pipeline().name, self.type, str(int(self._seek_id()) + 1)])
self.last_idx = dsl.PipelineParam(name="last-idx", op_name=param_name)
self.last_elem = dsl.PipelineParam(name="last-elem", op_name=param_name)
def __enter__(self) -> Union[Tuple[TektonLoopIterationNumber, LoopArguments], _for_loop.LoopArguments]:
rev = super().__enter__()
if self.call_enumerate:
self.iteration_number = TektonLoopIterationNumber(name=self.ITERATION_NUMBER + '-' + self._next_id())
return (self.iteration_number, self.loop_args)
return rev
def enumerate(self) -> dsl.ParallelFor:
self.call_enumerate = True
return self
class AddOnGroup(dsl.OpsGroup):
"""
Represents an AddOn group containing ops and group of OpsGroups.
This class is the base class for a customized OpsGroup. Users can
develop their own OpsGroup. The customized OpsGroup maps to a
custom task in Tekton.
"""
TYPE_NAME = 'addon_group'
TASK_TYPE = 'task'
RUN_TYPE = 'run' # means custom task
DEFAULT_KIND = 'AddOnGroup'
DEFAULT_APIVERSION = 'custom.tekton.dev/v1alpha1'
@classmethod
def create_internal_param(cls, name: str, value: Optional[str] = None, param_type: Optional[str] = None) -> dsl.PipelineParam:
"""
If a PipelineParam is used for underlying custom task and should not show up in spec.params, use this
function to create a PipelineParam and add it into the AddOnGroup.params.
"""
rev = dsl.PipelineParam(name=name, value=value, param_type=param_type)
rev.addon_param = True
return rev
def __init__(self, task_type: str = RUN_TYPE,
kind: str = DEFAULT_KIND,
api_version: str = DEFAULT_APIVERSION,
is_finally: bool = False,
parallelism: int = None,
params: Dict[str, Union[dsl.PipelineParam, str, int]] = {},
annotations: Dict[str, str] = {},
labels: Dict[str, str] = {}):
self.task_type = task_type # not been used yet
self.kind = kind
self.api_version = api_version
self.params = params # for spec.params
self.annotations = annotations # for metadata.annotation
self.labels = labels # for metadata.labels
if is_finally:
pl = dsl._pipeline.Pipeline.get_default_pipeline()
if pl.groups[-1].type != 'pipeline':
raise ValueError(
'You can only create a finally OpsGroup under the root OpsGroup of a Pipeline')
self.is_finally = is_finally # a regular task or finally task
super().__init__(self.TYPE_NAME, parallelism=parallelism)
def post_task_spec(self, task_yaml: dict) -> dict:
"""provide a post-hook api to update the task YAML"""
return task_yaml
def post_params(self, params: List):
"""provide a post-hook api to update params"""
return params