Files
truecharts/charts/stable/nginx-proxy-manager/values.yaml
T
TrueCharts Bot c0ebce42dd chore(deps): update container image jc21/nginx-proxy-manager to 2.11.2@6765538 by renovate (#22371)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[jc21/nginx-proxy-manager](https://togithub.com/jc21/nginx-proxy-manager)
| digest | `a77c589` -> `6765538` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzcuNCIsInVwZGF0ZWRJblZlciI6IjM3LjM3Ny40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-25 02:34:40 +02:00

89 lines
2.0 KiB
YAML

image:
repository: jc21/nginx-proxy-manager
pullPolicy: IfNotPresent
tag: 2.11.2@sha256:67655389770f5f16aef10cf3dc822f95e34bb0bc1b7717c617f8adaffcce2f68
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
includeCommon: true
mariadbUsername: npm
mariadbDatabase: npm
portal:
open:
enabled: true
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 }}"