Compare commits

...

4 Commits

Author SHA1 Message Date
huaiyuan
0f977b4061 fix(desktop): improve data refresh logic by socket after network reconnection 2025-05-15 21:10:38 +08:00
hysyeah
0c2cbbb416 app-service: fix pull image progress (#1305) 2025-05-10 00:41:36 +08:00
simon
3e12b7bed2 download: fix youtube download failure (#1290)
yt-dlp
2025-05-01 01:05:38 +08:00
lovehunter9
b88a3f2492 fix: add init container for files-server (#1289) 2025-04-29 23:47:41 +08:00
4 changed files with 27 additions and 5 deletions

View File

@@ -66,7 +66,7 @@ spec:
containers:
- name: edge-desktop
image: beclab/desktop:v0.2.58
image: beclab/desktop:v0.2.59
imagePullPolicy: IfNotPresent
securityContext:
runAsNonRoot: false
@@ -78,7 +78,7 @@ spec:
value: http://bfl.{{ .Release.Namespace }}:8080
- name: desktop-server
image: beclab/desktop-server:v0.2.58
image: beclab/desktop-server:v0.2.59
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false

View File

@@ -172,7 +172,7 @@ spec:
cpu: "1"
memory: 300Mi
- name: yt-dlp
image: "beclab/yt-dlp:v0.0.21"
image: "beclab/yt-dlp:v0.0.22"
imagePullPolicy: IfNotPresent
securityContext:
allowPrivilegeEscalation: false

View File

@@ -70,6 +70,28 @@ spec:
- -c
- |
chown -R 1000:1000 /appdata; chown -R 1000:1000 /appcache; chown -R 1000:1000 /data
- name: init-container
image: 'postgres:16.0-alpine3.18'
command:
- sh
- '-c'
- >-
echo -e "Checking for the availability of PostgreSQL Server
deployment"; until psql -h $PGHOST -p $PGPORT -U $PGUSER -d $PGDB1
-c "SELECT 1"; do sleep 1; printf "-"; done; sleep 5; echo -e " >>
PostgreSQL DB Server has started";
env:
- name: PGHOST
value: citus-headless.os-system
- name: PGPORT
value: '5432'
- name: PGUSER
value: files_os_system
- name: PGPASSWORD
value: {{ $files_postgres_password | b64dec }}
- name: PGDB1
value: os_system_files
containers:
- name: gateway
image: beclab/appdata-gateway:0.1.18

View File

@@ -149,7 +149,7 @@ spec:
priorityClassName: "system-cluster-critical"
containers:
- name: app-service
image: beclab/app-service:0.2.98
image: beclab/app-service:0.2.99
imagePullPolicy: IfNotPresent
securityContext:
runAsUser: 0
@@ -367,7 +367,7 @@ spec:
hostNetwork: true
containers:
- name: image-service
image: beclab/image-service:0.2.98
image: beclab/image-service:0.2.99
imagePullPolicy: IfNotPresent
securityContext:
runAsUser: 0