This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/m1k1o/blog | digest | `f37be6d` -> `5d6131f` | 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:eyJjcmVhdGVkSW5WZXIiOiI0MS4yMC4wIiwidXBkYXRlZEluVmVyIjoiNDEuMjAuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
60 lines
1.4 KiB
YAML
60 lines
1.4 KiB
YAML
image:
|
|
repository: docker.io/m1k1o/blog
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:5d6131fac81f73ddcc60953db19cfa70f9557f42a1bcc2296b42ea48ab6699c3
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10111
|
|
protocol: http
|
|
targetPort: 80
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
type: http
|
|
path: /
|
|
readiness:
|
|
type: http
|
|
path: /
|
|
startup:
|
|
type: http
|
|
path: /
|
|
env:
|
|
BLOG_TITLE: "Blog"
|
|
BLOG_NAME: "Max Musermann"
|
|
BLOG_LANG: "en"
|
|
BLOG_DB_CONNECTION: "postgres"
|
|
BLOG_POSTGRES_USER: "{{ .Values.cnpg.main.user }}"
|
|
BLOG_POSTGRES_PORT: "5432"
|
|
BLOG_DB_NAME: "{{ .Values.cnpg.main.database }}"
|
|
BLOG_POSTGRES_PASS:
|
|
secretKeyRef:
|
|
name: cnpg-main-user
|
|
key: password
|
|
BLOG_POSTGRES_HOST:
|
|
secretKeyRef:
|
|
name: cnpg-main-urls
|
|
key: host
|
|
BLOG_NICK: username
|
|
BLOG_PASS: password
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: /var/www/html/data
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: blog
|
|
database: blog
|