12 Commits
0.4.1 ... 0.5.0

Author SHA1 Message Date
e2a9de91f3 fix: bump chart version
All checks were successful
continuous-integration/drone/push Build is passing
2022-03-16 18:23:39 +01:00
181a35028e Merge pull request 'chore(deps): update dependency drone to v2.11.1' (#16) from renovate/drone-2.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #16
2022-03-16 17:20:41 +00:00
e5833cef56 chore(deps): update dependency drone to v2.11.1
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2022-03-15 17:00:59 +01:00
8e489572f2 Merge pull request 'chore(deps): update drone docker tag to v2.10.0' (#15) from renovate/drone-2.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #15
2022-03-03 18:25:58 +00:00
b572e084e0 chore(deps): update drone docker tag to v2.10.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2022-03-03 15:00:54 +00:00
0869a34339 chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.31.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-02-09 19:30:18 +00:00
e1275fffe0 fix(ci): use helm cm-push command to deploy chart
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-03 22:22:03 +01:00
90e2676365 fix(ci): helm cm push
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-03 18:59:03 +01:00
28eab737ec fix(ci): add package rules
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-30 16:45:44 +01:00
25b6a868ad Merge pull request 'chore(deps): update docker.io/volkerraschek/helm docker tag to v3.8.0' (#13) from renovate/docker.io-volkerraschek-helm-3.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #13
2022-01-29 23:06:28 +00:00
b8787ea957 chore(deps): update docker.io/volkerraschek/helm docker tag to v3.8.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2022-01-29 23:01:18 +00:00
e1469c9d30 fix(ci): use volkerraschek/helm to deploy and lint chart
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-29 23:26:36 +01:00
3 changed files with 26 additions and 9 deletions

View File

@ -11,7 +11,7 @@ steps:
- name: helm lint
commands:
- helm lint
image: quay.io/helmpack/chart-testing:latest
image: docker.io/volkerraschek/helm:3.8.0
resources:
limits:
cpu: 50
@ -20,7 +20,7 @@ steps:
- name: markdown lint
commands:
- markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.30.0
image: docker.io/volkerraschek/markdownlint:0.31.1
resources:
limits:
cpu: 50
@ -63,7 +63,6 @@ platform:
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
@ -72,7 +71,7 @@ steps:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: docker.io/alpine/helm:3.8.0
image: docker.io/volkerraschek/helm:3.8.0
trigger:
event:

View File

@ -2,8 +2,8 @@ apiVersion: v2
name: drone
description: Drone Helm chart for Kubernetes
type: application
version: "0.4.1"
appVersion: "2.9.1"
version: "0.5.0"
appVersion: "2.11.1"
icon: https://readme.drone.io/logo.svg
keywords:

View File

@ -3,6 +3,23 @@
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"assignees": [ "volker.raschek" ],
"labels": [ "renovate" ],
"packageRules": [
{
"addLabels": [ "renovate/drone", "renovate/automerge" ],
"automerge": true,
"matchManagers": "droneci",
"matchUpdateTypes": [ "minor", "patch"]
},
{
"addLabels": [ "renovate/drone", "renovate/automerge" ],
"automerge": false,
"matchPackageNames": [ "drone" ],
"matchManagers": [ "regex" ]
}
],
"rebaseLabel": "renovate/rebase",
"rebaseWhen": "behind-base-branch",
"regexManagers": [
{
"description": "Update container image reference",
@ -12,8 +29,9 @@
"matchStrings": [
"appVersion: \"(?<currentValue>.*?)\"\\s+"
],
"depNameTemplate": "docker.io/drone/drone",
"datasourceTemplate": "docker"
"datasourceTemplate": "docker",
"depNameTemplate": "drone",
"lookupNameTemplate": "docker.io/drone/drone"
}
]
}