Files
truecharts/charts/stable/cannery/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

54 lines
2.2 KiB
YAML

image:
repository: docker.io/shibaobun/cannery
pullPolicy: IfNotPresent
tag: 0.9.14@sha256:62c50fc727b2b8a5575cd597056082af9a175896f30da7eb5c070af68c0ecea6
service:
main:
ports:
main:
protocol: http
port: 4000
workload:
main:
podSpec:
containers:
main:
env:
PORT: "{{ .Values.service.main.ports.main.port }}"
# HOST must be set!
# without http/https, preferrably the ingress url
HOST: "cannery.local"
# ecto://postgres:postgres@cannery-db/cannery
DATABASE_URL: '{{ printf "ecto://%s:%s@%s:5432/%s" .Values.cnpg.main.user .Values.cnpg.main.creds.password (.Values.cnpg.main.creds.host | trimAll "\"") .Values.cnpg.main.database }}'
SECRET_KEY_BASE:
secretKeyRef:
name: cannery-secrets
key: SECRET_KEY_BASE
# Ecto should use ipv6 to connect to PostgreSQL
ECTO_IPV6: false
# Controls the pool size to use with PostgreSQL. Defaults to 10.
# POOL_SIZE: 10
# Controls if user sign-up should be invite only or set to public. Set to public to enable public registration. Defaults to invite.
REGISTRATION: "invite"
# Sets a custom default locale. Defaults to en_US | de, fr and es
LOCALE: en_US
# The url for your SMTP email provider. Must be set.
SMTP_HOST: "smtp.gmail.com"
# The port for your SMTP relay. Defaults to 587.
# SMTP_PORT: 587
# The username for your SMTP relay. Must be set!
SMTP_USERNAME: "example@gmail.com"
# The password for your SMTP relay. Must be set!
SMTP_PASSWORD: "example"
# Set to true to enable SSL for emails. Defaults to false.
SMTP_SSL: false
# Sets the sender email in sent emails. Defaults to no-reply@HOST where HOST was previously defined.
EMAIL_FROM: "no-reply@HOST"
# Sets the sender name in sent emails. Defaults to "Cannery".
EMAIL_NAME: Cannery
cnpg:
main:
enabled: true
user: cannery
database: cannery