infrastructure/ansible/roles/renovate/files/config.js
Jake Howard 1a74e05a7c
Create a dedicated machine for renovate
This way it can do what it wants with docker. Because apparently it's very picky about how it's setup
2022-01-01 22:59:13 +00:00

16 lines
425 B
JavaScript

module.exports = {
endpoint: 'https://git.theorangeone.net/api/v4/',
token: '{{ renovate_gitlab_token }}',
platform: 'gitlab',
//dryRun: true,
autodiscover: true,
onboarding: false,
redisUrl: 'redis://redis',
repositoryCache: 'enabled',
persistRepoData: true,
binarySource: "docker",
dockerUser: "{{ docker_user.id }}",
baseDir: "/opt/renovate/renovate",
cacheDir: "/opt/renovate/renovate/cache"
};