You've already forked roundcube-charts
Compare commits
9 Commits
3ad5ee6342
...
0.2.2
Author | SHA1 | Date | |
---|---|---|---|
17e2fdbe1a
|
|||
b6d2c30d7f
|
|||
d232ca8ac4
|
|||
b0822f4afd | |||
a7be03cfdb | |||
0f56797996 | |||
1d02c519ce | |||
8a7948b158 | |||
7b797c741b
|
31
.drone.yml
31
.drone.yml
@ -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/roundcube-charts
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
|
@ -2,8 +2,8 @@ apiVersion: v2
|
||||
name: roundcube
|
||||
description: Helm chart for roundcube
|
||||
type: application
|
||||
version: 0.1.0
|
||||
appVersion: "1.4.11-apache"
|
||||
version: "0.2.1"
|
||||
appVersion: "1.5.2-apache"
|
||||
icon: https://upload.wikimedia.org/wikipedia/commons/e/e3/Roundcube_logo_icon.svg
|
||||
|
||||
keywords:
|
||||
|
19
renovate.json
Normal file
19
renovate.json
Normal 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/roundcube/roundcubemail",
|
||||
"datasourceTemplate": "docker"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user