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

This commit is contained in:
Ultradesu
2025-07-18 16:08:53 +03:00
parent 18a27dadcb
commit e093dd4f57

View File

@@ -43,15 +43,15 @@ spec:
protocol: TCP protocol: TCP
volumeMounts: volumeMounts:
- name: keys - name: keys
mountPath: /root mountPath: /data
readOnly: true readOnly: true
- name: data - name: data
mountPath: /data mountPath: /data-persistent
env: env:
- name: RUST_LOG - name: RUST_LOG
value: "info" value: "info"
- name: DB_URL - name: DB_URL
value: "/data/db_v2.sqlite3" value: "/data-persistent/db_v2.sqlite3"
workingDir: /data workingDir: /data
volumes: volumes:
- name: keys - name: keys
@@ -109,10 +109,10 @@ spec:
protocol: TCP protocol: TCP
volumeMounts: volumeMounts:
- name: keys - name: keys
mountPath: /root mountPath: /data
readOnly: true readOnly: true
- name: data - name: data
mountPath: /data mountPath: /data-persistent
env: env:
- name: RUST_LOG - name: RUST_LOG
value: "info" value: "info"