This PR contains the following updates: | Package | Update | Change | |---|---|---| | friendica | major | `2023.12` -> `2024.03` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjYuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI2Ny4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
83 lines
2.3 KiB
YAML
83 lines
2.3 KiB
YAML
image:
|
|
repository: friendica
|
|
pullPolicy: IfNotPresent
|
|
tag: 2024.03@sha256:0cc133b4337bd8229d0c0449f2a15175b6d7ebb3564f815ea34f4c42d3512ca3
|
|
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:
|
|
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_PW:
|
|
secretKeyRef:
|
|
expandObjectName: false
|
|
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
|
|
key: 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
|
|
portal:
|
|
open:
|
|
enabled: true
|