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 flightlog #504

Merged
merged 3 commits into from
Dec 25, 2024
Merged
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
43 changes: 43 additions & 0 deletions services/flightlog/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoApp
metadata:
name: flightlog
annotations:
kubero.dev/template.architecture: "[]"
kubero.dev/template.description: "Flight log web application that keeps track of your personal flight history"
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/4271779"
kubero.dev/template.installation: ""
kubero.dev/template.links: "[]"
kubero.dev/template.screenshots: '["https://raw.githubusercontent.com/perdian/flightlog/main/docs/screenshots/home.png"]'
kubero.dev/template.source: "https://github.com/perdian/flightlog"
kubero.dev/template.categories: '["management", "log"]'
kubero.dev/template.title: "Flightlog"
kubero.dev/template.website: "https://github.com/perdian/flightlog"
labels:
manager: kubero
spec:
name: flightlog
deploymentstrategy: docker
envVars:
- name: FLIGHTLOG_SERVER_CONTEXT_PATH
value: /
extraVolumes:
- accessMode: ReadWriteOnce
accessModes:
- ReadWriteOnce
emptyDir: false
mountPath: /var/flightlog/database
name: flightlog-db-volume
size: 1Gi
storageClass: standard
cronjobs: []
addons: []
web:
replicaCount: 1
worker:
replicaCount: 0
image:
containerPort: 8080
pullPolicy: Always
repository: perdian/flightlog
tag: latest
Loading