This PR contains the following updates: | Package | Update | Change | |---|---|---| | yourls | patch | `cf5f0b4` → `d0b8331` | --- > [!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. --- ### Configuration 📅 **Schedule**: (UTC) - 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC95b3VybHMiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: yourls
|
|
tag: 1.10.4@sha256:d0b8331017770e518faf793aa5b99a72d67e56b6854a5f6d797d39599ffb0bde
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsGroup: 0
|
|
runAsUser: 0
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8080
|
|
protocol: tcp
|
|
targetPort: 8080
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
YOURLS_DB_HOST:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
|
|
key: plainhost
|
|
YOURLS_DB_NAME: "{{ .Values.mariadb.mariadbDatabase }}"
|
|
YOURLS_DB_USER: "{{ .Values.mariadb.mariadbUsername }}"
|
|
YOURLS_DB_PASS:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
|
|
key: mariadb-password
|
|
# YOURLS_HOURS_OFFSET: ""
|
|
# protect admin form
|
|
YOURLS_PRIVATE: false
|
|
YOURLS_SITE: "{{ .Values.chartContext.appUrl }}"
|
|
YOURLS_USER: ""
|
|
YOURLS_PASS: ""
|
|
|
|
mariadb:
|
|
enabled: true
|
|
mariadbUsername: yourls
|
|
mariadbDatabase: yourls
|