Skip to content

Commit

Permalink
[mailpit] version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jouve committed Jul 25, 2023
1 parent c10c678 commit a33042f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/mailpit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: mailpit
description: An email and SMTP testing tool with API for developers
type: application
version: 0.2.9
appVersion: 1.7.0
appVersion: 1.7.1
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
Expand Down
10 changes: 5 additions & 5 deletions charts/mailpit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ helm install mailpit jouve/mailpit
### Common

| Name | Description | Value |
|----------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|-------------------|
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | ----------------- |
| `image.registry` | image registry | `docker.io` |
| `image.repository` | image repository | `axllent/mailpit` |
| `image.tag` | image tag (immutable tags are recommended) | `v1.6.13` |
| `image.tag` | image tag (immutable tags are recommended) | `v1.7.1` |
| `image.digest` | image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag image tag (immutable tags are recommended) | `""` |
| `image.pullPolicy` | image pull policy | `IfNotPresent` |
| `image.pullSecrets` | image pull secrets | `[]` |
Expand All @@ -32,9 +32,9 @@ helm install mailpit jouve/mailpit
| `replicaCount` | Number of replicas to deploy | `1` |
| `resources.limits.cpu` | The resources limits for the containers | `100m` |
| `resources.limits.memory` | The resources limits for the containers | `64Mi` |
| `resources.requests.cpu` | The requested resources for the containers | `10m` |
| `resources.requests.memory` | The requested resources for the containers | `8Mi` |
| `affinity` | Constrain pod to run on particular node(s) | |
| `resources.requests.cpu` | The requested resources for the containers | `5m` |
| `resources.requests.memory` | The requested resources for the containers | `4Mi` |
| `affinity` | Pod affinity | `{}` |
| `args` | Override default container args (useful when using custom images) | `[]` |
| `extraEnvVars` | Array with extra environment variables to add to nodes | `[]` |
| `mailpit.ui.authFile.enabled` | Adding basic authentication to web UI | `false` |
Expand Down
6 changes: 3 additions & 3 deletions charts/mailpit/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ spec:
automountServiceAccountToken: false
securityContext:
fsGroup: 1001
{{- with .Values.affinity }}
affinity: {{- include "common.tplvalues.render" (dict "value" . "context" $) | nindent 8 }}
{{- end }}
containers:
- name: mailpit
image: {{ include "common.images.image" (dict "imageRoot" .Values.image "global" .Values.global) }}
Expand Down Expand Up @@ -149,6 +152,3 @@ spec:
{{- else }}
emptyDir: {}
{{- end }}
{{- with .Values.affinity }}
affinity: {{- toYaml . | nindent 8 }}
{{- end }}
4 changes: 2 additions & 2 deletions charts/mailpit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ global:
image:
registry: docker.io
repository: axllent/mailpit
tag: v1.7.0
tag: v1.7.1
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down Expand Up @@ -84,7 +84,7 @@ resources:
## @param affinity Pod affinity
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity
##
affinity:
affinity: {}

## @param args Override default container args (useful when using custom images)
##
Expand Down

0 comments on commit a33042f

Please sign in to comment.