Skip to content

Commit

Permalink
bump default agent version + renovate auto (#79)
Browse files Browse the repository at this point in the history
Signed-off-by: Jirka Kremser <jiri.kremser@gmail.com>
  • Loading branch information
jkremser authored and Kedify Bot committed Dec 5, 2024
1 parent 1995160 commit 3389d58
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kedify-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ agent:
disabled: true

image:
tag: "v0.1.6"
tag: "v0.1.7"
repository: ghcr.io/kedify/agent
pullPolicy: IfNotPresent
imagePullSecrets: []
Expand Down
38 changes: 38 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
],
"labels": ["renovate"],
"prConcurrentLimit": 2,
"ignorePaths": ["**/vendor/**"],
// ignore everything except those that are white-listed
"packageRules": [
{
"packagePatterns": ["*"],
"enabled": false,
},
{
"packageNames": [
"ghcr.io/kedify/agent", // docker img
],
"enabled": true,
},
],
"regexManagers": [
{
// kedify agent
"fileMatch": ["^kedify-agent/values.yaml$"],
"datasourceTemplate": "docker",
"depNameTemplate": "ghcr.io/kedify/agent",
"matchStrings": [
"tag:\\s+\"?(?<currentValue>[^\"\n]+)\"?\\s*\n",
],
},
],
"reviewers": ["team:all"],
"prBodyNotes": [
"Bump some versions we have inside our code",
],
}

0 comments on commit 3389d58

Please # to comment.