Skip to content

Commit f60f62e

Browse files
authored
Merge pull request #273 from kubero-dev/template/add-databag
Template / Add databag
2 parents cc233f6 + 3daab4f commit f60f62e

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

services/databag/app.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
apiVersion: application.kubero.dev/v1alpha1
2+
kind: KuberoApp
3+
metadata:
4+
name: databag
5+
labels:
6+
manager: kubero
7+
spec:
8+
name: databag
9+
deploymentstrategy: docker
10+
envVars:
11+
- name: ADMIN
12+
value: secret
13+
extraVolumes:
14+
- accessMode: ReadWriteOnce
15+
accessModes:
16+
- ReadWriteOnce
17+
emptyDir: false
18+
mountPath: /var/lib/databag
19+
name: databag-data
20+
size: 1Gi
21+
storageClass: standard
22+
cronjobs: []
23+
addons: []
24+
web:
25+
replicaCount: 1
26+
worker:
27+
replicaCount: 0
28+
image:
29+
containerPort: "7000"
30+
pullPolicy: Always
31+
repository: balzack/databag
32+
tag: latest

services/databag/service.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Databag
2+
description: 'A tiny selfhosted federated messenger for the decentralized web.'
3+
tags:
4+
- chat
5+
- messenger
6+
- federated
7+
- decentralized
8+
source: https://github.com/balzack/databag
9+
website: https://github.com/balzack/databag
10+
icon: https://raw.githubusercontent.com/balzack/databag/main/doc/icon_v2.png
11+
screenshots:
12+
- https://raw.githubusercontent.com/balzack/databag/main/doc/mobile.png
13+
- https://github.com/balzack/databag/blob/main/doc/browser.png

0 commit comments

Comments
 (0)