Skip to content
Snippets Groups Projects
Commit 0be74f3f authored by Rhys Arkins's avatar Rhys Arkins
Browse files

feat: default to binarySource=install (#18027)

Changes binarySource default value from global to install.

Closes #14531

BREAKING CHANGE: Users of containerbase images (such as official Renovate images) will now have dynamic package manager installs enabled by default.
parent 0a6d97f2
No related branches found
No related tags found
No related merge requests found
......@@ -289,7 +289,7 @@ const options: RenovateOptions[] = [
globalOnly: true,
type: 'string',
allowedValues: ['global', 'docker', 'install', 'hermit'],
default: 'global',
default: 'install',
},
{
name: 'redisUrl',
......
......@@ -124,9 +124,7 @@ export function isDynamicInstall(
return false;
}
if (!isContainerbase()) {
logger.warn(
'binarySource=install is only compatible with images derived from github.com/containerbase'
);
logger.debug('Falling back to binarySource=global');
return false;
}
return (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment