add config to set homepage image
This commit is contained in:
@@ -55,6 +55,7 @@ data:
|
|||||||
tab: Bookmarks
|
tab: Bookmarks
|
||||||
useEqualHeights: true
|
useEqualHeights: true
|
||||||
hideErrors: true
|
hideErrors: true
|
||||||
|
background: /images/background.png
|
||||||
services.yaml: |
|
services.yaml: |
|
||||||
- Apps:
|
- Apps:
|
||||||
- Sonarr:
|
- Sonarr:
|
||||||
|
|||||||
13
cluster/apps/homepage/homepage-pvc.yml
Normal file
13
cluster/apps/homepage/homepage-pvc.yml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: longhorn-homepage
|
||||||
|
namespace: default
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteMany
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 100Mi
|
||||||
@@ -78,10 +78,15 @@ spec:
|
|||||||
subPath: widgets.yaml
|
subPath: widgets.yaml
|
||||||
- mountPath: /app/config/logs
|
- mountPath: /app/config/logs
|
||||||
name: logs
|
name: logs
|
||||||
|
- mountPath: /app/public/images
|
||||||
|
name: images
|
||||||
volumes:
|
volumes:
|
||||||
- name: homepage-config
|
- name: homepage-config
|
||||||
configMap:
|
configMap:
|
||||||
name: homepage
|
name: homepage
|
||||||
|
- name: images
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: longhorn-homepage
|
||||||
- name: logs
|
- name: logs
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
- name: tmp
|
- name: tmp
|
||||||
|
|||||||
Reference in New Issue
Block a user