Files
truecharts/charts/stable/nginx-proxy-manager/values.yaml
T
TrueCharts BotandGitHub 8adbe59ce0 chore(helm): update image docker.io/jc21/nginx-proxy-manager 2.13.4 → 2.13.5 (#41835)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/jc21/nginx-proxy-manager](https://redirect.github.com/jc21/nginx-proxy-manager)
| patch | `11cf02e` -> `cd9eba2` |

---

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

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

---

### Release Notes

<details>
<summary>jc21/nginx-proxy-manager
(docker.io/jc21/nginx-proxy-manager)</summary>

###
[`v2.13.5`](https://redirect.github.com/NginxProxyManager/nginx-proxy-manager/releases/tag/v2.13.5)

[Compare
Source](https://redirect.github.com/jc21/nginx-proxy-manager/compare/v2.13.4...v2.13.5)

<p>
<img
src="https://img.shields.io/badge/openresty-1.27.1.2-00DED7.svg?style=for-the-badge">
<img
src="https://img.shields.io/badge/certbot-5.1.0-00C6DE.svg?style=for-the-badge">
<img
src="https://img.shields.io/badge/s6overlay-3.2.1.0-00A8DE.svg?style=for-the-badge">
</p>

#### Changes

- 🇻🇳 Add Vietnamese locale (thanks
[@&#8203;dominhhieu1405](https://redirect.github.com/dominhhieu1405))
- 🇮🇹 Add Italian locale (thanks
[@&#8203;archettitechnology](https://redirect.github.com/archettitechnology))
- 🇳🇱 Add Dutch locale (thanks
[@&#8203;Jelcoo](https://redirect.github.com/Jelcoo))
- 🇵🇱 Updated Polish locale (thanks
[@&#8203;zdzichu6969](https://redirect.github.com/zdzichu6969))
- 🇷🇺 Updated Russian locale (thanks
[@&#8203;kraineff](https://redirect.github.com/kraineff))
- 🇸🇰 Updated Slovak locale (thanks
[@&#8203;dodog](https://redirect.github.com/dodog))
- 🇨🇳 Updated Chinese locale (thanks
[@&#8203;gjssss](https://redirect.github.com/gjssss))
- Fix web crashes when viewing Custom Certificates (thanks
[@&#8203;bentschrader](https://redirect.github.com/bentschrader))
- Added translations ("Allow" / "Deny") in Access List > Rules tab
(thanks [@&#8203;vsc55](https://redirect.github.com/vsc55))
- Fix translation text spacing issues (thanks
[@&#8203;vsc55](https://redirect.github.com/vsc55))
- Available upgrade notification (thanks
[@&#8203;sopex](https://redirect.github.com/sopex))
- UI/UX improvements for mobile (thanks
[@&#8203;7heMech](https://redirect.github.com/7heMech))
- Bump certbot-azure-dns version (thanks
[@&#8203;fhennig42](https://redirect.github.com/fhennig42))

#### Docker images

-
[jc21/nginx-proxy-manager:latest](https://hub.docker.com/layers/jc21/nginx-proxy-manager/latest/images/sha256-cf1f941f3e2e4f15d80c2856974e75e30689264127f54b971619805cfe897be4)
-
[jc21/nginx-proxy-manager:2](https://hub.docker.com/layers/jc21/nginx-proxy-manager/2/images/sha256-cf1f941f3e2e4f15d80c2856974e75e30689264127f54b971619805cfe897be4)
-
[jc21/nginx-proxy-manager:2.13.5](https://hub.docker.com/layers/jc21/nginx-proxy-manager/2.13.5/images/sha256-cf1f941f3e2e4f15d80c2856974e75e30689264127f54b971619805cfe897be4)

</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xMC4zIiwidXBkYXRlZEluVmVyIjoiNDIuMTAuMyIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-11-18 17:42:08 +00:00

86 lines
2.0 KiB
YAML

image:
repository: docker.io/jc21/nginx-proxy-manager
pullPolicy: IfNotPresent
tag: 2.13.5@sha256:cd9eba29ca132cb006729f2cb2660126453f84818c2f7d75963ad7b61ef696bd
service:
main:
ports:
main:
targetPort: 81
protocol: http
port: 10582
web:
enabled: true
ports:
web:
enabled: true
targetPort: 80
protocol: http
port: 10583
websecure:
enabled: true
ports:
websecure:
enabled: true
targetPort: 443
protocol: https
port: 10584
persistence:
data:
enabled: true
mountPath: /data
size: 256Gi
letsencrypt:
enabled: true
mountPath: /etc/letsencrypt
size: 256Gi
mariadb:
enabled: true
mariadbUsername: npm
mariadbDatabase: npm
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
enabled: true
custom: true
spec:
exec:
command:
- /bin/check-health
readiness:
enabled: true
custom: true
spec:
exec:
command:
- /bin/check-health
startup:
enabled: true
custom: true
spec:
exec:
command:
- /bin/check-health
env:
DISABLE_IPV6: true
DB_MYSQL_PORT: 3306
DB_MYSQL_NAME: "{{ .Values.mariadb.mariadbDatabase }}"
DB_MYSQL_USER: "{{ .Values.mariadb.mariadbUsername }}"
DB_MYSQL_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DB_MYSQL_PASSWORD: "{{ .Values.mariadb.password }}"