You've already forked roundcube-charts
Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
c93dc8ca8b
|
|||
f2e14a1dd5 | |||
6fdb2437e8 | |||
3adc1b3ceb
|
|||
25d96fe0c4
|
|||
0227c422a7
|
|||
01e52d1029 | |||
67ede7fad8 | |||
23dd2efdd2
|
|||
8b6851937a | |||
db34d33bab | |||
17e2fdbe1a
|
|||
b6d2c30d7f
|
32
.drone.yml
32
.drone.yml
@ -11,7 +11,7 @@ steps:
|
||||
- name: helm lint
|
||||
commands:
|
||||
- helm lint
|
||||
image: quay.io/helmpack/chart-testing:latest
|
||||
image: docker.io/volkerraschek/helm:3.8.1
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50
|
||||
@ -20,7 +20,7 @@ steps:
|
||||
- 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
|
||||
@ -51,6 +51,34 @@ trigger:
|
||||
exclude:
|
||||
- tag
|
||||
|
||||
---
|
||||
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: release
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
|
||||
steps:
|
||||
- name: release-helm-chart
|
||||
commands:
|
||||
- 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/volkerraschek/helm:3.8.1
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
repo:
|
||||
- volker.raschek/roundcube-charts
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
|
@ -2,8 +2,8 @@ apiVersion: v2
|
||||
name: roundcube
|
||||
description: Helm chart for roundcube
|
||||
type: application
|
||||
version: "0.2.0"
|
||||
appVersion: "1.5.1-apache"
|
||||
version: "0.2.1"
|
||||
appVersion: "1.5.2-apache"
|
||||
icon: https://upload.wikimedia.org/wikipedia/commons/e/e3/Roundcube_logo_icon.svg
|
||||
|
||||
keywords:
|
||||
|
@ -3,6 +3,24 @@
|
||||
"automergeStrategy": "merge-commit",
|
||||
"automergeType": "pr",
|
||||
"assignees": [ "volker.raschek" ],
|
||||
"labels": [ "renovate" ],
|
||||
"packageRules": [
|
||||
{
|
||||
"addLabels": [ "renovate/roundcube", "renovate/automerge" ],
|
||||
"automerge": true,
|
||||
"matchManagers": "droneci",
|
||||
"matchUpdateTypes": [ "minor", "patch"]
|
||||
},
|
||||
{
|
||||
"addLabels": [ "renovate/roundcubemail", "renovate/automerge" ],
|
||||
"automerge": false,
|
||||
"matchPackageNames": [ "roundcubemail" ],
|
||||
"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/roundcube/roundcubemail",
|
||||
"datasourceTemplate": "docker"
|
||||
"datasourceTemplate": "docker",
|
||||
"depNameTemplate": "roundcubemail",
|
||||
"lookupNameTemplate": "docker.io/roundcube/roundcubemail"
|
||||
}
|
||||
]
|
||||
}
|
@ -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