1 Commits

Author SHA1 Message Date
c93e2bbc09 chore(deps): update roundcubemail docker tag to v1.6.10
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-02-13 14:34:12 +00:00
4 changed files with 32 additions and 63 deletions

View File

@ -17,7 +17,7 @@ steps:
- name: helm lint - name: helm lint
commands: commands:
- helm lint - helm lint
image: git.cryptic.systems/volker.raschek/helm:3.18.5 image: git.cryptic.systems/volker.raschek/helm:3.16.4
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -26,7 +26,7 @@ steps:
- name: markdown lint - name: markdown lint
commands: commands:
- markdownlint *.md - markdownlint *.md
image: git.cryptic.systems/volker.raschek/markdownlint:0.45.0 image: git.cryptic.systems/volker.raschek/markdownlint:0.43.0
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -35,7 +35,7 @@ steps:
- name: helm template - name: helm template
commands: commands:
- helm template . - helm template .
image: git.cryptic.systems/volker.raschek/helm:3.18.5 image: git.cryptic.systems/volker.raschek/helm:3.16.4
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -53,7 +53,7 @@ steps:
from_secret: smtp_username from_secret: smtp_username
SMTP_PASSWORD: SMTP_PASSWORD:
from_secret: smtp_password from_secret: smtp_password
image: git.cryptic.systems/volker.raschek/drone-email:0.2.0 image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
resources: resources:
limits: limits:
cpu: 150 cpu: 150
@ -93,7 +93,7 @@ steps:
from_secret: helm_repo_password from_secret: helm_repo_password
HELM_REPO_USERNAME: HELM_REPO_USERNAME:
from_secret: helm_repo_username from_secret: helm_repo_username
image: git.cryptic.systems/volker.raschek/helm:3.18.5 image: git.cryptic.systems/volker.raschek/helm:3.16.4
resources: resources:
limits: limits:
cpu: 150 cpu: 150

View File

@ -3,7 +3,7 @@ name: roundcube
description: Helm chart for roundcube description: Helm chart for roundcube
type: application type: application
version: "0.2.1" version: "0.2.1"
appVersion: "1.5.3-fpm-alpine" appVersion: "1.6.10-apache"
icon: https://upload.wikimedia.org/wikipedia/commons/e/e3/Roundcube_logo_icon.svg icon: https://upload.wikimedia.org/wikipedia/commons/e/e3/Roundcube_logo_icon.svg
keywords: keywords:

View File

@ -1,5 +1,6 @@
# roundcube-charts # roundcube-charts
[![Build Status](https://drone.cryptic.systems/api/badges/volker.raschek/roundcube-charts/status.svg)](https://drone.cryptic.systems/volker.raschek/roundcube-charts)
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/volker-raschek)](https://artifacthub.io/packages/search?repo=volker-raschek) [![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/volker-raschek)](https://artifacthub.io/packages/search?repo=volker-raschek)
This is an inofficial helm chart for This is an inofficial helm chart for

View File

@ -1,68 +1,36 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "assignees": [ "volker.raschek" ],
"local>volker.raschek/renovate-config:default#master", "labels": [ "renovate" ],
"local>volker.raschek/renovate-config:container#master", "packageRules": [
"local>volker.raschek/renovate-config:actions#master",
"local>volker.raschek/renovate-config:npm#master",
"local>volker.raschek/renovate-config:regexp#master"
],
"customManagers": [
{ {
"addLabels": [ "renovate/roundcube", "renovate/automerge" ],
"automerge": true,
"matchManagers": "droneci",
"matchUpdateTypes": [ "minor", "patch"]
},
{
"addLabels": [ "renovate/roundcubemail", "renovate/automerge" ],
"automerge": false,
"matchPackageNames": [ "roundcubemail" ],
"matchManagers": [ "regex" ],
"matchUpdateTypes": [ "minor", "patch"]
}
],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch",
"regexManagers": [
{
"description": "Update container image reference",
"fileMatch": [ "fileMatch": [
"^Chart\\.yaml$" "^Chart\\.yaml$"
], ],
"matchStrings": [ "matchStrings": [
"appVersion: \"(?<currentValue>.*?)-apache\"\\s+" "appVersion: \"(?<currentValue>.*?)\"\\s+"
], ],
"datasourceTemplate": "docker", "datasourceTemplate": "docker",
"depNameTemplate": "roundcube/roundcubemail", "depNameTemplate": "roundcubemail",
"lookupNameTemplate": "docker.io/roundcube/roundcubemail", "lookupNameTemplate": "docker.io/roundcube/roundcubemail"
"versioningTemplate": "semver"
},
{
"fileMatch": ["^README\\.md$"],
"matchStrings": [
"CHART_VERSION=(?<currentValue>.*)"
],
"depNameTemplate": "volker.raschek/roundcube-charts",
"packageNameTemplate": "https://git.cryptic.systems/volker.raschek/roundcube-charts",
"datasourceTemplate": "git-tags",
"versioningTemplate": "semver"
}
],
"packageRules": [
{
"addLabels": [
"renovate/automerge",
"renovate/container"
],
"automerge": true,
"excludePackagePatterns": [
"roundcube/roundcubemail"
],
"matchDatasources": [
"docker"
],
"matchUpdateTypes": [
"minor",
"patch"
]
},
{
"addLabels": [
"renovate/automerge",
"renovate/documentation"
],
"automerge": true,
"matchDepNames": [
"volker.raschek/roundcube-charts"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
]
} }
] ]
} }