feat: add packer preset

This commit is contained in:
Robert Kaussow 2024-01-17 21:08:31 +01:00
parent f0deb49698
commit 8d8b155f35
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 45 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": ["Preset for use with kubernetes repositories"],
"description": ["Preset for use with Kubernetes repositories"],
"extends": ["github>thegeeklab/renovate-presets:base"],
"flux": {
"fileMatch": ["^flux/.+\\.ya?ml$"]

44
packer.json Normal file
View File

@ -0,0 +1,44 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": ["Preset for use with Hashicorp Packer repositories"],
"extends": ["github>thegeeklab/renovate-presets:base"],
"customManagers": [
{
"fileMatch": ["\\.pkr\\.hcl"],
"matchStrings": [
"required_version[\\s]+=[\\s]+\"=?(?<currentValue>\\S*)\"",
"source[\\s]+=[\\s]+\"github.com/(?<depName>\\S*)\"[\\s]+version[\\s]+=[\\s]+\"(?<currentValue>\\S*)\"",
"version[\\s]+=[\\s]+\"(?<currentValue>\\S*)[\\s]+source[\\s]+=[\\s]+\"github.com/(?<depName>\\S*)\""
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "{{#if depName}}{{#if (containsString depName 'hashicorp/')}}{{{replace 'hashicorp/' 'hashicorp/packer-plugin-' depName}}}{{else}}{{{depName}}}{{/if}}{{else}}hashicorp/packer{{/if}}"
},
{
"customType": "regex",
"fileMatch": [
"^flux/(?:.+/)overlays/(?:.+/)patches/(?:postgresCluster)\\.ya?ml$"
],
"matchStrings": [
"\\s+(?:imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@\\s]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
],
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"fileMatch": ["^flux/(?:.+/)overlays/(?:.+/)(?:configmap)\\.ya?ml$"],
"matchStrings": [
".+(?:_IMAGE):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@\\s]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
],
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"fileMatch": ["^flux/crds/.+\\.ya?ml$"],
"matchStrings": [
"# renovate: registryUrl=(?<registryUrl>.*?) chart=(?<depName>.*)\\s.+k8up-(?<currentValue>.*?)/.+"
],
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}helm{{/if}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
]
}