mirror of
https://github.com/nold360/hive-apps
synced 2025-02-12 11:11:06 +00:00
Compare commits
4 commits
7ce6f88fe3
...
2e6dc0c891
Author | SHA1 | Date | |
---|---|---|---|
|
2e6dc0c891 | ||
|
1ab5591ca5 | ||
|
f40fd1365f | ||
|
58f6ce91c1 |
4 changed files with 178 additions and 101 deletions
|
@ -5,4 +5,4 @@ apps:
|
|||
- name: falco
|
||||
repoURL: https://falcosecurity.github.io/charts
|
||||
chart: falco
|
||||
targetRevision: 4.13.0
|
||||
targetRevision: 4.14.0
|
||||
|
|
|
@ -6,7 +6,7 @@ apps:
|
|||
- name: crossplane
|
||||
repoURL: https://charts.crossplane.io/stable
|
||||
chart: crossplane
|
||||
targetRevision: 1.17.1
|
||||
targetRevision: 1.17.3
|
||||
secrets:
|
||||
- name: terraform
|
||||
keys:
|
||||
|
|
|
@ -5,7 +5,7 @@ apps:
|
|||
- name: kube-prometheus-stack
|
||||
repoURL: https://prometheus-community.github.io/helm-charts
|
||||
chart: kube-prometheus-stack
|
||||
targetRevision: 65.4.0
|
||||
targetRevision: 65.8.1
|
||||
secrets:
|
||||
- name: grafana
|
||||
keys:
|
||||
|
|
155
renovate.json
155
renovate.json
|
@ -5,14 +5,22 @@
|
|||
"dependencyDashboardTitle": "Renovate Dashboard",
|
||||
"commitMessageSuffix": "",
|
||||
"commitBody": "",
|
||||
"suppressNotifications": ["prIgnoreNotification"],
|
||||
"suppressNotifications": [
|
||||
"prIgnoreNotification"
|
||||
],
|
||||
"rebaseWhen": "conflicted",
|
||||
"assignees": ["@nold360"],
|
||||
"assignees": [
|
||||
"@nold360"
|
||||
],
|
||||
"helm-values": {
|
||||
"fileMatch": ["projects/.*/values/.+\\.ya?ml$"]
|
||||
"fileMatch": [
|
||||
"projects/.*/values/.+\\.ya?ml$"
|
||||
]
|
||||
},
|
||||
"kubernetes": {
|
||||
"fileMatch": ["\\.ya?ml$"],
|
||||
"fileMatch": [
|
||||
"\\.ya?ml$"
|
||||
],
|
||||
"ignorePaths": [
|
||||
"projects",
|
||||
"ansible",
|
||||
|
@ -20,9 +28,12 @@
|
|||
".github"
|
||||
]
|
||||
},
|
||||
"regexManagers": [
|
||||
"customManagers": [
|
||||
{
|
||||
"fileMatch": ["project.ya?ml$"],
|
||||
"customType": "regex",
|
||||
"fileMatch": [
|
||||
"project.ya?ml$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"repoURL: (?<registryUrl>.*?)\n *chart: (?<depName>.*?)\n *targetRevision: (?<currentValue>.*)\n"
|
||||
],
|
||||
|
@ -31,71 +42,137 @@
|
|||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"datasources": ["helm"],
|
||||
"managers": ["regex"],
|
||||
"packageNames": [
|
||||
"matchDatasources": [
|
||||
"helm"
|
||||
],
|
||||
"matchManagers": [
|
||||
"custom.regex"
|
||||
],
|
||||
"matchPackageNames": [
|
||||
"app-template",
|
||||
"common"
|
||||
],
|
||||
"registryUrls": ["https://bjw-s.github.io/helm-charts"]
|
||||
"registryUrls": [
|
||||
"https://bjw-s.github.io/helm-charts"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["helm"],
|
||||
"matchDatasources": [
|
||||
"helm"
|
||||
],
|
||||
"commitMessageTopic": "Helm chart {{depName}}",
|
||||
"separateMinorPatch": true
|
||||
},
|
||||
{
|
||||
"datasources": ["docker"],
|
||||
"matchDatasources": [
|
||||
"docker"
|
||||
],
|
||||
"commitMessageTopic": "Docker image {{depName}}",
|
||||
"commitMessageExtra": "to {{#if isSingleVersion}}v{{{toVersion}}}{{else}}{{{newValue}}}{{/if}}",
|
||||
"commitMessageExtra": "to {{#if isSingleVersion}}v{{{newVersion}}}{{else}}{{{newValue}}}{{/if}}",
|
||||
"enabled": true,
|
||||
"separateMinorPatch": true
|
||||
},
|
||||
{
|
||||
"datasources": ["docker"],
|
||||
"updateTypes": ["major"],
|
||||
"labels": ["renovate/image-release", "dependency/major"]
|
||||
"matchDatasources": [
|
||||
"docker"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"major"
|
||||
],
|
||||
"labels": [
|
||||
"renovate/image-release",
|
||||
"dependency/major"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["docker"],
|
||||
"updateTypes": ["minor"],
|
||||
"labels": ["renovate/image-release", "dependency/minor"]
|
||||
"matchDatasources": [
|
||||
"docker"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"minor"
|
||||
],
|
||||
"labels": [
|
||||
"renovate/image-release",
|
||||
"dependency/minor"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["docker"],
|
||||
"updateTypes": ["patch"],
|
||||
"labels": ["renovate/image-release", "dependency/patch"]
|
||||
"matchDatasources": [
|
||||
"docker"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"patch"
|
||||
],
|
||||
"labels": [
|
||||
"renovate/image-release",
|
||||
"dependency/patch"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["helm"],
|
||||
"updateTypes": ["major"],
|
||||
"labels": ["renovate/helm-release", "dependency/major"]
|
||||
"matchDatasources": [
|
||||
"helm"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"major"
|
||||
],
|
||||
"labels": [
|
||||
"renovate/helm-release",
|
||||
"dependency/major"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["helm"],
|
||||
"updateTypes": ["minor"],
|
||||
"labels": ["renovate/helm-release", "dependency/minor"]
|
||||
"matchDatasources": [
|
||||
"helm"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"minor"
|
||||
],
|
||||
"labels": [
|
||||
"renovate/helm-release",
|
||||
"dependency/minor"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["helm"],
|
||||
"updateTypes": ["patch"],
|
||||
"labels": ["renovate/helm-release", "dependency/patch"]
|
||||
"matchDatasources": [
|
||||
"helm"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"patch"
|
||||
],
|
||||
"labels": [
|
||||
"renovate/helm-release",
|
||||
"dependency/patch"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["docker"],
|
||||
"matchDatasources": [
|
||||
"docker"
|
||||
],
|
||||
"automerge": true,
|
||||
"requiredStatusChecks": null,
|
||||
"ignoreTests": true,
|
||||
"schedule": "after 1am and before 5am",
|
||||
"updateTypes": ["minor", "patch"],
|
||||
"excludePackagePatterns": [ ".*cilium.*", ".*hubble.*", ".*cilium/operator"]
|
||||
"matchUpdateTypes": [
|
||||
"minor",
|
||||
"patch"
|
||||
],
|
||||
"matchPackageNames": [
|
||||
"!/.*cilium.*/",
|
||||
"!/.*hubble.*/",
|
||||
"!/.*cilium/operator/"
|
||||
]
|
||||
},
|
||||
{
|
||||
"datasources": ["helm"],
|
||||
"matchDatasources": [
|
||||
"helm"
|
||||
],
|
||||
"automerge": true,
|
||||
"requiredStatusChecks": null,
|
||||
"ignoreTests": true,
|
||||
"schedule": "after 1am and before 5am",
|
||||
"updateTypes": ["minor", "patch"],
|
||||
"excludePackageNames": []
|
||||
"matchUpdateTypes": [
|
||||
"minor",
|
||||
"patch"
|
||||
],
|
||||
"matchPackageNames": []
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue