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 Kimai #578

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
83 changes: 83 additions & 0 deletions services/kimai/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoApp
metadata:
name: kimai
annotations:
kubero.dev/template.architecture: '["linux/amd64", "linux/arm64"]'
kubero.dev/template.description: "Kimai is a web-based multi-user time-tracking application. Works great for everyone: freelancers, companies, organizations"
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/981996"
kubero.dev/template.installation: ""
kubero.dev/template.links: "[]"
kubero.dev/template.screenshots: "[]"
kubero.dev/template.source: "https://github.com/kimai/kimai"
kubero.dev/template.categories: '["work", "productivity"]'
kubero.dev/template.title: "Kimai"
kubero.dev/template.website: "https://www.kimai.org"
labels:
manager: kubero
spec:
name: kimai
deploymentstrategy: docker
envVars:
- name: ADMINMAIL
value: [email protected]
- name: ADMINPASS
value: changemeplease
- name: DATABASE_URL
value: mysql://kimai:kimai@kimai-mysql/kimai?charset=utf8mb4
extraVolumes:
- accessMode: ReadWriteOnce
accessModes:
- ReadWriteOnce
emptyDir: false
mountPath: /opt/kimai/var/data
name: kimai-data-volume
size: 1Gi
storageClass: standard
- accessMode: ReadWriteOnce
accessModes:
- ReadWriteOnce
emptyDir: false
mountPath: /opt/kimai/var/plugins
name: kimai-plugins-volume
size: 1Gi
storageClass: standard
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: kimai-mysql
spec:
mysql:
auth:
createDatabase: true
database: kimai
password: kimai
rootPassword: kimai
username: kimai
global:
storageClass: standard
primary:
persistence:
accessModes:
- ReadWriteOnce
size: 1Gi
version:
latest: 0.1.5
web:
replicaCount: 1
worker:
replicaCount: 0
image:
containerPort: "8001"
pullPolicy: Always
repository: kimai/kimai2
tag: apache
Loading