Skip to content

Commit

Permalink
Merge pull request #510 from kubero-dev/template/add-zipline
Browse files Browse the repository at this point in the history
Template / Add Zipline
  • Loading branch information
mms-gianni authored Nov 22, 2024
2 parents df90f0d + 2439a76 commit 55b7d54
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 additions & 0 deletions services/zipline/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoApp
metadata:
name: zipline
annotations:
kubero.dev/template.architecture: "[]"
kubero.dev/template.description: "A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!"
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/1396645"
kubero.dev/template.installation: ""
kubero.dev/template.links: "[]"
kubero.dev/template.screenshots: "[]"
kubero.dev/template.source: "https://github.com/diced/zipline"
kubero.dev/template.tags: '["file", "sharex", "sharing"]'
kubero.dev/template.title: "Zipline"
kubero.dev/template.website: "https://zipline.diced.sh/"
labels:
manager: kubero
spec:
name: zipline
deploymentstrategy: docker
envVars:
- name: CORE_RETURN_HTTPS
value: "false"
- name: CORE_SECRET
value: JYcxmGH3YI34I5CDQU6y5hD4ys9usyPvtjnCXF6
- name: CORE_HOST
value: 0.0.0.0
- name: CORE_PORT
value: "3000"
- name: CORE_DATABASE_URL
value: postgres://zipline:zipline@zipline-postgresql:5432/zipline
extraVolumes:
- accessMode: ReadWriteOnce
accessModes:
- ReadWriteOnce
emptyDir: false
mountPath: /zipline/uploads
name: zipline-uploads-volume
size: 1Gi
storageClass: standard
- accessMode: ReadWriteOnce
accessModes:
- ReadWriteOnce
emptyDir: false
mountPath: /zipline/public
name: zipline-public-volume
size: 1Gi
storageClass: standard
cronjobs: []
addons:
- displayName: Postgresql
env: []
icon: /img/addons/pgsql.svg
id: kubero-operator
kind: KuberoPostgresql
resourceDefinitions:
KuberoPostgresql:
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoPostgresql
metadata:
name: zipline-postgresql
spec:
postgresql:
global:
postgresql:
auth:
database: zipline
password: zipline
postgresPassword: zipline
username: zipline
storageClass: standard
primary:
persistence:
size: 1Gi
version:
latest: 0.1.5
web:
replicaCount: 1
worker:
replicaCount: 0
image:
containerPort: "3000"
pullPolicy: Always
repository: ghcr.io/diced/zipline
tag: latest

0 comments on commit 55b7d54

Please sign in to comment.