Files
truecharts/charts/stable/smtp-relay/values.yaml
T
TrueCharts BotandGitHub 7a40234327 chore(deps): update container image tccr.io/truecharts/smtp-relay to v0.5.2@ad5044e (#15692)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[tccr.io/truecharts/smtp-relay](https://togithub.com/truecharts/containers)
| patch | `v0.5.1` -> `v0.5.2` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44MS40IiwidXBkYXRlZEluVmVyIjoiMzcuODEuNCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
2023-12-04 01:44:34 +01:00

58 lines
1.4 KiB
YAML

image:
repository: tccr.io/truecharts/smtp-relay
pullPolicy: IfNotPresent
tag: v0.5.2@sha256:ad5044ebdec5d2e75d08021f333b742328c2554e9807894031e328321433f049
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
port: 25
smtprelay:
networks:
- 172.16.0.0/16
domains: []
generic:
address: ""
port: 587
user: ""
pass: ""
aliases: []
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
type: tcp
readiness:
type: tcp
startup:
type: tcp
env:
PORT: "{{ .Values.service.main.ports.main.port }}"
RELAY_NETWORKS: '{{ join " : " .Values.smtprelay.networks }}'
RELAY_DOMAINS: '{{ join " : " .Values.smtprelay.domains }}'
DISABLE_IPV6: true
# # Generic SMTP Relay
SMARTHOST_ADDRESS: "{{ .Values.smtprelay.generic.address }}"
SMARTHOST_PORT: "{{ .Values.smtprelay.generic.port }}"
SMARTHOST_USER: "{{ .Values.smtprelay.generic.user }}"
SMARTHOST_PASSWORD: "{{ .Values.smtprelay.generic.pass }}"
SMARTHOST_ALIASES: '{{ join " : " .Values.smtprelay.generic.aliases }}'
portal:
open:
enabled: false