Skip to content

Commit

Permalink
Merge branch 'main' of github.com:kubero-dev/kubero
Browse files Browse the repository at this point in the history
  • Loading branch information
mms-gianni committed Oct 31, 2024
2 parents 763f71d + b4e9a57 commit 1d425e6
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
70 changes: 70 additions & 0 deletions services/bookstack/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoApp
metadata:
name: bookstack
labels:
manager: kubero
spec:
name: bookstack
deploymentstrategy: docker
envVars:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: Etc/UTC
- name: APP_URL
value: http://bookstack.example.com
- name: APP_KEY
value: base64:dm1hdnZvbmdvaDhxcTlnZXZkeXVzdmU4MnRnaWlhcDg=
- name: DB_HOST
value: bookstack-mysql
- name: DB_PORT
value: "3306"
- name: DB_USERNAME
value: bookstack
- name: DB_PASSWORD
value: bookstack
- name: DB_DATABASE
value: bookstack
web:
replicaCount: 1
worker:
replicaCount: 0
image:
containerPort: "80"
pullPolicy: Always
repository: lscr.io/linuxserver/bookstack
tag: latest
extraVolumes: []
cronjobs: []
addons:
- displayName: MySQL
env: []
icon: /img/addons/mysql.svg
id: kubero-operator
kind: KuberoMysql
resourceDefinitions:
KuberoMysql:
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoMysql
metadata:
name: bookstack-mysql
spec:
mysql:
auth:
createDatabase: true
database: bookstack
password: bookstack
rootPassword: bookstack
username: bookstack
global:
storageClass: standard
primary:
persistence:
accessModes:
- ReadWriteOnce
size: 1Gi
version:
latest: 0.1.5
13 changes: 13 additions & 0 deletions services/bookstack/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Bookstack
description: 'BookStack is an opinionated documentation platform that provides a pleasant and simple out-of-the-box experience.'
tags:
- documentation
source: https://github.com/BookStackApp/BookStack
website: https://www.bookstackapp.com/
icon: https://avatars.githubusercontent.com/u/20912696?s=200&v=4
screenshots:
- https://www.bookstackapp.com/images/screenshots/page-view.png
- https://www.bookstackapp.com/images/screenshots/page-edit.png
- https://www.bookstackapp.com/images/screenshots/books-view.png
- https://www.bookstackapp.com/images/screenshots/book-sorting.png
- https://www.bookstackapp.com/images/screenshots/search.png

0 comments on commit 1d425e6

Please sign in to comment.