Skip to content

Commit 4d05f02

Browse files
committed
rename templates
1 parent 2c4dfe6 commit 4d05f02

File tree

2 files changed

+55
-96
lines changed

2 files changed

+55
-96
lines changed

services/bugsink/app.yaml

Lines changed: 55 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,71 @@
11
apiVersion: application.kubero.dev/v1alpha1
22
kind: KuberoApp
33
metadata:
4-
name: slash
4+
name: bugsink
55
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"
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"
99
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"
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/"
1616
labels:
1717
manager: kubero
1818
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
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: []
3129
cronjobs: []
32-
addons: []
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
3363
web:
3464
replicaCount: 1
3565
worker:
3666
replicaCount: 0
3767
image:
38-
containerPort: "5231"
68+
containerPort: "8000"
3969
pullPolicy: Always
40-
repository: yourselfhosted/slash
70+
repository: bugsink/bugsink
4171
tag: latest

services/bugsink/bugsink.yaml

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)