File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ precommit:
60
60
@ .githooks/pre-commit
61
61
62
62
precommit-with-licenses :
63
- @ MDB_UPDATE_LICENSE =true .githooks/pre-commit
63
+ @ MDB_UPDATE_LICENSES =true .githooks/pre-commit
64
64
65
65
switch :
66
66
@ scripts/dev/switch_context.sh $(context ) $(additional_override )
Original file line number Diff line number Diff line change @@ -399,7 +399,6 @@ def _build_agent_operator(
399
399
executor .submit (
400
400
build_agent_pipeline ,
401
401
build_configuration ,
402
- build_configuration .version ,
403
402
agent_version ,
404
403
agent_distro ,
405
404
tools_version ,
@@ -410,21 +409,17 @@ def _build_agent_operator(
410
409
411
410
def build_agent_pipeline (
412
411
build_configuration : ImageBuildConfiguration ,
413
- operator_version : str ,
414
412
agent_version : str ,
415
413
agent_distro : str ,
416
414
tools_version : str ,
417
415
tools_distro : str ,
418
416
):
419
- image_version = f"{ agent_version } _{ operator_version } "
420
-
421
417
build_configuration_copy = copy (build_configuration )
422
- build_configuration_copy .version = image_version
423
- print (
424
- f"======== Building agent pipeline for version { image_version } , build configuration version: { build_configuration .version } "
425
- )
418
+ build_configuration_copy .version = agent_version
419
+
420
+ print (f"======== Building agent pipeline for version { agent_version } , tools version: { tools_version } " )
426
421
args = {
427
- "version" : image_version ,
422
+ "version" : agent_version ,
428
423
"agent_version" : agent_version ,
429
424
"agent_distro" : agent_distro ,
430
425
"tools_version" : tools_version ,
You can’t perform that action at this time.
0 commit comments