3 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
3 changed files with 32 additions and 3 deletions

View File

@ -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

View File

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

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 }}