You've already forked postfixadmin-charts
Compare commits
80 Commits
0.1.2
..
2ddafc6700
| Author | SHA1 | Date | |
|---|---|---|---|
|
2ddafc6700
|
|||
|
0317fe2049
|
|||
|
7264d7ad30
|
|||
|
dea0e673f9
|
|||
|
28015aff9e
|
|||
|
102024f0fc
|
|||
|
bf685c7838
|
|||
|
c05b0582af
|
|||
|
b950294478
|
|||
|
7e9b8e7906
|
|||
|
0bcef6a7da
|
|||
|
848912da9e
|
|||
|
44867c8db6
|
|||
|
c9716ee1c0
|
|||
|
64bb8ef89b
|
|||
|
20975b3337
|
|||
|
9341a1a207
|
|||
|
e188252ad1
|
|||
|
2c0baaf03d
|
|||
|
a4f2db12ad
|
|||
|
97d232ada6
|
|||
|
24f97fa04d
|
|||
|
b864626ab8
|
|||
|
81084b07bc
|
|||
| f5c9cccc3b | |||
| 1fe180f9c3 | |||
| e2d62df061 | |||
| c91e4bd880 | |||
| c9ec748055 | |||
| c0878f49cb | |||
| 3ad7a5415b | |||
| edc285bcf3 | |||
| 7e4bc2841f | |||
| 737f9881fd | |||
| 0571cca48d | |||
| 058d8db53f | |||
| 45aa715311 | |||
| 646efcdfcf | |||
| 553e840721 | |||
| 9080549b01 | |||
| c8cc77c926 | |||
|
98fa383783
|
|||
|
f7a7995fbd
|
|||
| 63ae11bd2a | |||
| 88d892ba66 | |||
| 103deeb8a8 | |||
| 93111ff869 | |||
| 8dc99ba5e9 | |||
| 14a2dc79de | |||
| 2c22b9973d | |||
| fe5172164a | |||
| 152a5b0296 | |||
| 7d2d558e0a | |||
| 594d1f538c | |||
| e8a6a77644 | |||
| 8440356e15 | |||
| 34330d296f | |||
|
96ec4acc22
|
|||
| 7152f72d35 | |||
| 02d897f447 | |||
| 77d7e2eb57 | |||
| 1dd3313ad1 | |||
|
2d2fd99718
|
|||
|
52a548929d
|
|||
| 5777019d11 | |||
|
b49033a483
|
|||
| 5cb0a7b785 | |||
|
ed5d4528e2
|
|||
| 3055771339 | |||
| 6ec1b71e35 | |||
|
c719b477df
|
|||
| d75e1568ed | |||
| 543002e9d7 | |||
|
b28b30b055
|
|||
|
18e56e485c
|
|||
| 4458c7e24b | |||
|
04568d3e3f
|
|||
|
c6f4a9e240
|
|||
| 73e690f892 | |||
| 3a553053a0 |
+40
-66
@@ -3,15 +3,21 @@ 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:4.1.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
@@ -20,27 +26,38 @@ steps:
|
||||
- name: markdown lint
|
||||
commands:
|
||||
- markdownlint *.md
|
||||
image: docker.io/volkerraschek/markdownlint:0.30.0
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:0.45.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
memory: 50M
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
|
||||
- name: helm template
|
||||
commands:
|
||||
- helm template .
|
||||
image: git.cryptic.systems/volker.raschek/helm:4.1.0
|
||||
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.0
|
||||
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:4.1.0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 150
|
||||
memory: 150M
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
repo:
|
||||
- volker.raschek/postfixadmin-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-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-charts
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ name: postfixadmin
|
||||
description: Helm chart for postfixadmin
|
||||
type: application
|
||||
version: "0.1.1"
|
||||
appVersion: "3.3.10"
|
||||
appVersion: "3.3.13"
|
||||
icon: https://a.fsdn.com/allura/p/postfixadmin/icon?1620415130
|
||||
|
||||
keywords:
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
# postfixadmin-charts
|
||||
|
||||
[](https://drone.cryptic.systems/volker.raschek/postfixadmin-charts)
|
||||
[](https://artifacthub.io/packages/search?repo=volker-raschek)
|
||||
|
||||
This is an inofficial helm chart for
|
||||
|
||||
+56
-7
@@ -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+"
|
||||
],
|
||||
"depNameTemplate": "docker.io/volkerraschek/postfixadmin",
|
||||
"datasourceTemplate": "docker"
|
||||
"datasourceTemplate": "docker",
|
||||
"depNameTemplate": "volker.raschek/postfixadmin",
|
||||
"lookupNameTemplate": "git.cryptic.systems/volker.raschek/postfixadmin",
|
||||
"versioningTemplate": "semver"
|
||||
},
|
||||
{
|
||||
"fileMatch": ["^README\\.md$"],
|
||||
"matchStrings": [
|
||||
"CHART_VERSION=(?<currentValue>.*)"
|
||||
],
|
||||
"depNameTemplate": "volker.raschek/postfixadmin-charts",
|
||||
"packageNameTemplate": "https://git.cryptic.systems/volker.raschek/postfixadmin-charts",
|
||||
"datasourceTemplate": "git-tags",
|
||||
"versioningTemplate": "semver"
|
||||
}
|
||||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"addLabels": [
|
||||
"renovate/automerge",
|
||||
"renovate/container"
|
||||
],
|
||||
"automerge": true,
|
||||
"excludePackagePatterns": [
|
||||
"volker.raschek/postfixadmin"
|
||||
],
|
||||
"matchDatasources": [
|
||||
"docker"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"minor",
|
||||
"patch"
|
||||
]
|
||||
},
|
||||
{
|
||||
"addLabels": [
|
||||
"renovate/automerge",
|
||||
"renovate/documentation"
|
||||
],
|
||||
"automerge": true,
|
||||
"matchDepNames": [
|
||||
"volker.raschek/postfixadmin-charts"
|
||||
],
|
||||
"matchUpdateTypes": [
|
||||
"major",
|
||||
"minor",
|
||||
"patch"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -50,6 +50,9 @@ spec:
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.podPriorityClassName }}
|
||||
priorityClassName: {{ .Values.podPriorityClassName }}
|
||||
{{- end }}
|
||||
{{- with .Values.affinity }}
|
||||
affinity:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
|
||||
+3
-1
@@ -14,6 +14,8 @@ fullnameOverride: ""
|
||||
|
||||
podAnnotations: {}
|
||||
|
||||
podPriorityClassName: ""
|
||||
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
|
||||
@@ -25,7 +27,7 @@ securityContext: {}
|
||||
# runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
|
||||
config:
|
||||
config: {}
|
||||
# POSTFIXADMIN_ADMIN_EMAIL
|
||||
# Define the email address of an admin via POSTFIXADMIN_ADMIN_EMAIL to send
|
||||
# emails or broadcast messages in his name instead of the email address of the
|
||||
|
||||
Reference in New Issue
Block a user