10 Commits

Author SHA1 Message Date
5fc0542211 fix(ci): deploy helm chart
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-25 22:12:02 +01:00
7b93faeb46 fix: bump chart version to 0.1.1
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-21 21:37:46 +01:00
3ba80bdb1b fix: httpPath of liveness and readyness probe 2022-01-21 21:37:46 +01:00
e502f83a7b Merge pull request 'chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.30.0' (#2) from renovate/docker.io-volkerraschek-markdownlint-0.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #2
2021-11-20 12:38:27 +00:00
d6d9866f57 chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.30.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-11-20 12:04:52 +00:00
062d181a7a Merge pull request 'chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.29.0' (#1) from renovate/docker.io-volkerraschek-markdownlint-0.x into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #1
2021-10-28 20:51:48 +00:00
dadb0ab4b1 chore(deps): update docker.io/volkerraschek/markdownlint docker tag to v0.29.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2021-10-28 22:49:43 +02:00
a47f2fe94a fix(renovate): init
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-28 22:26:14 +02:00
fb684886ae fix(ci): only sync master branch
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-12 18:32:11 +02:00
eabdbd5256 fix: add .editorconfig 2021-10-12 18:31:59 +02:00
5 changed files with 67 additions and 5 deletions

View File

@ -20,7 +20,7 @@ steps:
- name: markdown lint
commands:
- markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.28.1
image: docker.io/volkerraschek/markdownlint:0.30.0
resources:
limits:
cpu: 50
@ -51,6 +51,35 @@ trigger:
exclude:
- tag
---
kind: pipeline
type: kubernetes
name: release
platform:
os: linux
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
environment:
HELM_REPO_PASSWORD:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: docker.io/alpine/helm:3.7.2
trigger:
event:
- tag
repo:
- volker.raschek/postfixadmin-charts
---
kind: pipeline
type: kubernetes
@ -95,6 +124,8 @@ steps:
- failure
trigger:
branch:
- master
event:
- push
repo:

12
.editorconfig Normal file
View File

@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false

View File

@ -2,8 +2,8 @@ apiVersion: v2
name: postfixadmin
description: Helm chart for postfixadmin
type: application
version: 0.1.0
appVersion: 3.3.10
version: "0.1.1"
appVersion: "3.3.10"
icon: https://a.fsdn.com/allura/p/postfixadmin/icon?1620415130
keywords:

19
renovate.json Normal file
View File

@ -0,0 +1,19 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automergeStrategy": "merge-commit",
"automergeType": "pr",
"assignees": [ "volker.raschek" ],
"regexManagers": [
{
"description": "Update container image reference",
"fileMatch": [
"^Chart\\.yaml$"
],
"matchStrings": [
"appVersion: \"(?<currentValue>.*?)\"\\s+"
],
"depNameTemplate": "docker.io/volkerraschek/postfixadmin",
"datasourceTemplate": "docker"
}
]
}

View File

@ -38,11 +38,11 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /
path: /login.php
port: http
readinessProbe:
httpGet:
path: /
path: /login.php
port: http
resources:
{{- toYaml .Values.resources | nindent 12 }}