Skip to content

Commit be293d0

Browse files
authored
Merge pull request #435 from kubero-dev/template/add-lychee
add template lychee
2 parents 813ace2 + bfa3b81 commit be293d0

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

services/lychee/app.yaml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
apiVersion: application.kubero.dev/v1alpha1
2+
kind: KuberoApp
3+
metadata:
4+
name: lychee
5+
labels:
6+
manager: kubero
7+
spec:
8+
name: lychee
9+
deploymentstrategy: docker
10+
envVars:
11+
- name: PHP_TZ
12+
value: UTC
13+
- name: DB_CONNECTION
14+
value: sqlite
15+
- name: APP_ENV
16+
value: local
17+
- name: DB_DATABASE
18+
value: /local/db/lychee
19+
- name: STARTUP_DELAY
20+
value: "5"
21+
- name: TRUSTED_PROXIES
22+
value: "*"
23+
- name: APP_FORCE_HTTPS
24+
value: "false"
25+
- name: APP_URL
26+
value: https://lychee.localhost
27+
extraVolumes:
28+
- accessMode: ReadWriteOnce
29+
accessModes:
30+
- ReadWriteOnce
31+
emptyDir: false
32+
mountPath: /local/db
33+
name: lychee-db-volume
34+
size: 1Gi
35+
storageClass: standard
36+
- accessMode: ReadWriteOnce
37+
accessModes:
38+
- ReadWriteOnce
39+
emptyDir: false
40+
mountPath: /uploads
41+
name: lychee-upload-volume
42+
size: 1Gi
43+
storageClass: standard
44+
cronjobs: []
45+
addons: []
46+
web:
47+
replicaCount: 1
48+
worker:
49+
replicaCount: 0
50+
image:
51+
containerPort: "80"
52+
pullPolicy: Always
53+
repository: lycheeorg/lychee
54+
tag: latest

services/lychee/service.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Lychee
2+
description: 'An easy-to-use photo-management-system to manage and share photos.'
3+
tags:
4+
- Search
5+
source: https://github.com/LycheeOrg/Lychee
6+
website: https://lycheeorg.github.io/
7+
icon: hhttps://avatars.githubusercontent.com/u/37916028?s=200&v=4
8+
screenshots:

0 commit comments

Comments
 (0)