Skip to content

Commit 99b3b28

Browse files
committed
feat: add lychee
Signed-off-by: Felix Breuer <[email protected]>
1 parent 3bae481 commit 99b3b28

File tree

4 files changed

+45
-0
lines changed

4 files changed

+45
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Chart.lock
2+
*.tgz

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# helm-charts
2+
3+
```bash
4+
helm repo add breuerfelix https://breuerfelix.github.io/helm-charts
5+
helm repo update
6+
```

charts/lychee/Chart.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apiVersion: v2
2+
name: lychee
3+
description: A great looking and easy-to-use photo-management-system.
4+
version: 0.0.1
5+
appVersion: v4.11.1
6+
dependencies:
7+
- name: template
8+
version: 0.0.3
9+
repository: https://breuerfelix.github.io/helm-charts

charts/lychee/values.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
template:
2+
name: lychee
3+
4+
image:
5+
name: lycheeorg/lychee
6+
tag: 5.1.2
7+
8+
volumes:
9+
- name: uploads
10+
path: /uploads
11+
size: 50Gi
12+
- name: conf
13+
size: 1Gi
14+
path: /conf
15+
16+
env:
17+
- name: APP_NAME
18+
value: lychee
19+
- name: APP_URL
20+
value: https://lychee.example.com
21+
- name: PHP_TZ
22+
value: Europe/Berlin
23+
- name: DB_CONNECTION
24+
value: sqlite
25+
- name: ADMIN_USER
26+
value: admin
27+
- name: ADMIN_PASSWORD
28+
value: admin

0 commit comments

Comments
 (0)