Files
truecharts/charts/stable/smtp-relay/values.yaml
T
TrueCharts BotandGitHub 671f2c726f chore(helm): update image ghcr.io/ix-ai/smtp v0.7.6 → v0.7.7 (#34249)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/ix-ai/smtp](https://egos.tech/smtp)
([source](https://gitlab.com/ix.ai/smtp)) | patch | `2de999b` ->
`4f5f64a` |

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>ix.ai/smtp (ghcr.io/ix-ai/smtp)</summary>

### [`v0.7.7`](https://gitlab.com/ix.ai/smtp/tags/v0.7.7)

[Compare Source](https://gitlab.com/ix.ai/smtp/compare/v0.7.6...v0.7.7)

### Deprecation

This is the final release of this image. Please switch to:

```
registry.gitlab.com/egos-tech/smtp:1.0.0
```

#### Release v0.7.7
 
* a58d21a Add deprecation notice
* 20b5c2b Update registry.gitlab.com/ix.ai/smtp Docker digest to 2de999b

</details>

---

### 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://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-04-11 20:21:42 +02:00

54 lines
1.3 KiB
YAML

image:
repository: ghcr.io/ix-ai/smtp
pullPolicy: IfNotPresent
tag: v0.7.7@sha256:4f5f64a386ef8e024b60a45f9cac171f6229dd65eaad1d772337a1db64ba7f3d
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 }}'