Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Template / Add bookstack #453

Merged
merged 1 commit into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading