You've already forked drone-runner-charts
Compare commits
61 Commits
0.5.1
...
deff379256
Author | SHA1 | Date | |
---|---|---|---|
deff379256
|
|||
f119b49a59
|
|||
d43b80f124
|
|||
4d10bb2064
|
|||
b1ef801435
|
|||
0b7791a850
|
|||
72fb35b6e7
|
|||
fddf41d2fb
|
|||
d332e37f92
|
|||
5561e74db8
|
|||
7488de65b8
|
|||
bea776b908
|
|||
287a8d8854
|
|||
96fc44a26d
|
|||
9c6ef28e34
|
|||
f0e24f93d6
|
|||
8de4965c92
|
|||
0ff0af7027
|
|||
043b9971f8
|
|||
aeeed16650
|
|||
63428d9b90 | |||
b0582574b0 | |||
1c7a3d22ff | |||
4fa3d24479 | |||
dea517693b | |||
58147a60f7 | |||
cda6864614 | |||
948488c886 | |||
69a9f5c7ae | |||
92c326a6ba | |||
d2b2201e92 | |||
968ad170b7 | |||
b083494e3e | |||
3b9eb1704f | |||
72a79c37c8 | |||
48cb08ae5f | |||
763341b212 | |||
645ea6efaf | |||
2bdab1c622 | |||
64c9c49fa3
|
|||
04eda862e0 | |||
aab4b2525a | |||
907afde281 | |||
fbcc4f2c04 | |||
cd9a0ed0d5 | |||
6564452171 | |||
ba3c19f55c | |||
43e5e1135e
|
|||
2eaa818ab9
|
|||
c1f608b086
|
|||
db7d69e2aa | |||
04194e5a18 | |||
444e0b5934 | |||
d3fe125661 | |||
d8f500a92a | |||
f578d8bec0
|
|||
54de055eb3 | |||
ef7d40283e | |||
29375b7fdb | |||
eb1e5fdcc1 | |||
bda3b8053d
|
59
.drone.yml
59
.drone.yml
@ -3,15 +3,21 @@ kind: pipeline
|
|||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: linter
|
name: linter
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: helm lint
|
- name: helm lint
|
||||||
commands:
|
commands:
|
||||||
- helm lint
|
- helm lint
|
||||||
image: docker.io/volkerraschek/helm:3.9.0
|
image: git.cryptic.systems/volker.raschek/helm:3.17.1
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 50
|
cpu: 50
|
||||||
@ -20,27 +26,38 @@ steps:
|
|||||||
- name: markdown lint
|
- name: markdown lint
|
||||||
commands:
|
commands:
|
||||||
- markdownlint *.md
|
- markdownlint *.md
|
||||||
image: docker.io/volkerraschek/markdownlint:0.31.1
|
image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 50
|
cpu: 50
|
||||||
memory: 50M
|
memory: 50M
|
||||||
|
|
||||||
- name: email-notification
|
- name: helm template
|
||||||
environment:
|
commands:
|
||||||
PLUGIN_HOST:
|
- helm template .
|
||||||
from_secret: smtp_host
|
image: git.cryptic.systems/volker.raschek/helm:3.17.1
|
||||||
PLUGIN_USERNAME:
|
|
||||||
from_secret: smtp_username
|
|
||||||
PLUGIN_PASSWORD:
|
|
||||||
from_secret: smtp_password
|
|
||||||
PLUGIN_FROM:
|
|
||||||
from_secret: smtp_mail_address
|
|
||||||
image: docker.io/drillster/drone-email:latest
|
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 50
|
cpu: 150
|
||||||
memory: 25M
|
memory: 150M
|
||||||
|
|
||||||
|
- name: email-notification
|
||||||
|
environment:
|
||||||
|
SMTP_FROM_ADDRESS:
|
||||||
|
from_secret: smtp_from_address
|
||||||
|
SMTP_FROM_NAME:
|
||||||
|
from_secret: smtp_from_name
|
||||||
|
SMTP_HOST:
|
||||||
|
from_secret: smtp_host
|
||||||
|
SMTP_USERNAME:
|
||||||
|
from_secret: smtp_username
|
||||||
|
SMTP_PASSWORD:
|
||||||
|
from_secret: smtp_password
|
||||||
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
cpu: 150
|
||||||
|
memory: 150M
|
||||||
when:
|
when:
|
||||||
status:
|
status:
|
||||||
- changed
|
- changed
|
||||||
@ -56,21 +73,27 @@ kind: pipeline
|
|||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: release
|
name: release
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||||
|
|
||||||
- name: release-helm-chart
|
- name: release-helm-chart
|
||||||
commands:
|
commands:
|
||||||
- helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
|
- helm repo add drone https://charts.cryptic.systems/drone
|
||||||
- helm package --version ${DRONE_TAG} .
|
- helm package --version ${DRONE_TAG} .
|
||||||
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz volker.raschek
|
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz drone
|
||||||
environment:
|
environment:
|
||||||
HELM_REPO_PASSWORD:
|
HELM_REPO_PASSWORD:
|
||||||
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: docker.io/volkerraschek/helm:3.9.0
|
image: git.cryptic.systems/volker.raschek/helm:3.17.1
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 150
|
cpu: 150
|
||||||
|
13
README.md
13
README.md
@ -1,19 +1,22 @@
|
|||||||
# drone-charts
|
# drone-charts
|
||||||
|
|
||||||
[](https://drone.cryptic.systems/volker.raschek/drone-runner-charts)
|
[](https://artifacthub.io/packages/search?repo=drone-ce)
|
||||||
[](https://artifacthub.io/packages/search?repo=volker-raschek)
|
|
||||||
|
|
||||||
This is an inofficial helm chart for
|
This is an inofficial helm chart for
|
||||||
[drone-runner](https://github.com/drone/drone-runner-kube) and should replace
|
[drone-runner](https://github.com/drone/drone-runner-kube) and should replace
|
||||||
the official unmainted helm chart
|
the official unmaintained helm chart
|
||||||
[repository](https://github.com/drone/drone-runner-kube).
|
[repository](https://github.com/drone/drone-runner-kube).
|
||||||
|
|
||||||
This helm chart can be found on [artifacthub.io](https://artifacthub.io/) and
|
This helm chart can be found on [artifacthub.io](https://artifacthub.io/) and
|
||||||
can be installed via helm.
|
can be installed via helm.
|
||||||
|
|
||||||
|
> The repository has been changed and causes error messages when interacting
|
||||||
|
> with the old repository definition. Please remove the chart repo
|
||||||
|
> `volker.raschek` and replace it with `drone`.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
|
helm repo add drone https://charts.cryptic.systems/drone
|
||||||
helm install drone volker.raschek/drone-runner
|
helm install drone drone/drone-runner
|
||||||
```
|
```
|
||||||
|
|
||||||
## Customization
|
## Customization
|
||||||
|
@ -1,28 +1,14 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"automergeStrategy": "merge-commit",
|
"extends": [
|
||||||
"automergeType": "pr",
|
"local>volker.raschek/renovate-config:default#master",
|
||||||
"assignees": [ "volker.raschek" ],
|
"local>volker.raschek/renovate-config:container#master",
|
||||||
"labels": [ "renovate" ],
|
"local>volker.raschek/renovate-config:actions#master",
|
||||||
"packageRules": [
|
"local>volker.raschek/renovate-config:npm#master",
|
||||||
{
|
"local>volker.raschek/renovate-config:regexp#master"
|
||||||
"addLabels": [ "renovate/drone-runner", "renovate/automerge" ],
|
|
||||||
"automerge": true,
|
|
||||||
"matchManagers": "droneci",
|
|
||||||
"matchUpdateTypes": [ "minor", "patch"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"addLabels": [ "renovate/drone-runner", "renovate/automerge" ],
|
|
||||||
"automerge": false,
|
|
||||||
"matchPackageNames": [ "drone-runner" ],
|
|
||||||
"matchManagers": [ "regex" ]
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"rebaseLabel": "renovate/rebase",
|
"customManagers": [
|
||||||
"rebaseWhen": "behind-base-branch",
|
|
||||||
"regexManagers": [
|
|
||||||
{
|
{
|
||||||
"description": "Update container image reference",
|
|
||||||
"fileMatch": [
|
"fileMatch": [
|
||||||
"^Chart\\.yaml$"
|
"^Chart\\.yaml$"
|
||||||
],
|
],
|
||||||
@ -30,8 +16,53 @@
|
|||||||
"appVersion: \"(?<currentValue>.*?)\"\\s+"
|
"appVersion: \"(?<currentValue>.*?)\"\\s+"
|
||||||
],
|
],
|
||||||
"datasourceTemplate": "docker",
|
"datasourceTemplate": "docker",
|
||||||
"depNameTemplate": "drone-runner",
|
"depNameTemplate": "drone/drone-runner-kube",
|
||||||
"lookupNameTemplate": "docker.io/drone/drone-runner-kube"
|
"lookupNameTemplate": "docker.io/drone/drone-runner-kube",
|
||||||
|
"versioningTemplate": "semver"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fileMatch": ["^README\\.md$"],
|
||||||
|
"matchStrings": [
|
||||||
|
"CHART_VERSION=(?<currentValue>.*)"
|
||||||
|
],
|
||||||
|
"depNameTemplate": "volker.raschek/drone-runner-charts",
|
||||||
|
"packageNameTemplate": "https://git.cryptic.systems/volker.raschek/drone-runner-charts",
|
||||||
|
"datasourceTemplate": "git-tags",
|
||||||
|
"versioningTemplate": "semver"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"addLabels": [
|
||||||
|
"renovate/automerge",
|
||||||
|
"renovate/container"
|
||||||
|
],
|
||||||
|
"automerge": true,
|
||||||
|
"excludePackagePatterns": [
|
||||||
|
"drone/drone-runner-kube"
|
||||||
|
],
|
||||||
|
"matchDatasources": [
|
||||||
|
"docker"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"addLabels": [
|
||||||
|
"renovate/automerge",
|
||||||
|
"renovate/documentation"
|
||||||
|
],
|
||||||
|
"automerge": true,
|
||||||
|
"matchDepNames": [
|
||||||
|
"volker.raschek/drone-runner-charts"
|
||||||
|
],
|
||||||
|
"matchUpdateTypes": [
|
||||||
|
"major",
|
||||||
|
"minor",
|
||||||
|
"patch"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user