a4aa88ed48
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/shlinkio/shlink](https://redirect.github.com/shlinkio/shlink) | patch | `a6d8508` → `231065c` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>shlinkio/shlink (docker.io/shlinkio/shlink)</summary> ### [`v5.0.2`](https://redirect.github.com/shlinkio/shlink/blob/HEAD/CHANGELOG.md#502---2026-04-16) [Compare Source](https://redirect.github.com/shlinkio/shlink/compare/v5.0.1...v5.0.2) ##### Added - *Nothing* ##### Changed - *Nothing* ##### Deprecated - *Nothing* ##### Removed - *Nothing* ##### Fixed - [#​2593](https://redirect.github.com/shlinkio/shlink/issues/2593) Fix long URL being ignored when editing a short URL via `short-url:edit` console command. </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:eyJjcmVhdGVkSW5WZXIiOiI0My4yOS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvc2hsaW5rIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9wYXRjaCJdfQ==-->
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/shlinkio/shlink
|
|
pullPolicy: IfNotPresent
|
|
tag: 5.0.2@sha256:231065c2564f242bb68a00b06ae558744ef7ab25d2a253b0def15291cce2cc72
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10153
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: shlink
|
|
database: shlink
|
|
redis:
|
|
enabled: true
|
|
redisUsername: "default"
|
|
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
path: "/rest/health"
|
|
readiness:
|
|
path: "/rest/health"
|
|
startup:
|
|
path: "/rest/health"
|
|
env:
|
|
DEFAULT_DOMAIN: ""
|
|
GEOLITE_LICENSE_KEY: ""
|
|
ANONYMIZE_REMOTE_ADDR: true
|
|
ENABLE_PERIODIC_VISIT_LOCATE: true
|
|
IS_HTTPS_ENABLED: true
|
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
DB_DRIVER: "postgres"
|
|
DB_USER: "{{ .Values.cnpg.main.user }}"
|
|
DB_NAME: "{{ .Values.cnpg.main.database }}"
|
|
DB_PASSWORD:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
DB_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
REDIS_SERVERS:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: url
|