Skip to content

Commit 2c4dfe6

Browse files
committed
added template for bugsink
1 parent 81f1048 commit 2c4dfe6

File tree

2 files changed

+112
-0
lines changed

2 files changed

+112
-0
lines changed

services/bugsink/app.yaml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
apiVersion: application.kubero.dev/v1alpha1
2+
kind: KuberoApp
3+
metadata:
4+
name: slash
5+
annotations:
6+
kubero.dev/template.architecture: "[]"
7+
kubero.dev/template.description: "An open source, self-hosted platform for sharing and managing your most frequently used links. Easily create customizable, human-readable shortcuts to streamline your link management."
8+
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/140182318"
9+
kubero.dev/template.installation: ""
10+
kubero.dev/template.links: "[]"
11+
kubero.dev/template.screenshots: '["https://raw.githubusercontent.com/yourselfhosted/slash/refs/heads/main/docs/assets/demo.png"]'
12+
kubero.dev/template.source: "https://github.com/yourselfhosted/slash"
13+
kubero.dev/template.categories: '["utilities"]'
14+
kubero.dev/template.title: "Slash"
15+
kubero.dev/template.website: "https://github.com/yourselfhosted/slash"
16+
labels:
17+
manager: kubero
18+
spec:
19+
name: slash
20+
deploymentstrategy: docker
21+
envVars: []
22+
extraVolumes:
23+
- accessMode: ReadWriteOnce
24+
accessModes:
25+
- ReadWriteOnce
26+
emptyDir: false
27+
mountPath: /var/opt/slash
28+
name: slash-volume
29+
size: 1Gi
30+
storageClass: standard
31+
cronjobs: []
32+
addons: []
33+
web:
34+
replicaCount: 1
35+
worker:
36+
replicaCount: 0
37+
image:
38+
containerPort: "5231"
39+
pullPolicy: Always
40+
repository: yourselfhosted/slash
41+
tag: latest

services/bugsink/bugsink.yaml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
apiVersion: application.kubero.dev/v1alpha1
2+
kind: KuberoApp
3+
metadata:
4+
name: bugsink
5+
annotations:
6+
kubero.dev/template.architecture: '["linux/amd64", "linux/arm64"]'
7+
kubero.dev/template.description: "Bugsink is a self-hosted error tracker. It shows you when something breaks in your app and includes all the information you need to debug it—stack traces, request data, logs, and more—without sending anything to a third party."
8+
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/150733838"
9+
kubero.dev/template.installation: ""
10+
kubero.dev/template.links: '["https://www.bugsink.com/docs/"]'
11+
kubero.dev/template.screenshots: '["https://www.bugsink.com/static/images/JsonSchemaDefinitionExceptionHome.69dcef47aec9.webp"]'
12+
kubero.dev/template.source: "https://github.com/bugsink/bugsink"
13+
kubero.dev/template.categories: '["utilities", "development"]''
14+
kubero.dev/template.title: "Bugsink"
15+
kubero.dev/template.website: "https://www.bugsink.com/"
16+
labels:
17+
manager: kubero
18+
spec:
19+
envVars:
20+
- name: SECRET_KEY
21+
value: PMjXkH9rHUK9DanCHFMWrvdfr9vXUtfJ95gM4mvPiyGTB3jGgX8VBXBadgMlkqKlPWAY=
22+
- name: CREATE_SUPERUSER
23+
value: admin:admin
24+
- name: DATABASE_URL
25+
value: mysql://root:bugsink@bugsink-mysql:3306/bugsink
26+
- name: BEHIND_HTTPS_PROXY
27+
value: "True"
28+
extraVolumes: []
29+
cronjobs: []
30+
addons:
31+
- displayName: MySQL
32+
env: []
33+
icon: /img/addons/mysql.svg
34+
id: kubero-operator
35+
kind: KuberoMysql
36+
resourceDefinitions:
37+
KuberoMysql:
38+
apiVersion: application.kubero.dev/v1alpha1
39+
kind: KuberoMysql
40+
metadata:
41+
name: bugsink-mysql
42+
spec:
43+
mysql:
44+
auth:
45+
createDatabase: true
46+
database: bugsink
47+
password: bugsink
48+
rootPassword: bugsink
49+
username: bugsink
50+
global:
51+
storageClass: standard
52+
image:
53+
tag: "8.1"
54+
primary:
55+
persistence:
56+
accessModes:
57+
- ReadWriteOnce
58+
size: 1Gi
59+
version:
60+
latest: 0.1.9
61+
name: bugsink
62+
deploymentstrategy: docker
63+
web:
64+
replicaCount: 1
65+
worker:
66+
replicaCount: 0
67+
image:
68+
containerPort: "8000"
69+
pullPolicy: Always
70+
repository: bugsink/bugsink
71+
tag: latest

0 commit comments

Comments
 (0)