Files
truecharts/charts/stable/mixpost/values.yaml
T
TrueCharts BotandGitHub ad1f61f761 chore(helm): update image docker.io/inovector/mixpost v2.2.0 → v2.3.0 (#36113)
This PR contains the following updates:

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

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-06-09 03:01:07 +02:00

74 lines
2.1 KiB
YAML

image:
repository: docker.io/inovector/mixpost
pullPolicy: IfNotPresent
tag: v2.3.0@sha256:849e0421e2ff5b2420104181d176afcf32d918e8f75a9bfd6abd994db62ed486
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