Fix secrets
All checks were successful
Check with kubeconform / lint (push) Successful in 10s

This commit is contained in:
Ultradesu
2025-07-18 16:07:20 +03:00
parent 288a4685d7
commit 18a27dadcb

View File

@@ -45,9 +45,14 @@ spec:
- name: keys - name: keys
mountPath: /root mountPath: /root
readOnly: true readOnly: true
- name: data
mountPath: /data
env: env:
- name: RUST_LOG - name: RUST_LOG
value: "info" value: "info"
- name: DB_URL
value: "/data/db_v2.sqlite3"
workingDir: /data
volumes: volumes:
- name: keys - name: keys
secret: secret:
@@ -59,6 +64,10 @@ spec:
- key: id_ed25519.pub - key: id_ed25519.pub
path: id_ed25519.pub path: id_ed25519.pub
mode: 0644 mode: 0644
- name: data
hostPath:
path: /k8s/rustdesk/hbbs
type: DirectoryOrCreate
--- ---
apiVersion: apps/v1 apiVersion: apps/v1
@@ -102,9 +111,12 @@ spec:
- name: keys - name: keys
mountPath: /root mountPath: /root
readOnly: true readOnly: true
- name: data
mountPath: /data
env: env:
- name: RUST_LOG - name: RUST_LOG
value: "info" value: "info"
workingDir: /data
volumes: volumes:
- name: keys - name: keys
secret: secret:
@@ -116,3 +128,7 @@ spec:
- key: id_ed25519.pub - key: id_ed25519.pub
path: id_ed25519.pub path: id_ed25519.pub
mode: 0644 mode: 0644
- name: data
hostPath:
path: /k8s/rustdesk/hbbr
type: DirectoryOrCreate