9 Commits

Author SHA1 Message Date
83b9f27381 fix(ci): deploy helm chart
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-25 22:06:22 +01:00
6c0aa4f013 Merge pull request 'chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.30.0' (#2) from renovate/docker.io-volkerraschek-markdownlint-0.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #2
2022-01-25 20:43:14 +00:00
9c129447ca Merge pull request 'chore(deps): update docker.io/volkerraschek/postfixadmin-fetchmail docker tag to v0.1.3' (#3) from renovate/docker.io-volkerraschek-postfixadmin-fetchmail-0.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #3
2022-01-25 20:40:38 +00:00
0b3dd35328 chore(deps): update docker.io/volkerraschek/postfixadmin-fetchmail docker tag to v0.1.3
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2022-01-25 20:39:34 +00:00
4bab4ed3a4 fix: upgrade to app v0.1.1
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-21 23:34:50 +01:00
a25f14f8df chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.30.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-11-20 12:05:43 +00:00
9890f3c3cd Merge pull request 'chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.29.0' (#1) from renovate/docker.io-volkerraschek-markdownlint-0.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #1
2021-10-28 20:52:20 +00:00
279f3481b0 chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.29.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-10-28 22:50:00 +02:00
bdb7f88e8c fix(renovate): init
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-28 22:24:54 +02:00
3 changed files with 52 additions and 4 deletions

View File

@ -20,7 +20,7 @@ steps:
- name: markdown lint
commands:
- markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.28.1
image: docker.io/volkerraschek/markdownlint:0.30.0
resources:
limits:
cpu: 50
@ -51,6 +51,35 @@ trigger:
exclude:
- tag
---
kind: pipeline
type: kubernetes
name: release
platform:
os: linux
steps:
- name: release-helm-chart
commands:
- helm plugin install https://github.com/chartmuseum/helm-push.git
- helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
- helm package --version ${DRONE_TAG} .
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz volker.raschek
environment:
HELM_REPO_PASSWORD:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: docker.io/alpine/helm:3.7.2
trigger:
event:
- tag
repo:
- volker.raschek/postfixadmin-fetchmail-charts
---
kind: pipeline
type: kubernetes

View File

@ -2,8 +2,8 @@ apiVersion: v2
name: postfixadmin-fetchmail
description: Helm chart for postfixadmin's fetchmail
type: application
version: 0.1.1
appVersion: 0.1.1
version: "0.1.2"
appVersion: "0.1.3"
icon: https://a.fsdn.com/allura/p/postfixadmin/icon?1620415130
keywords:
@ -13,7 +13,7 @@ keywords:
sources:
- https://github.com/volker-raschek/postfixadmin-fetchmail-charts
- https://hub.docker.com/volkerraschek/postfixadmin-fetchmail
- https://hub.docker.com/r/volkerraschek/postfixadmin-fetchmail
maintainers:
- name: Markus Pesch

19
renovate.json Normal file
View File

@ -0,0 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"assignees": [ "volker.raschek" ],
"regexManagers": [
{
"description": "Update container image reference",
"fileMatch": [
"^Chart\\.yaml$"
],
"matchStrings": [
"appVersion: \"(?<currentValue>.*?)\"\\s+"
],
"depNameTemplate": "docker.io/volkerraschek/postfixadmin-fetchmail",
"datasourceTemplate": "docker"
}
]
}