Files
truecharts/charts/stable/mixpost/values.yaml
T
TrueCharts Bot 5c2655ec17 chore(helm): update image docker.io/inovector/mixpost v2.3.0 → v2.4.0 (#42217)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/inovector/mixpost | minor | `849e042` -> `d2a1500` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-11-28 01:06:48 +01:00

74 lines
2.1 KiB
YAML

image:
repository: docker.io/inovector/mixpost
pullPolicy: IfNotPresent
tag: v2.4.0@sha256:d2a1500d00cb66c24190b6704729fce9881f76da1bacacbf06fa1d402f51c122
service:
main:
ports:
main:
targetPort: 80
port: 80
persistence:
storage:
enabled: true
mountPath: "/var/www/html/storage/app"
logs:
enabled: true
mountPath: "/var/www/html/storage/logs"
varrun:
enabled: false
mariadb:
enabled: true
mariadbUsername: mixpost
mariadbDatabase: mixpost
redis:
enabled: true
redisUsername: default
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
type: tcp
startup:
type: tcp
readiness:
type: tcp
env:
# APP_DOMAIN: domain without https:// (needs to be set)
APP_DOMAIN: subdomain.mydomain.com
# APP_URL: domain with https:// (needs to be set)
APP_URL: https://subdomain.mydomain.com
# Key Generator https://laravel-encryption-key-generator.vercel.app/
APP_KEY: MySecretKey
DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
DB_USERNAME: "{{ .Values.mariadb.mariadbUsername }}"
DB_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DB_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: mariadb-password
REDIS_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: plainhost
REDIS_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: redis-password