Files
truecharts/charts/stable/nginx-proxy-manager/values.yaml
T
Kjeld Schouten f8e33766bf feat(common): remove portal and ensure appUrl is used for notes.txt (#34047)
**Description**

This removes old portal references (from truenas times) from common and
notes.txt
Also ensures chartContext is used for notes.txt

Technically breaking in case any down-stream users use portal
configmap/data

⚒️ Fixes  #31880

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [x] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-04-07 22:04:57 +02:00

87 lines
2.0 KiB
YAML

image:
repository: docker.io/jc21/nginx-proxy-manager
pullPolicy: IfNotPresent
tag: 2.12.3@sha256:e5eecad9bf040f1e7ddc9db6bbc812d690503aa119005e3aa0c24803746b49ea
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
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 }}"