@@ -65,19 +65,19 @@ def get_builder_function_for_image_name() -> Dict[str, Callable]:
65
65
"""Returns a dictionary of image names that can be built."""
66
66
67
67
image_builders = {
68
- MEKO_TESTS_IMAGE : build_tests_image , # working
69
- OPERATOR_IMAGE : build_operator_image , # working
70
- MCO_TESTS_IMAGE : build_mco_tests_image , # working
71
- READINESS_PROBE_IMAGE : build_readiness_probe_image , # working
72
- UPGRADE_HOOK_IMAGE : build_upgrade_hook_image , # working
73
- DATABASE_IMAGE : build_database_image , # working
74
- AGENT_IMAGE : build_agent_default_case , # working
68
+ MEKO_TESTS_IMAGE : build_tests_image ,
69
+ OPERATOR_IMAGE : build_operator_image ,
70
+ MCO_TESTS_IMAGE : build_mco_tests_image ,
71
+ READINESS_PROBE_IMAGE : build_readiness_probe_image ,
72
+ UPGRADE_HOOK_IMAGE : build_upgrade_hook_image ,
73
+ DATABASE_IMAGE : build_database_image ,
74
+ AGENT_IMAGE : build_agent_default_case ,
75
75
# Init images
76
- INIT_APPDB_IMAGE : build_init_appdb_image , # working
77
- INIT_DATABASE_IMAGE : build_init_database_image , # working
78
- INIT_OPS_MANAGER_IMAGE : build_init_om_image , # working
76
+ INIT_APPDB_IMAGE : build_init_appdb_image ,
77
+ INIT_DATABASE_IMAGE : build_init_database_image ,
78
+ INIT_OPS_MANAGER_IMAGE : build_init_om_image ,
79
79
# Ops Manager image
80
- OPS_MANAGER_IMAGE : build_om_image , # working
80
+ OPS_MANAGER_IMAGE : build_om_image ,
81
81
}
82
82
83
83
return image_builders
@@ -189,7 +189,7 @@ def main():
189
189
# Override arguments for build context and configuration
190
190
parser .add_argument (
191
191
"--platform" ,
192
- help = "Override the platforms instead of resolving from build scenario" ,
192
+ help = "Override the platforms instead of resolving from build scenario. Multi-arch builds are comma-separated. Example: linux/amd64,linux/arm64 " ,
193
193
)
194
194
parser .add_argument (
195
195
"--version" ,
0 commit comments