|
1 | 1 | apiVersion: application.kubero.dev/v1alpha1
|
2 | 2 | kind: KuberoApp
|
3 | 3 | metadata:
|
4 |
| - name: slash |
| 4 | + name: bugsink |
5 | 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" |
| 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 | 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" |
| 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 | 16 | labels:
|
17 | 17 | manager: kubero
|
18 | 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 |
| 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: [] |
31 | 29 | 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 |
33 | 63 | web:
|
34 | 64 | replicaCount: 1
|
35 | 65 | worker:
|
36 | 66 | replicaCount: 0
|
37 | 67 | image:
|
38 |
| - containerPort: "5231" |
| 68 | + containerPort: "8000" |
39 | 69 | pullPolicy: Always
|
40 |
| - repository: yourselfhosted/slash |
| 70 | + repository: bugsink/bugsink |
41 | 71 | tag: latest
|
0 commit comments