This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/gitroomhq/postiz-app | minor | `v2.12.1` → `v2.13.0` | | [gitroomhq/postiz-app](https://github.com/gitroomhq/postiz-app) | minor | `v2.12.1` → `v2.13.0` | --- ### Release Notes <details> <summary>gitroomhq/postiz-app (gitroomhq/postiz-app)</summary> ### [`v2.13.0`](https://github.com/gitroomhq/postiz-app/releases/tag/v2.13.0): Shipping Tons of stuff [Compare Source](https://github.com/gitroomhq/postiz-app/compare/v2.12.1...v2.13.0) Shipping, shipping, shipping! - Added streak - just some fomo so you will never stop creating posts. - Added settings to global mode - requests by many people - Upload as many files as you want in one batch instead of 5 before - Remove editing of social media once you select them from the switcher. - Added single post analytics for many platforms. - Added an option to delete tags. - Scheduling edge cases solved - for example: what happens if you click "update" on a published post? You will see a pop-up now. - Added two more chat platforms: Twitch and Kick - Short linking can be changed to: always ask, never, always from the settings. - Maximize pictures in the media library. - For meta apps, there is a new workflow to refresh the token before it expires. - Time slots improvements in design - Postiz agent fixes **Full Changelog**: <https://github.com/gitroomhq/postiz-app/compare/v2.12.1...v2.13.0> </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=--> Reviewed-on: #3577 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
199 lines
5.6 KiB
YAML
199 lines
5.6 KiB
YAML
postiz:
|
|
controllers:
|
|
main:
|
|
type: deployment
|
|
replicas: 1
|
|
strategy: Recreate
|
|
revisionHistoryLimit: 3
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: ghcr.io/gitroomhq/postiz-app
|
|
tag: v2.13.0
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
- name: MAIN_URL
|
|
value: https://postiz.alexlebens.dev
|
|
- name: FRONTEND_URL
|
|
value: https://postiz.alexlebens.dev
|
|
- name: NEXT_PUBLIC_BACKEND_URL
|
|
value: https://postiz.alexlebens.dev/api
|
|
- name: JWT_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postiz-config-secret
|
|
key: JWT_SECRET
|
|
- name: DATABASE_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postiz-postgresql-18-cluster-app
|
|
key: uri
|
|
- name: REDIS_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postiz-redis-config
|
|
key: REDIS_URL
|
|
- name: BACKEND_INTERNAL_URL
|
|
value: http://localhost:3000
|
|
- name: IS_GENERAL
|
|
value: "true"
|
|
- name: STORAGE_PROVIDER
|
|
value: local
|
|
- name: UPLOAD_DIRECTORY
|
|
value: /uploads
|
|
- name: NEXT_PUBLIC_UPLOAD_DIRECTORY
|
|
value: /uploads
|
|
- name: NEXT_PUBLIC_POSTIZ_OAUTH_DISPLAY_NAME
|
|
value: Authentik
|
|
- name: NEXT_PUBLIC_POSTIZ_OAUTH_LOGO_URL
|
|
value: https://cdn.jsdelivr.net/gh/selfhst/icons/png/authentik.png
|
|
- name: POSTIZ_GENERIC_OAUTH
|
|
value: "true"
|
|
- name: POSTIZ_OAUTH_URL
|
|
value: https://auth.alexlebens.dev
|
|
- name: POSTIZ_OAUTH_AUTH_URL
|
|
value: https://auth.alexlebens.dev/application/o/authorize/
|
|
- name: POSTIZ_OAUTH_TOKEN_URL
|
|
value: https://auth.alexlebens.dev/application/o/token/
|
|
- name: POSTIZ_OAUTH_USERINFO_URL
|
|
value: https://auth.alexlebens.dev/application/o/userinfo/
|
|
- name: POSTIZ_OAUTH_CLIENT_ID
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postiz-oidc-secret
|
|
key: client
|
|
- name: POSTIZ_OAUTH_CLIENT_SECRET
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: postiz-oidc-secret
|
|
key: secret
|
|
- name: POSTIZ_OAUTH_SCOPE
|
|
value: openid profile email
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 128Mi
|
|
service:
|
|
main:
|
|
controller: main
|
|
ports:
|
|
http:
|
|
port: 80
|
|
targetPort: 5000
|
|
protocol: HTTP
|
|
route:
|
|
main:
|
|
kind: HTTPRoute
|
|
parentRefs:
|
|
- group: gateway.networking.k8s.io
|
|
kind: Gateway
|
|
name: traefik-gateway
|
|
namespace: traefik
|
|
hostnames:
|
|
- postiz.alexlebens.net
|
|
rules:
|
|
- backendRefs:
|
|
- group: ''
|
|
kind: Service
|
|
name: postiz
|
|
port: 80
|
|
weight: 100
|
|
matches:
|
|
- path:
|
|
type: PathPrefix
|
|
value: /
|
|
persistence:
|
|
config:
|
|
forceRename: postiz-config
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 2Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /config
|
|
readOnly: false
|
|
uploads:
|
|
forceRename: postiz-uploads
|
|
storageClass: ceph-block
|
|
accessMode: ReadWriteOnce
|
|
size: 10Gi
|
|
retain: true
|
|
advancedMounts:
|
|
main:
|
|
main:
|
|
- path: /uploads
|
|
readOnly: false
|
|
postgres-18-cluster:
|
|
mode: recovery
|
|
recovery:
|
|
method: objectStore
|
|
objectStore:
|
|
index: 1
|
|
backup:
|
|
objectStore:
|
|
- name: garage-local
|
|
index: 1
|
|
destinationBucket: postgres-backups
|
|
externalSecretCredentialPath: /garage/home-infra/postgres-backups
|
|
isWALArchiver: true
|
|
# - name: garage-remote
|
|
# index: 1
|
|
# destinationBucket: postgres-backups
|
|
# externalSecretCredentialPath: /garage/home-infra/postgres-backups
|
|
# retentionPolicy: "90d"
|
|
# data:
|
|
# compression: bzip2
|
|
# - name: external
|
|
# index: 1
|
|
# endpointURL: https://nyc3.digitaloceanspaces.com
|
|
# destinationBucket: postgres-backups-ce540ddf106d186bbddca68a
|
|
# externalSecretCredentialPath: /garage/home-infra/postgres-backups
|
|
# isWALArchiver: false
|
|
scheduledBackups:
|
|
- name: live-backup
|
|
suspend: false
|
|
immediate: true
|
|
schedule: "0 0 0 * * *"
|
|
backupName: garage-local
|
|
# - name: weekly-backup
|
|
# suspend: true
|
|
# immediate: true
|
|
# schedule: "0 0 4 * * SAT"
|
|
# backupName: garage-remote
|
|
# - name: daily-backup
|
|
# suspend: true
|
|
# immediate: true
|
|
# schedule: "0 0 0 * * *"
|
|
# backupName: external
|
|
redis-replication:
|
|
existingSecret:
|
|
enabled: true
|
|
name: postiz-redis-config
|
|
key: password
|
|
redisReplication:
|
|
clusterSize: 3
|
|
sentinel:
|
|
enabled: true
|
|
volsync-target-config:
|
|
pvcTarget: postiz-config
|
|
local:
|
|
enabled: true
|
|
schedule: 56 8 * * *
|
|
remote:
|
|
enabled: false
|
|
external:
|
|
enabled: true
|
|
schedule: 56 9 * * *
|
|
volsync-target-upload:
|
|
pvcTarget: postiz-uploads
|
|
local:
|
|
enabled: true
|
|
schedule: 58 8 * * *
|
|
remote:
|
|
enabled: false
|
|
external:
|
|
enabled: true
|
|
schedule: 58 9 * * *
|