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 @@ -397,7 +397,6 @@ def _build_agent_operator(
397
397
executor .submit (
398
398
build_agent_pipeline ,
399
399
build_configuration ,
400
- build_configuration .version ,
401
400
agent_version ,
402
401
agent_distro ,
403
402
tools_version ,
@@ -408,21 +407,17 @@ def _build_agent_operator(
408
407
409
408
def build_agent_pipeline (
410
409
build_configuration : ImageBuildConfiguration ,
411
- operator_version : str ,
412
410
agent_version : str ,
413
411
agent_distro : str ,
414
412
tools_version : str ,
415
413
tools_distro : str ,
416
414
):
417
- image_version = f"{ agent_version } _{ operator_version } "
418
-
419
415
build_configuration_copy = copy (build_configuration )
420
- build_configuration_copy .version = image_version
421
- print (
422
- f"======== Building agent pipeline for version { image_version } , build configuration version: { build_configuration .version } "
423
- )
416
+ build_configuration_copy .version = agent_version
417
+
418
+ print (f"======== Building agent pipeline for version { agent_version } , tools version: { tools_version } " )
424
419
args = {
425
- "version" : image_version ,
420
+ "version" : agent_version ,
426
421
"agent_version" : agent_version ,
427
422
"agent_distro" : agent_distro ,
428
423
"tools_version" : tools_version ,
You can’t perform that action at this time.
0 commit comments