Skip to content

Commit

Permalink
add fix for OCI-based registries
Browse files Browse the repository at this point in the history
  • Loading branch information
Caleb Hansard committed Nov 6, 2024
1 parent 94863a7 commit 4ef239b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@
"customType": "regex",
"fileMatch": ["(^|/)main\\.tf$"],
"matchStrings": [
"chart *=.*\"(?<depName>.*?)\"\\)\\s*chart_version *=.*\"(?<currentValue>.*?)\"\\)\\s*repository *=.*\"(?<registryUrl>.*?)\"\\)"
"chart *=.*\"(?<depName>.*?)\"\\)\\s*chart_version *=.*\"(?<currentValue>.*?)\"\\)\\s*repository *=.*\"(?<registryUrl>https.*?)\"\\)"
],
"datasourceTemplate": "helm",
"versioningTemplate": "helm"
"datasourceTemplate": "helm"
},
{
"customType": "regex",
"fileMatch": ["(^|/)main\\.tf$"],
"matchStrings": [
"chart *=.*\"(?<depName>.*?)\"\\)\\s*chart_version *=.*\"(?<currentValue>.*?)\"\\)\\s*repository *=.*\"oci://(?<namespace>.*?)\"\\)"
],
"datasourceTemplate": "docker",
"packageNameTemplate": "{{namespace}}/{{depName}}"
}
]
}

0 comments on commit 4ef239b

Please sign in to comment.