Automated Manifest Update (#2841)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2841 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
This commit was merged in pull request #2841.
This commit is contained in:
@@ -76,11 +76,6 @@ spec:
|
||||
volumeMounts:
|
||||
- mountPath: /app/config
|
||||
name: config
|
||||
- mountPath: /app/config/config.json
|
||||
mountPropagation: None
|
||||
name: config-file
|
||||
readOnly: true
|
||||
subPath: config.json
|
||||
- mountPath: /app/database
|
||||
name: database
|
||||
- mountPath: /app/downloads
|
||||
@@ -88,23 +83,28 @@ spec:
|
||||
- mountPath: /music
|
||||
name: music
|
||||
readOnly: true
|
||||
- mountPath: /app/config/config.json
|
||||
mountPropagation: None
|
||||
name: secret
|
||||
readOnly: true
|
||||
subPath: config.json
|
||||
- mountPath: /app/Transfer
|
||||
name: transfer
|
||||
volumes:
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
claimName: soulsync-config
|
||||
- name: config-file
|
||||
secret:
|
||||
secretName: soulsync-config-secret
|
||||
- name: database
|
||||
persistentVolumeClaim:
|
||||
claimName: soulsync-config
|
||||
claimName: soulsync-database
|
||||
- name: downloads
|
||||
persistentVolumeClaim:
|
||||
claimName: soulsync-slskd-nfs-storage
|
||||
- name: music
|
||||
persistentVolumeClaim:
|
||||
claimName: soulsync-music-nfs-storage
|
||||
- name: secret
|
||||
secret:
|
||||
secretName: soulsync-config-secret
|
||||
- emptyDir: {}
|
||||
name: transfer
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: soulsync-database
|
||||
labels:
|
||||
app.kubernetes.io/instance: soulsync
|
||||
app.kubernetes.io/managed-by: Helm
|
||||
app.kubernetes.io/name: soulsync
|
||||
helm.sh/chart: soulsync-4.5.0
|
||||
namespace: soulsync
|
||||
spec:
|
||||
accessModes:
|
||||
- "ReadWriteOnce"
|
||||
resources:
|
||||
requests:
|
||||
storage: "10Gi"
|
||||
storageClassName: "ceph-block"
|
||||
Reference in New Issue
Block a user