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