Skip to content

Commit baad0ee

Browse files
authored
Merge pull request #46 from steled/fix
minio test
2 parents d9a9963 + d7b9f67 commit baad0ee

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

.github/renovate.json

+16-9
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"enabledManagers": [
99
"custom.regex",
1010
"github-actions",
11-
"helmv3",
1211
"terraform"
1312
],
1413
"customManagers": [
@@ -20,6 +19,16 @@
2019
"matchStrings": [
2120
"\\s*# renovate: datasource=(?<datasource>[a-z-.]+?) depName=(?<depName>[^\\s]+?)(?: (?:packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?(?: extractVersion=(?<extractVersion>[^\\s]+?))?(?: registryUrl=(?<registryUrl>[^\\s]+?))?\\s+[A-Za-z0-9_]+?_(VERSION|version)\\s*:*\\??=\\s*[\"']?(?<currentValue>.+?)[\"']?\\s"
2221
]
22+
},
23+
{
24+
"customType": "regex",
25+
"datasourceTemplate": "custom.minio",
26+
"fileMatch": [
27+
"(^|/)minio\\.tf$"
28+
],
29+
"matchStrings": [
30+
"#\\s*renovate:\\s*(datasource=(?<datasource>.*?) )?depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s*\\w*:\\s*(?<currentValue>.*)\\s"
31+
]
2332
}
2433
],
2534
"github-actions": {
@@ -28,21 +37,19 @@
2837
"(^|/)action\\.ya?ml$"
2938
]
3039
},
31-
"helmv3": {
32-
"registryAliases": {
33-
"minio": "https://charts.min.io/"
34-
},
35-
"fileMatch": [
36-
"(^|/)minio\\.tf$"
37-
]
38-
},
3940
"terraform": {
4041
"commitMessageTopic": "Terraform {{depName}}",
4142
"fileMatch": [
4243
"\\.tf$"
4344
],
4445
"pinDigests": false
4546
},
47+
"customDatasources": {
48+
"minio": {
49+
"defaultRegistryUrlTemplate": "https://github.com/minio/minio/tree/master/helm-releases",
50+
"format": "html"
51+
}
52+
},
4653
"packageRules": [
4754
{
4855
"matchManagers": ["custom.regex", "github-actions", "terraform"],

minio.tf

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module "minio" {
22
source = "[email protected]:steled/terraformmodules.git//minio?ref=v0.9"
33
# source = "../terraformmodules/minio/"
44

5+
# renovate: depName=minio
56
minio_version = "5.2.0" # check version here: https://github.com/minio/minio/blob/master/helm/minio/Chart.yaml#L4
67
kubernetes_namespace_name = "minio"
78
ingress_domains = var.minio_ingress_domains_prd

0 commit comments

Comments
 (0)