18 Commits
0.1.3 ... 0.3.0

Author SHA1 Message Date
b3509480e4 chore(deps): update dependency postfixadmin-fetchmail to v0.2.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-15 06:22:12 +02:00
6f103ce5c3 chore(deps): update dependency docker.io/volkerraschek/helm to v3.9.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-15 06:11:53 +02:00
bf0c4e6140 fix: values config error
All checks were successful
continuous-integration/drone/push Build is passing
2022-07-14 21:02:19 +02:00
12a66ded5d fix(ci): helm template
All checks were successful
continuous-integration/drone/push Build is passing
2022-06-26 18:18:07 +02:00
92a38ca993 chore(deps): update dependency docker.io/volkerraschek/helm to v3.9.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-05-24 08:59:03 +02:00
8cf0a76dbf fix(ci): resource limits
All checks were successful
continuous-integration/drone/push Build is passing
2022-05-21 11:29:19 +02:00
5fe6f6a9eb chore(deps): update dependency docker.io/volkerraschek/helm to v3.8.2
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-05-11 14:11:42 +02:00
680321f8ef fix(drone): remove sync via drone - use instead gitea push feature
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-19 22:30:15 +02:00
9e2deacbd2 feat: support pod priorityClassName
All checks were successful
continuous-integration/drone/push Build is passing
2022-04-18 11:01:14 +02:00
fb6f3501cd chore(deps): update dependency docker.io/volkerraschek/helm to v3.8.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-04-14 21:51:40 +02:00
1c58fdac86 chore(deps): update dependency docker.io/volkerraschek/helm to v3.8.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-03-11 12:11:46 +01:00
d7fc9719fd 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:33:09 +00:00
7f8b84fc1d 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:10 +01:00
7b4f59c0fe fix(ci): helm cm push
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-03 18:57:29 +01:00
c3f463823f fix(ci): add package rules
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-30 16:40:08 +01:00
d545d5d416 fix(ci): use volkerraschek/helm to deploy and lint chart
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-30 00:03:25 +01:00
e1742f40db Merge pull request 'chore(deps): update docker.io/alpine/helm docker tag to v3.8.0' (#4) from renovate/docker.io-alpine-helm-3.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #4
2022-01-27 13:44:37 +00:00
383fa2734f chore(deps): update docker.io/alpine/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-27 10:02:30 +00:00
6 changed files with 50 additions and 70 deletions

View File

@ -11,20 +11,29 @@ steps:
- name: helm lint
commands:
- helm lint
image: quay.io/helmpack/chart-testing:latest
image: docker.io/volkerraschek/helm:3.9.1
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: docker.io/volkerraschek/markdownlint:0.31.1
resources:
limits:
cpu: 50
memory: 50M
cpu: 150
memory: 150M
- name: helm template
commands:
- helm template .
image: docker.io/volkerraschek/helm:3.9.1
resources:
limits:
cpu: 150
memory: 150M
- name: email-notification
environment:
@ -39,8 +48,8 @@ steps:
image: docker.io/drillster/drone-email:latest
resources:
limits:
cpu: 50
memory: 25M
cpu: 150
memory: 150M
when:
status:
- changed
@ -52,7 +61,6 @@ trigger:
- tag
---
kind: pipeline
type: kubernetes
name: release
@ -63,7 +71,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,61 +79,14 @@ steps:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: docker.io/alpine/helm:3.7.2
image: docker.io/volkerraschek/helm:3.9.1
resources:
limits:
cpu: 150
memory: 150M
trigger:
event:
- tag
repo:
- volker.raschek/postfixadmin-fetchmail-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/postfixadmin-fetchmail-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/postfixadmin-fetchmail-charts

View File

@ -3,7 +3,7 @@ name: postfixadmin-fetchmail
description: Helm chart for postfixadmin's fetchmail
type: application
version: "0.1.2"
appVersion: "0.1.3"
appVersion: "0.2.0"
icon: https://a.fsdn.com/allura/p/postfixadmin/icon?1620415130
keywords:

View File

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

View File

@ -42,6 +42,9 @@ spec:
nodeSelector:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- if .Values.podPriorityClassName }}
priorityClassName: {{ .Values.podPriorityClassName }}
{{- end }}
restartPolicy: OnFailure
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 12 }}

View File

@ -5,10 +5,6 @@ metadata:
type: Opaque
stringData:
{{- if not (hasKey .Values "config") -}}
{{- $_ := set .Values "config" dict -}}
{{- end -}}
{{/* SETUP CONFIG */}}
{{ range $key, $value := .Values.config }}
{{ upper $key}}: {{ quote $value }}

View File

@ -23,12 +23,14 @@ serviceAccount:
podAnnotations: {}
podPriorityClassName: ""
podSecurityContext: {}
# fsGroup: 2000
schedule: "*/10 * * * *"
config:
config: {}
# DATABASE_TYPE
# Currently will be only postgres, mysql and mariadb supported. About the
# environment variable DATABASE_TYPE can the backend type defined. The value