-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #504 from kubero-dev/template/add-flightlog
Template / Add flightlog
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |