This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/shibaobun/cannery](https://gitea.bubbletea.dev/shibao/cannery) ([source](https://gitea.bubbletea.dev/shibao/cannery.git)) | patch | `cc9f808` -> `45580f4` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>shibao/cannery (docker.io/shibaobun/cannery)</summary> ### [`v0.9.16`](https://gitea.bubbletea.dev/shibao/cannery/blob/HEAD/CHANGELOG.md#v0916) [Compare Source](https://gitea.bubbletea.dev/shibao/cannery/compare/0.9.15...0.9.16) - Fix bug with ammo type selector - Add a row number column to all tables </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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
54 lines
2.2 KiB
YAML
54 lines
2.2 KiB
YAML
image:
|
|
repository: docker.io/shibaobun/cannery
|
|
pullPolicy: IfNotPresent
|
|
tag: 0.9.16@sha256:45580f4e275f7a089ad466fb3c9c74b01b26f9d0b754177db9095088944f7037
|
|
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
|