X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=deploy%2Ftransplant_fuel_settings.py;h=ee915fdbee83cdb9ab5bdd7ffeff1f609f465343;hb=8e67db574f00ede98f53819ca9f2be99089012dd;hp=993b0dcce9987bb808a73655dae2eb60d99cb5d8;hpb=cb7f00257d567a1da7d820cb03c15723ca5bd28c;p=fuel.git diff --git a/deploy/transplant_fuel_settings.py b/deploy/transplant_fuel_settings.py index 993b0dcce..ee915fdbe 100644 --- a/deploy/transplant_fuel_settings.py +++ b/deploy/transplant_fuel_settings.py @@ -94,7 +94,8 @@ def transplant_bootstrap(astute, fuel_bootstrap_cli): def main(): dea_file = parse_arguments() check_file_exists(ASTUTE_YAML) - check_file_exists(FUEL_BOOTSTRAP_CLI_YAML) + # Temporarily disabled for Fuel 10. + # check_file_exists(FUEL_BOOTSTRAP_CLI_YAML) dea = DeploymentEnvironmentAdapter(dea_file) log('Reading astute file %s' % ASTUTE_YAML) with io.open(ASTUTE_YAML) as stream: @@ -105,11 +106,12 @@ def main(): yaml.dump(astute, stream, default_flow_style=False) log('Transplant done') # Update bootstrap config yaml with info from DEA/astute.yaml - with io.open(FUEL_BOOTSTRAP_CLI_YAML) as stream: - fuel_bootstrap_cli = yaml.load(stream) - transplant_bootstrap(astute, fuel_bootstrap_cli) - with io.open(FUEL_BOOTSTRAP_CLI_YAML, 'w') as stream: - yaml.dump(fuel_bootstrap_cli, stream, default_flow_style=False) + # Temporarily disabled for Fuel 10. + # with io.open(FUEL_BOOTSTRAP_CLI_YAML) as stream: + # fuel_bootstrap_cli = yaml.load(stream) + # transplant_bootstrap(astute, fuel_bootstrap_cli) + # with io.open(FUEL_BOOTSTRAP_CLI_YAML, 'w') as stream: + # yaml.dump(fuel_bootstrap_cli, stream, default_flow_style=False) if __name__ == '__main__':