Files
truecharts/charts/stable/friendica/values.yaml
T
TrueCharts Bot 70347832c9 chore(friendica): update image friendica digest to 089e58b (#49979)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| friendica | digest | `b67df24` → `089e58b` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9mcmllbmRpY2EiLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
2026-07-07 14:26:02 +02:00

73 lines
2.0 KiB
YAML

# yaml-language-server: $schema=./values.schema.json
image:
repository: friendica
pullPolicy: IfNotPresent
tag: 2026.05@sha256:089e58b090504fe5a719e78d7fd57838d2359488b3c8f9ebb246e7ac74a5e2df
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/ping"
readiness:
path: "/ping"
startup:
path: "/ping"
env:
MYSQL_USER: "{{ .Values.mariadb.mariadbUsername }}"
MYSQL_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
MYSQL_PORT: 3306
REDIS_PORT: 6379
REDIS_DB: 1
FRIENDICA_TZ: "{{ .Values.TZ }}"
FRIENDICA_DATA_DIR: "/data"
FRIENDICA_CONFIG_DIR: "/config"
# User Defined
FRIENDICA_ADMIN_MAIL: "my@domain.com"
FRIENDICA_URL: "http://localhost:{{ .Values.service.main.ports.main.port }}"
FRIENDICA_UPGRADE: false
FRIENDICA_SITENAME: ""
PHP_MEMORY_LIMIT: "512M"
PHP_UPLOAD_LIMIT: "512M"
MYSQL_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
MYSQL_PASSWORD: "{{ .Values.mariadb.password }}"
REDIS_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: plainhost
REDIS_PW: "{{ .Values.redis.password }}"
service:
main:
ports:
main:
port: 10058
targetPort: 80
persistence:
varrun:
enabled: true
config:
enabled: true
mountPath: /config
data:
enabled: true
mountPath: /data
redis:
enabled: true
mariadb:
enabled: true
mariadbUsername: friendica
mariadbDatabase: friendica