Skip to content

Commit cb6d102

Browse files
authored
Merge pull request #645 from kubero-dev/template/add-bugsink
Template/add bugsink
2 parents 81f1048 + 2631968 commit cb6d102

File tree

2 files changed

+74
-3
lines changed

2 files changed

+74
-3
lines changed

services/bugsink/app.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

services/serpbear/app.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ kind: KuberoApp
33
metadata:
44
name: serpbear
55
annotations:
6-
kubero.dev/template.architecture: "['linux/amd64', 'linux/arm64/v8']"
6+
kubero.dev/template.architecture: '["linux/amd64", "linux/arm64/v8"]'
77
kubero.dev/template.description: "SerpBear is a Search Engine Position Tracking App. It allows you to track your website's keyword positions in Google and get notified of their positions."
88
kubero.dev/template.icon: "https://raw.githubusercontent.com/towfiqi/serpbear/refs/heads/main/public/icon.png"
99
kubero.dev/template.installation: ""
1010
kubero.dev/template.links: "[]"
11-
kubero.dev/template.screenshots: "['https://serpbear.b-cdn.net/serpbear_readme_v2.gif']"
11+
kubero.dev/template.screenshots: '["https://serpbear.b-cdn.net/serpbear_readme_v2.gif"]'
1212
kubero.dev/template.source: "https://github.com/towfiqi/serpbear"
13-
kubero.dev/template.categories: "['utilities']"
13+
kubero.dev/template.categories: '["utilities"]'
1414
kubero.dev/template.title: "serpbear"
1515
kubero.dev/template.website: "https://docs.serpbear.com/"
1616
labels:

0 commit comments

Comments
 (0)