def test_chmod_recursiverly(tmpdir): # Create a directory structure like this: # spam-dir/ # └── eggs-dir # ├── eggs-file # ├── eggs-symlink -> spam-dir/eggs-dir/missing-file # └── bacon-dir spam_dir = tmpdir.mkdir('spam-dir') eggs_dir = spam_dir.mkdir('eggs-dir') bacon_dir = eggs_dir.mkdir('bacon-dir') eggs_file = eggs_dir.join('eggs_file') eggs_file.write('') eggs_symlink = eggs_dir.join('eggs-symlink') missing_file = eggs_dir.join('missing-file') os.symlink(str(missing_file), str(eggs_symlink)) assert not missing_file.exists() # Set the current file mode to some initial known values so we can verify # they're modified properly eggs_file.chmod(stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO) bacon_dir.chmod(stat.S_IRUSR | stat.S_IRWXG) eggs_dir.chmod(stat.S_IRWXU) spam_dir.chmod(stat.S_IRUSR) expected_dir_mode = stat.S_IRUSR | stat.S_IXUSR | stat.S_IRGRP | stat.S_IXGRP expected_file_mode = stat.S_IRUSR | stat.S_IRGRP utils.chmod_recursively(spam_dir, dir_mode=expected_dir_mode, file_mode=expected_file_mode) def assert_mode(file_path, expected_mode): # The last three digits specify the file mode for user-group-others assert oct(os.stat(file_path).st_mode)[-3:] == oct(expected_mode)[-3:] assert_mode(eggs_file, expected_file_mode) assert_mode(bacon_dir, expected_dir_mode) assert_mode(eggs_dir, expected_dir_mode) assert_mode(bacon_dir, expected_dir_mode)
def handle_merge_request( source_from_index, deprecation_list, request_id, binary_image=None, target_index=None, overwrite_target_index=False, overwrite_target_index_token=None, distribution_scope=None, binary_image_config=None, ): """ Coordinate the work needed to merge old (N) index image with new (N+1) index image. :param str source_from_index: pull specification to be used as the base for building the new index image. :param str target_index: pull specification of content stage index image for the corresponding target index image. :param list deprecation_list: list of deprecated bundles for the target index image. :param int request_id: the ID of the IIB build request. :param str binary_image: the pull specification of the container image where the opm binary gets copied from. :param bool overwrite_target_index: if True, overwrite the input ``target_index`` with the built index image. :param str overwrite_target_index_token: the token used for overwriting the input ``target_index`` image. This is required to use ``overwrite_target_index``. The format of the token must be in the format "user:password". :param str distribution_scope: the scope for distribution of the index image, defaults to ``None``. :raises IIBError: if the index image merge fails. """ _cleanup() prebuild_info = prepare_request_for_build( request_id, RequestConfigMerge( _binary_image=binary_image, overwrite_target_index_token=overwrite_target_index_token, source_from_index=source_from_index, target_index=target_index, distribution_scope=distribution_scope, binary_image_config=binary_image_config, ), ) _update_index_image_build_state(request_id, prebuild_info) source_from_index_resolved = prebuild_info['source_from_index_resolved'] target_index_resolved = prebuild_info['target_index_resolved'] with tempfile.TemporaryDirectory(prefix='iib-') as temp_dir: set_request_state(request_id, 'in_progress', 'Getting bundles present in the index images') log.info('Getting bundles present in the source index image') with set_registry_token(overwrite_target_index_token, source_from_index): source_index_bundles, source_index_bundles_pull_spec = _get_present_bundles( source_from_index_resolved, temp_dir) target_index_bundles = [] if target_index: log.info('Getting bundles present in the target index image') target_index_bundles, _ = _get_present_bundles( target_index_resolved, temp_dir) arches = list(prebuild_info['arches']) arch = 'amd64' if 'amd64' in arches else arches[0] missing_bundles, invalid_version_bundles = _add_bundles_missing_in_source( source_index_bundles, target_index_bundles, temp_dir, prebuild_info['binary_image'], source_from_index_resolved, request_id, arch, prebuild_info['target_ocp_version'], overwrite_target_index_token, distribution_scope=prebuild_info['distribution_scope'], ) set_request_state(request_id, 'in_progress', 'Deprecating bundles in the deprecation list') log.info('Deprecating bundles in the deprecation list') intermediate_bundles = [ bundle['bundlePath'] for bundle in missing_bundles ] + source_index_bundles_pull_spec deprecation_bundles = get_bundles_from_deprecation_list( intermediate_bundles, deprecation_list) # We do not need to pass the invalid_version_bundles through the # get_bundles_from_deprecation_list function because we already know # they are present in the newly created index. deprecation_bundles = deprecation_bundles + [ bundle['bundlePath'] for bundle in invalid_version_bundles ] intermediate_image_name = _get_external_arch_pull_spec( request_id, arch, include_transport=False) if deprecation_bundles: deprecate_bundles( deprecation_bundles, temp_dir, prebuild_info['binary_image'], intermediate_image_name, overwrite_target_index_token, ) for arch in sorted(prebuild_info['arches']): _build_image(temp_dir, 'index.Dockerfile', request_id, arch) _push_image(request_id, arch) # If the container-tool podman is used in the opm commands above, opm will create temporary # files and directories without the write permission. This will cause the context manager # to fail to delete these files. Adjust the file modes to avoid this error. chmod_recursively( temp_dir, dir_mode=(stat.S_IRWXU | stat.S_IRWXG), file_mode=(stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP), ) output_pull_spec = _create_and_push_manifest_list(request_id, prebuild_info['arches']) _update_index_image_pull_spec( output_pull_spec, request_id, prebuild_info['arches'], target_index, overwrite_target_index, overwrite_target_index_token, target_index_resolved, ) set_request_state(request_id, 'complete', 'The index image was successfully cleaned and updated.')
def handle_merge_request( source_from_index, deprecation_list, request_id, binary_image=None, target_index=None, overwrite_target_index=False, overwrite_target_index_token=None, distribution_scope=None, binary_image_config=None, build_tags=None, ): """ Coordinate the work needed to merge old (N) index image with new (N+1) index image. :param str source_from_index: pull specification to be used as the base for building the new index image. :param str target_index: pull specification of content stage index image for the corresponding target index image. :param list deprecation_list: list of deprecated bundles for the target index image. :param int request_id: the ID of the IIB build request. :param str binary_image: the pull specification of the container image where the opm binary gets copied from. :param bool overwrite_target_index: if True, overwrite the input ``target_index`` with the built index image. :param str overwrite_target_index_token: the token used for overwriting the input ``target_index`` image. This is required to use ``overwrite_target_index``. The format of the token must be in the format "user:password". :param str distribution_scope: the scope for distribution of the index image, defaults to ``None``. :param build_tags: list of extra tag to use for intermetdiate index image :raises IIBError: if the index image merge fails. """ _cleanup() prebuild_info = prepare_request_for_build( request_id, RequestConfigMerge( _binary_image=binary_image, overwrite_target_index_token=overwrite_target_index_token, source_from_index=source_from_index, target_index=target_index, distribution_scope=distribution_scope, binary_image_config=binary_image_config, ), ) _update_index_image_build_state(request_id, prebuild_info) source_from_index_resolved = prebuild_info['source_from_index_resolved'] target_index_resolved = prebuild_info['target_index_resolved'] dockerfile_name = 'index.Dockerfile' with tempfile.TemporaryDirectory(prefix='iib-') as temp_dir: with set_registry_token(overwrite_target_index_token, source_from_index): source_fbc = is_image_fbc(source_from_index_resolved) target_fbc = is_image_fbc(target_index_resolved) # do not remove - logging requested by stakeholders if source_fbc: log.info("Processing source index image as File-Based Catalog image") if target_fbc: log.info("Processing target index image as File-Based Catalog image") if source_fbc and not target_fbc: err_msg = ( 'Cannot merge source File-Based Catalog index image into target SQLite index image.' ) log.error(err_msg) raise IIBError(err_msg) set_request_state(request_id, 'in_progress', 'Getting bundles present in the index images') log.info('Getting bundles present in the source index image') with set_registry_token(overwrite_target_index_token, source_from_index): source_index_bundles, source_index_bundles_pull_spec = _get_present_bundles( source_from_index_resolved, temp_dir ) target_index_bundles = [] if target_index: log.info('Getting bundles present in the target index image') target_index_bundles, _ = _get_present_bundles(target_index_resolved, temp_dir) arches = list(prebuild_info['arches']) arch = sorted(arches)[0] missing_bundles, invalid_version_bundles = _add_bundles_missing_in_source( source_index_bundles, target_index_bundles, temp_dir, prebuild_info['binary_image'], source_from_index_resolved, request_id, arch, prebuild_info['target_ocp_version'], overwrite_target_index_token, distribution_scope=prebuild_info['distribution_scope'], ) missing_bundle_paths = [bundle['bundlePath'] for bundle in missing_bundles] if missing_bundle_paths: add_max_ocp_version_property(missing_bundle_paths, temp_dir) set_request_state(request_id, 'in_progress', 'Deprecating bundles in the deprecation list') log.info('Deprecating bundles in the deprecation list') intermediate_bundles = missing_bundle_paths + source_index_bundles_pull_spec deprecation_bundles = get_bundles_from_deprecation_list( intermediate_bundles, deprecation_list ) # We do not need to pass the invalid_version_bundles through the # get_bundles_from_deprecation_list function because we already know # they are present in the newly created index. deprecation_bundles = deprecation_bundles + [ bundle['bundlePath'] for bundle in invalid_version_bundles ] if deprecation_bundles: intermediate_image_name = _get_external_arch_pull_spec( request_id, arch, include_transport=False ) # we can check if source index is FBC or not because intermediate_image # will be always the same type because it is built # from source index image in _add_bundles_missing_in_source() if source_fbc: deprecate_bundles_fbc( bundles=deprecation_bundles, base_dir=temp_dir, binary_image=prebuild_info['binary_image'], from_index=intermediate_image_name, ) else: # opm can only deprecate a bundle image on an existing index image. Build and # push a temporary index image to satisfy this requirement. Any arch will do. # NOTE: we cannot use local builds because opm commands fails, # index image has to be pushed to registry _build_image(temp_dir, 'index.Dockerfile', request_id, arch) _push_image(request_id, arch) deprecate_bundles( bundles=deprecation_bundles, base_dir=temp_dir, binary_image=prebuild_info['binary_image'], from_index=intermediate_image_name, overwrite_target_index_token=overwrite_target_index_token, ) if target_fbc: index_db_file = os.path.join(temp_dir, get_worker_config()['temp_index_db_path']) # make sure FBC is generated right before build fbc_dir = opm_migrate(index_db=index_db_file, base_dir=temp_dir) if not source_fbc: # when source image is not FBC, but final image should be an FBC image # we have to generate Dockerfile for FBC (with hidden index.db) dockerfile_path = os.path.join(temp_dir, dockerfile_name) if os.path.isfile(dockerfile_path): log.info('Removing previously generated dockerfile.') os.remove(dockerfile_path) opm_generate_dockerfile( fbc_dir=fbc_dir, base_dir=temp_dir, index_db=index_db_file, binary_image=prebuild_info['binary_image'], dockerfile_name=dockerfile_name, ) _add_label_to_index( 'com.redhat.index.delivery.version', prebuild_info['target_ocp_version'], temp_dir, dockerfile_name, ) _add_label_to_index( 'com.redhat.index.delivery.distribution_scope', prebuild_info['distribution_scope'], temp_dir, dockerfile_name, ) for arch in sorted(prebuild_info['arches']): _build_image(temp_dir, dockerfile_name, request_id, arch) _push_image(request_id, arch) # If the container-tool podman is used in the opm commands above, opm will create temporary # files and directories without the write permission. This will cause the context manager # to fail to delete these files. Adjust the file modes to avoid this error. chmod_recursively( temp_dir, dir_mode=(stat.S_IRWXU | stat.S_IRWXG), file_mode=(stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP), ) output_pull_spec = _create_and_push_manifest_list( request_id, prebuild_info['arches'], build_tags ) _update_index_image_pull_spec( output_pull_spec, request_id, prebuild_info['arches'], target_index, overwrite_target_index, overwrite_target_index_token, target_index_resolved, ) set_request_state( request_id, 'complete', 'The index image was successfully cleaned and updated.' )
def handle_add_request( bundles, request_id, binary_image=None, from_index=None, add_arches=None, cnr_token=None, organization=None, force_backport=False, overwrite_from_index=False, overwrite_from_index_token=None, distribution_scope=None, greenwave_config=None, binary_image_config=None, deprecation_list=None, ): """ Coordinate the the work needed to build the index image with the input bundles. :param list bundles: a list of strings representing the pull specifications of the bundles to add to the index image being built. :param int request_id: the ID of the IIB build request :param str binary_image: the pull specification of the container image where the opm binary gets copied from. :param str from_index: the pull specification of the container image containing the index that the index image build will be based from. :param list add_arches: the list of arches to build in addition to the arches ``from_index`` is currently built for; if ``from_index`` is ``None``, then this is used as the list of arches to build the index image for :param str cnr_token: the token required to push backported packages to the legacy app registry via OMPS. :param str organization: organization name in the legacy app registry to which the backported packages should be pushed to. :param bool force_backport: if True, always export packages to the legacy app registry via OMPS. :param bool overwrite_from_index: if True, overwrite the input ``from_index`` with the built index image. :param str overwrite_from_index_token: the token used for overwriting the input ``from_index`` image. This is required to use ``overwrite_from_index``. The format of the token must be in the format "user:password". :param str distribution_scope: the scope for distribution of the index image, defaults to ``None``. :param dict greenwave_config: the dict of config required to query Greenwave to gate bundles. :param dict binary_image_config: the dict of config required to identify the appropriate ``binary_image`` to use. :param list deprecation_list: list of deprecated bundles for the target index image. Defaults to ``None``. :raises IIBError: if the index image build fails or legacy support is required and one of ``cnr_token`` or ``organization`` is not specified. """ _cleanup() # Resolve bundles to their digests set_request_state(request_id, 'in_progress', 'Resolving the bundles') resolved_bundles = get_resolved_bundles(bundles) verify_labels(resolved_bundles) # Check if Gating passes for all the bundles if greenwave_config: gate_bundles(resolved_bundles, greenwave_config) prebuild_info = prepare_request_for_build( request_id, RequestConfigAddRm( _binary_image=binary_image, from_index=from_index, overwrite_from_index_token=overwrite_from_index_token, add_arches=add_arches, bundles=bundles, distribution_scope=distribution_scope, binary_image_config=binary_image_config, ), ) from_index_resolved = prebuild_info['from_index_resolved'] log.info( 'Checking if interacting with the legacy app registry is required') legacy_support_packages = get_legacy_support_packages( resolved_bundles, request_id, prebuild_info['ocp_version'], force_backport=force_backport) if legacy_support_packages: validate_legacy_params_and_config(legacy_support_packages, resolved_bundles, cnr_token, organization) _update_index_image_build_state(request_id, prebuild_info) present_bundles = [] present_bundles_pull_spec = [] with tempfile.TemporaryDirectory(prefix='iib-') as temp_dir: if from_index: msg = 'Checking if bundles are already present in index image' log.info(msg) set_request_state(request_id, 'in_progress', msg) with set_registry_token(overwrite_from_index_token, from_index_resolved): present_bundles, present_bundles_pull_spec = _get_present_bundles( from_index_resolved, temp_dir) filtered_bundles = _get_missing_bundles(present_bundles, resolved_bundles) excluded_bundles = [ bundle for bundle in resolved_bundles if bundle not in filtered_bundles ] resolved_bundles = filtered_bundles if excluded_bundles: log.info( 'Following bundles are already present in the index image: %s', ' '.join(excluded_bundles), ) _opm_index_add( temp_dir, resolved_bundles, prebuild_info['binary_image_resolved'], from_index_resolved, overwrite_from_index_token, (prebuild_info['distribution_scope'] in ['dev', 'stage']), ) deprecation_bundles = get_bundles_from_deprecation_list( present_bundles_pull_spec + resolved_bundles, deprecation_list or []) arches = prebuild_info['arches'] if deprecation_bundles: # opm can only deprecate a bundle image on an existing index image. Build and # push a temporary index image to satisfy this requirement. Any arch will do. arch = sorted(arches)[0] log.info( 'Building a temporary index image to satisfy the deprecation requirement' ) _build_image(temp_dir, 'index.Dockerfile', request_id, arch) intermediate_image_name = _get_local_pull_spec( request_id, arch, include_transport=True) deprecate_bundles( deprecation_bundles, temp_dir, prebuild_info['binary_image'], intermediate_image_name, overwrite_from_index_token, # Use podman so opm can find the image locally container_tool='podman', ) _add_label_to_index( 'com.redhat.index.delivery.version', prebuild_info['ocp_version'], temp_dir, 'index.Dockerfile', ) _add_label_to_index( 'com.redhat.index.delivery.distribution_scope', prebuild_info['distribution_scope'], temp_dir, 'index.Dockerfile', ) for arch in sorted(arches): _build_image(temp_dir, 'index.Dockerfile', request_id, arch) _push_image(request_id, arch) # If the container-tool podman is used in the opm commands above, opm will create temporary # files and directories without the write permission. This will cause the context manager # to fail to delete these files. Adjust the file modes to avoid this error. chmod_recursively( temp_dir, dir_mode=(stat.S_IRWXU | stat.S_IRWXG), file_mode=(stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP), ) set_request_state(request_id, 'in_progress', 'Creating the manifest list') output_pull_spec = _create_and_push_manifest_list(request_id, arches) if legacy_support_packages: export_legacy_packages(legacy_support_packages, request_id, output_pull_spec, cnr_token, organization) _update_index_image_pull_spec( output_pull_spec, request_id, arches, from_index, overwrite_from_index, overwrite_from_index_token, from_index_resolved, add_or_rm=True, ) set_request_state( request_id, 'complete', 'The operator bundle(s) were successfully added to the index image')
def handle_add_request( bundles, request_id, binary_image=None, from_index=None, add_arches=None, cnr_token=None, organization=None, force_backport=False, overwrite_from_index=False, overwrite_from_index_token=None, distribution_scope=None, greenwave_config=None, binary_image_config=None, deprecation_list=None, ): """ Coordinate the the work needed to build the index image with the input bundles. :param list bundles: a list of strings representing the pull specifications of the bundles to add to the index image being built. :param int request_id: the ID of the IIB build request :param str binary_image: the pull specification of the container image where the opm binary gets copied from. :param str from_index: the pull specification of the container image containing the index that the index image build will be based from. :param list add_arches: the list of arches to build in addition to the arches ``from_index`` is currently built for; if ``from_index`` is ``None``, then this is used as the list of arches to build the index image for :param str cnr_token: (deprecated) legacy support was disabled. the token required to push backported packages to the legacy app registry via OMPS. :param str organization: (deprecated) legacy support was disabled. organization name in the legacy app registry to which the backported packages should be pushed to. :param bool force_backport: (deprecated) legacy support was disabled. if True, always export packages to the legacy app registry via OMPS. :param bool overwrite_from_index: if True, overwrite the input ``from_index`` with the built index image. :param str overwrite_from_index_token: the token used for overwriting the input ``from_index`` image. This is required to use ``overwrite_from_index``. The format of the token must be in the format "user:password". :param str distribution_scope: the scope for distribution of the index image, defaults to ``None``. :param dict greenwave_config: the dict of config required to query Greenwave to gate bundles. :param dict binary_image_config: the dict of config required to identify the appropriate ``binary_image`` to use. :param list deprecation_list: list of deprecated bundles for the target index image. Defaults to ``None``. :raises IIBError: if the index image build fails. """ _cleanup() # Resolve bundles to their digests set_request_state(request_id, 'in_progress', 'Resolving the bundles') resolved_bundles = get_resolved_bundles(bundles) verify_labels(resolved_bundles) # Check if Gating passes for all the bundles if greenwave_config: gate_bundles(resolved_bundles, greenwave_config) prebuild_info = prepare_request_for_build( request_id, RequestConfigAddRm( _binary_image=binary_image, from_index=from_index, overwrite_from_index_token=overwrite_from_index_token, add_arches=add_arches, bundles=bundles, distribution_scope=distribution_scope, binary_image_config=binary_image_config, ), ) from_index_resolved = prebuild_info['from_index_resolved'] if (cnr_token and organization) or force_backport: log.warning( "Legacy support is deprecated in IIB. " "cnr_token, organization and force_backport parameters will be ignored." ) _update_index_image_build_state(request_id, prebuild_info) present_bundles = [] present_bundles_pull_spec = [] with tempfile.TemporaryDirectory(prefix='iib-') as temp_dir: if from_index: msg = 'Checking if bundles are already present in index image' log.info(msg) set_request_state(request_id, 'in_progress', msg) with set_registry_token(overwrite_from_index_token, from_index_resolved): present_bundles, present_bundles_pull_spec = _get_present_bundles( from_index_resolved, temp_dir) filtered_bundles = _get_missing_bundles(present_bundles, resolved_bundles) excluded_bundles = [ bundle for bundle in resolved_bundles if bundle not in filtered_bundles ] resolved_bundles = filtered_bundles if excluded_bundles: log.info( 'Following bundles are already present in the index image: %s', ' '.join(excluded_bundles), ) _opm_index_add( temp_dir, resolved_bundles, prebuild_info['binary_image_resolved'], from_index_resolved, overwrite_from_index_token, (prebuild_info['distribution_scope'] in ['dev', 'stage']), ) # Add the max ocp version property # We need to ensure that any bundle which has deprecated/removed API(s) in 1.22/ocp 4.9 # will have this property to prevent users from upgrading clusters to 4.9 before upgrading # the operator installed to a version that is compatible with 4.9 # Get the CSV name and version (not just the bundle path) db_path = temp_dir + "/database/index.db" port, rpc_proc = _serve_index_registry(db_path) raw_bundles = run_cmd( [ 'grpcurl', '-plaintext', f'localhost:{port}', 'api.Registry/ListBundles' ], exc_msg='Failed to get bundle data from index image', ) rpc_proc.kill() # Get bundle json for bundles in the request updated_bundles = list( filter(lambda b: b['bundlePath'] in resolved_bundles, _get_bundle_json(raw_bundles))) for bundle in updated_bundles: if _requires_max_ocp_version(bundle['bundlePath']): log.info('adding property for %s', bundle['bundlePath']) max_openshift_version_property = { 'type': 'olm.maxOpenShiftVersion', 'value': '4.8', 'operatorbundle_name': bundle['csvName'], 'operatorbundle_version': bundle['version'], 'operatorbundle_path': bundle['bundlePath'], } _add_property_to_index(db_path, max_openshift_version_property) log.info('property added for %s', bundle['bundlePath']) deprecation_bundles = get_bundles_from_deprecation_list( present_bundles_pull_spec + resolved_bundles, deprecation_list or []) arches = prebuild_info['arches'] if deprecation_bundles: # opm can only deprecate a bundle image on an existing index image. Build and # push a temporary index image to satisfy this requirement. Any arch will do. arch = sorted(arches)[0] log.info( 'Building a temporary index image to satisfy the deprecation requirement' ) _build_image(temp_dir, 'index.Dockerfile', request_id, arch) intermediate_image_name = _get_local_pull_spec( request_id, arch, include_transport=True) deprecate_bundles( deprecation_bundles, temp_dir, prebuild_info['binary_image'], intermediate_image_name, overwrite_from_index_token, # Use podman so opm can find the image locally container_tool='podman', ) _add_label_to_index( 'com.redhat.index.delivery.version', prebuild_info['ocp_version'], temp_dir, 'index.Dockerfile', ) _add_label_to_index( 'com.redhat.index.delivery.distribution_scope', prebuild_info['distribution_scope'], temp_dir, 'index.Dockerfile', ) for arch in sorted(arches): _build_image(temp_dir, 'index.Dockerfile', request_id, arch) _push_image(request_id, arch) # If the container-tool podman is used in the opm commands above, opm will create temporary # files and directories without the write permission. This will cause the context manager # to fail to delete these files. Adjust the file modes to avoid this error. chmod_recursively( temp_dir, dir_mode=(stat.S_IRWXU | stat.S_IRWXG), file_mode=(stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP), ) set_request_state(request_id, 'in_progress', 'Creating the manifest list') output_pull_spec = _create_and_push_manifest_list(request_id, arches) _update_index_image_pull_spec( output_pull_spec, request_id, arches, from_index, overwrite_from_index, overwrite_from_index_token, from_index_resolved, add_or_rm=True, ) set_request_state( request_id, 'complete', 'The operator bundle(s) were successfully added to the index image')
def handle_add_request( bundles, request_id, binary_image=None, from_index=None, add_arches=None, cnr_token=None, organization=None, force_backport=False, overwrite_from_index=False, overwrite_from_index_token=None, distribution_scope=None, greenwave_config=None, binary_image_config=None, deprecation_list=None, build_tags=None, ): """ Coordinate the the work needed to build the index image with the input bundles. :param list bundles: a list of strings representing the pull specifications of the bundles to add to the index image being built. :param int request_id: the ID of the IIB build request :param str binary_image: the pull specification of the container image where the opm binary gets copied from. :param str from_index: the pull specification of the container image containing the index that the index image build will be based from. :param list add_arches: the list of arches to build in addition to the arches ``from_index`` is currently built for; if ``from_index`` is ``None``, then this is used as the list of arches to build the index image for :param str cnr_token: (deprecated) legacy support was disabled. the token required to push backported packages to the legacy app registry via OMPS. :param str organization: (deprecated) legacy support was disabled. organization name in the legacy app registry to which the backported packages should be pushed to. :param bool force_backport: (deprecated) legacy support was disabled. if True, always export packages to the legacy app registry via OMPS. :param bool overwrite_from_index: if True, overwrite the input ``from_index`` with the built index image. :param str overwrite_from_index_token: the token used for overwriting the input ``from_index`` image. This is required to use ``overwrite_from_index``. The format of the token must be in the format "user:password". :param str distribution_scope: the scope for distribution of the index image, defaults to ``None``. :param dict greenwave_config: the dict of config required to query Greenwave to gate bundles. :param dict binary_image_config: the dict of config required to identify the appropriate ``binary_image`` to use. :param list deprecation_list: list of deprecated bundles for the target index image. Defaults to ``None``. :param list build_tags: List of tags which will be applied to intermediate index images. :raises IIBError: if the index image build fails. """ _cleanup() # Resolve bundles to their digests set_request_state(request_id, 'in_progress', 'Resolving the bundles') resolved_bundles = get_resolved_bundles(bundles) verify_labels(resolved_bundles) # Check if Gating passes for all the bundles if greenwave_config: gate_bundles(resolved_bundles, greenwave_config) prebuild_info = prepare_request_for_build( request_id, RequestConfigAddRm( _binary_image=binary_image, from_index=from_index, overwrite_from_index_token=overwrite_from_index_token, add_arches=add_arches, bundles=bundles, distribution_scope=distribution_scope, binary_image_config=binary_image_config, ), ) from_index_resolved = prebuild_info['from_index_resolved'] with set_registry_token(overwrite_from_index_token, from_index_resolved): is_fbc = is_image_fbc(from_index_resolved) if from_index else False if is_fbc: # logging requested by stakeholders do not delete log.info("Processing File-Based Catalog image") if (cnr_token and organization) or force_backport: log.warning( "Legacy support is deprecated in IIB. " "cnr_token, organization and force_backport parameters will be ignored." ) _update_index_image_build_state(request_id, prebuild_info) present_bundles = [] present_bundles_pull_spec = [] with tempfile.TemporaryDirectory(prefix='iib-') as temp_dir: if from_index: msg = 'Checking if bundles are already present in index image' log.info(msg) set_request_state(request_id, 'in_progress', msg) with set_registry_token(overwrite_from_index_token, from_index_resolved): present_bundles, present_bundles_pull_spec = _get_present_bundles( from_index_resolved, temp_dir ) filtered_bundles = _get_missing_bundles(present_bundles, resolved_bundles) excluded_bundles = [ bundle for bundle in resolved_bundles if bundle not in filtered_bundles ] resolved_bundles = filtered_bundles if excluded_bundles: log.info( 'Following bundles are already present in the index image: %s', ' '.join(excluded_bundles), ) if is_fbc: opm_registry_add_fbc( base_dir=temp_dir, bundles=resolved_bundles, binary_image=prebuild_info['binary_image_resolved'], from_index=from_index_resolved, overwrite_from_index_token=overwrite_from_index_token, overwrite_csv=(prebuild_info['distribution_scope'] in ['dev', 'stage']), ) else: _opm_index_add( base_dir=temp_dir, bundles=resolved_bundles, binary_image=prebuild_info['binary_image_resolved'], from_index=from_index_resolved, overwrite_from_index_token=overwrite_from_index_token, overwrite_csv=(prebuild_info['distribution_scope'] in ['dev', 'stage']), ) # Add the max ocp version property # We need to ensure that any bundle which has deprecated/removed API(s) in 1.22/ocp 4.9 # will have this property to prevent users from upgrading clusters to 4.9 before upgrading # the operator installed to a version that is compatible with 4.9 if resolved_bundles: add_max_ocp_version_property(resolved_bundles, temp_dir) deprecation_bundles = get_bundles_from_deprecation_list( present_bundles_pull_spec + resolved_bundles, deprecation_list or [] ) arches = prebuild_info['arches'] if deprecation_bundles: if is_fbc: deprecate_bundles_fbc( bundles=deprecation_bundles, base_dir=temp_dir, binary_image=prebuild_info['binary_image'], from_index=from_index_resolved, ) else: # opm can only deprecate a bundle image on an existing index image. Build and # push a temporary index image to satisfy this requirement. Any arch will do. arch = sorted(arches)[0] log.info('Building a temporary index image to satisfy the deprecation requirement') _build_image(temp_dir, 'index.Dockerfile', request_id, arch) _push_image(request_id, arch) intermediate_image_name = _get_external_arch_pull_spec( request_id, arch, include_transport=False ) deprecate_bundles( bundles=deprecation_bundles, base_dir=temp_dir, binary_image=prebuild_info['binary_image'], from_index=intermediate_image_name, overwrite_target_index_token=overwrite_from_index_token, # Use podman so opm can find the image locally container_tool='podman', ) _add_label_to_index( 'com.redhat.index.delivery.version', prebuild_info['ocp_version'], temp_dir, 'index.Dockerfile', ) _add_label_to_index( 'com.redhat.index.delivery.distribution_scope', prebuild_info['distribution_scope'], temp_dir, 'index.Dockerfile', ) if is_fbc: index_db_file = os.path.join(temp_dir, get_worker_config()['temp_index_db_path']) # make sure FBC is generated right before build opm_migrate(index_db=index_db_file, base_dir=temp_dir) for arch in sorted(arches): _build_image(temp_dir, 'index.Dockerfile', request_id, arch) _push_image(request_id, arch) # If the container-tool podman is used in the opm commands above, opm will create temporary # files and directories without the write permission. This will cause the context manager # to fail to delete these files. Adjust the file modes to avoid this error. chmod_recursively( temp_dir, dir_mode=(stat.S_IRWXU | stat.S_IRWXG), file_mode=(stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP), ) set_request_state(request_id, 'in_progress', 'Creating the manifest list') output_pull_spec = _create_and_push_manifest_list(request_id, arches, build_tags) _update_index_image_pull_spec( output_pull_spec, request_id, arches, from_index, overwrite_from_index, overwrite_from_index_token, from_index_resolved, add_or_rm=True, ) set_request_state( request_id, 'complete', 'The operator bundle(s) were successfully added to the index image' )