Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/on-push-lint-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

env:
KUBE_SCORE_VERSION: 1.17.0
HELM_VERSION: v3.13.2
HELM_VERSION: v3.19.0

concurrency:
group: ${{ github.ref }}
Expand All @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4.3.0
with:
version: ${{ env.HELM_VERSION }}

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
matrix:
# Choose from https://hub.docker.com/r/kindest/node/tags
KubeVersion: [ 1.30.10, 1.31.6, 1.32.2]
KubeVersion: [ 1.32.8, 1.33.4, 1.34.0]

steps:
- name: Checkout
Expand Down
3 changes: 0 additions & 3 deletions TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ To run locally:

*ct* can also test a chart by deploying it to a temporary namespace in a Kubernetes cluster, and waiting for indications that the deployment has been successful. This is a good way to test how the deployment behaves "for real".




ct lint --config=.ci/ct-config.yaml

Create a KinD cluster, by running `kind create cluster`:
Expand Down
4 changes: 2 additions & 2 deletions charts/docker-mailserver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "15.0.2"
appVersion: "15.1.0"
description: A fullstack but simple mailserver (smtp, imap, antispam, antivirus, ssl...) using Docker.
name: docker-mailserver
version: 5.0.0
version: 5.1.0
sources:
- https://github.com/docker-mailserver/docker-mailserver-helm
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/docker-mailserver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ DMS does not use techniques such as permissive initial directory creation that i
Quirks from the generic section also apply to NFS-backed PersistentVolumes.

## Upgrading to Version 5
Version 5.0 upgrades docker-mailserver to version 15. This version of the chart *does* include backwards incompatible changes
Version 5.0 of the chart *does* include backwards incompatible changes.

### PersistentVolumeClaims

Expand Down
2 changes: 1 addition & 1 deletion charts/docker-mailserver/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ spec:

ports:
- containerPort: 9154
name: http
name: metrics
protocol: TCP
resources:
{{ toYaml .Values.metrics.resources | indent 12 }}
Expand Down
4 changes: 2 additions & 2 deletions charts/docker-mailserver/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ spec:

{{- if .Values.metrics.enabled }}
- name: metrics
port: 9154
targetPort: 9154
port: {{ .Values.monitoring.service.port }}
targetPort: metrics
{{- end }}

type: {{ default "ClusterIP" .Values.service.type }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifest should match snapshot:
1: |
apiVersion: v1
data:
dovecot.cf: |2
dovecot.cf: |
haproxy_trusted_networks = 10.0.0.0/8 192.168.0.0/16 172.16.0.0/12
service imap-login {
inet_listener imap {
Expand Down