3e162815ec
This PR contains the following updates: | Package | Update | Change | |---|---|---| | yourls | digest | `b06670a` → `90ad61d` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### 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:eyJjcmVhdGVkSW5WZXIiOiI0My40LjIiLCJ1cGRhdGVkSW5WZXIiOiI0My40LjIiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXBwL3lvdXJscyIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: yourls
|
|
tag: 1.10.3@sha256:90ad61d4f1492276d825762c7f83db8f9fe6bdfca762d6f178d30c17be8f669d
|
|
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
|