Compare commits
78
Commits
0.2.2
..
16268c686f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
16268c686f
|
||
|
|
b82c978e8e
|
||
|
|
a821f1a9fd
|
||
|
|
ac2f976991
|
||
|
|
dc7b4b62f2
|
||
|
|
bfe7bb73bf
|
||
|
|
761f1cacd1
|
||
|
|
6b80e4410e
|
||
|
|
9b31b9350e
|
||
|
|
47da92b1e6
|
||
|
|
9b3105ea92
|
||
|
|
f3b2373f46
|
||
|
|
1020454f7f
|
||
|
|
fde7a5b8b0
|
||
|
|
aa0f1918a1
|
||
|
|
b666d28867
|
||
|
|
fa6462e314
|
||
|
|
40d5638a03
|
||
|
|
fe61118ec1
|
||
|
|
d2383aed03 | ||
|
|
dd021673e6
|
||
|
|
2718fe3be2 | ||
|
|
3aea1a5671 | ||
|
|
9588e11876
|
||
|
|
3ed0f88ef7 | ||
|
|
9137bbae38 | ||
|
|
13952935f2 | ||
|
|
4751574fdb | ||
|
|
4ee680169f | ||
|
|
fbff81c67a | ||
|
|
a35bb2891c | ||
|
|
3a09599580 | ||
|
|
f5c67e0ca7 | ||
|
|
9aae81b1ab | ||
|
|
14b00c757b | ||
|
|
dbf97ed4c2 | ||
|
|
3341217460 | ||
|
|
d7476cc800 | ||
|
|
46b451734b | ||
|
|
205535f74e | ||
|
|
32078fff9a | ||
|
|
c23fe31df1 | ||
|
|
e9ade114b9
|
||
|
|
62ece1552a | ||
|
|
203959928f | ||
|
|
46fd3ea560 | ||
|
|
95033baf76 | ||
|
|
23e6fb1140 | ||
|
|
dde3763c89 | ||
|
|
89184e6688 | ||
|
|
66de59854e | ||
|
|
127e2b0839 | ||
|
|
5d649bd295 | ||
|
|
830387ddf9 | ||
|
|
c3d9fda389 | ||
|
|
ad35c8baf1
|
||
|
|
8ba37cddd5 | ||
|
|
c2a7048856 | ||
|
|
40e1d51503 | ||
|
|
e06259b87a | ||
|
|
978b321813 | ||
|
|
044de7f5ff | ||
|
|
80df76a43c
|
||
|
|
5b872feb6f | ||
|
|
f45bcefbc3
|
||
|
|
35e606c02b | ||
|
|
7220364946
|
||
|
|
c93dc8ca8b
|
||
|
|
f2e14a1dd5 | ||
|
|
6fdb2437e8 | ||
|
|
3adc1b3ceb
|
||
|
|
25d96fe0c4
|
||
|
|
0227c422a7
|
||
|
|
01e52d1029 | ||
|
|
67ede7fad8 | ||
|
|
23dd2efdd2
|
||
|
|
8b6851937a | ||
|
|
db34d33bab |
+42
-68
@@ -3,44 +3,61 @@ kind: pipeline
|
||||
type: kubernetes
|
||||
name: linter
|
||||
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: clone
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- name: helm lint
|
||||
commands:
|
||||
- helm lint
|
||||
image: quay.io/helmpack/chart-testing:latest
|
||||
image: git.cryptic.systems/volker.raschek/helm:3.19.2
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
memory: 50M
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
|
||||
- name: markdown lint
|
||||
commands:
|
||||
- markdownlint *.md
|
||||
image: docker.io/volkerraschek/markdownlint:0.30.0
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.48.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
memory: 50M
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
|
||||
- name: helm template
|
||||
commands:
|
||||
- helm template .
|
||||
image: git.cryptic.systems/volker.raschek/helm:3.19.2
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
|
||||
- name: email-notification
|
||||
environment:
|
||||
PLUGIN_HOST:
|
||||
SMTP_FROM_ADDRESS:
|
||||
from_secret: smtp_from_address
|
||||
SMTP_FROM_NAME:
|
||||
from_secret: smtp_from_name
|
||||
SMTP_HOST:
|
||||
from_secret: smtp_host
|
||||
PLUGIN_USERNAME:
|
||||
SMTP_USERNAME:
|
||||
from_secret: smtp_username
|
||||
PLUGIN_PASSWORD:
|
||||
SMTP_PASSWORD:
|
||||
from_secret: smtp_password
|
||||
PLUGIN_FROM:
|
||||
from_secret: smtp_mail_address
|
||||
image: docker.io/drillster/drone-email:latest
|
||||
image: git.cryptic.systems/volker.raschek/drone-email:0.2.2
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
memory: 25M
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
when:
|
||||
status:
|
||||
- changed
|
||||
@@ -52,18 +69,22 @@ trigger:
|
||||
- tag
|
||||
|
||||
---
|
||||
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: release
|
||||
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
|
||||
steps:
|
||||
- name: clone
|
||||
image: git.cryptic.systems/volker.raschek/git:1.4.0
|
||||
|
||||
- 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,61 +93,14 @@ steps:
|
||||
from_secret: helm_repo_password
|
||||
HELM_REPO_USERNAME:
|
||||
from_secret: helm_repo_username
|
||||
image: docker.io/alpine/helm:3.7.2
|
||||
image: git.cryptic.systems/volker.raschek/helm:3.19.2
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
repo:
|
||||
- volker.raschek/roundcube-charts
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: sync
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: github
|
||||
image: docker.io/appleboy/drone-git-push:latest
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
memory: 25M
|
||||
settings:
|
||||
branch: master
|
||||
remote: ssh://git@github.com/volker-raschek/roundcube-charts.git
|
||||
force: true
|
||||
ssh_key:
|
||||
from_secret: ssh_key
|
||||
|
||||
- name: email-notification
|
||||
environment:
|
||||
PLUGIN_HOST:
|
||||
from_secret: smtp_host
|
||||
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:
|
||||
limits:
|
||||
cpu: 50
|
||||
memory: 25M
|
||||
when:
|
||||
status:
|
||||
- changed
|
||||
- failure
|
||||
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
event:
|
||||
- push
|
||||
repo:
|
||||
- volker.raschek/roundcube-charts
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ name: roundcube
|
||||
description: Helm chart for roundcube
|
||||
type: application
|
||||
version: "0.2.1"
|
||||
appVersion: "1.5.2-apache"
|
||||
appVersion: "1.5.3-fpm-alpine"
|
||||
icon: https://upload.wikimedia.org/wikipedia/commons/e/e3/Roundcube_logo_icon.svg
|
||||
|
||||
keywords:
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
# roundcube-charts
|
||||
|
||||
[](https://drone.cryptic.systems/volker.raschek/roundcube-charts)
|
||||
[](https://artifacthub.io/packages/search?repo=volker-raschek)
|
||||
|
||||
This is an inofficial helm chart for
|
||||
|
||||
+58
-9
@@ -1,19 +1,68 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"automergeStrategy": "merge-commit",
|
||||
"automergeType": "pr",
|
||||
"assignees": [ "volker.raschek" ],
|
||||
"regexManagers": [
|
||||
"extends": [
|
||||
"local>volker.raschek/renovate-config:default#master",
|
||||
"local>volker.raschek/renovate-config:container#master",
|
||||
"local>volker.raschek/renovate-config:actions#master",
|
||||
"local>volker.raschek/renovate-config:npm#master",
|
||||
"local>volker.raschek/renovate-config:regexp#master"
|
||||
],
|
||||
"customManagers": [
|
||||
{
|
||||
"description": "Update container image reference",
|
||||
"fileMatch": [
|
||||
"^Chart\\.yaml$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"appVersion: \"(?<currentValue>.*?)\"\\s+"
|
||||
"appVersion: \"(?<currentValue>.*?)-apache\"\\s+"
|
||||
],
|
||||
"depNameTemplate": "docker.io/roundcube/roundcubemail",
|
||||
"datasourceTemplate": "docker"
|
||||
"datasourceTemplate": "docker",
|
||||
"depNameTemplate": "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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,13 +47,16 @@ spec:
|
||||
port: http
|
||||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
{{- with .Values.affinity }}
|
||||
affinity:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- with .Values.affinity }}
|
||||
affinity:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- if .Values.podPriorityClassName }}
|
||||
priorityClassName: {{ .Values.podPriorityClassName }}
|
||||
{{- end }}
|
||||
{{- with .Values.tolerations }}
|
||||
tolerations:
|
||||
|
||||
@@ -22,6 +22,8 @@ serviceAccount:
|
||||
|
||||
podAnnotations: {}
|
||||
|
||||
podPriorityClassName: ""
|
||||
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
|
||||
|
||||
Reference in New Issue
Block a user