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 ConvertX #555

Merged
merged 1 commit into from
Dec 22, 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
41 changes: 41 additions & 0 deletions services/convertx/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoApp
metadata:
name: convertx
annotations:
kubero.dev/template.architecture: "[]"
kubero.dev/template.description: "Self-hosted online file converter. Supports 1000+ formats"
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/18604702"
kubero.dev/template.installation: ""
kubero.dev/template.links: "[]"
kubero.dev/template.screenshots: "[]"
kubero.dev/template.source: "https://github.com/C4illin/ConvertX"
kubero.dev/template.categories: '["media", "utilities"]'
kubero.dev/template.title: "ConvertX"
kubero.dev/template.website: "https://github.com/C4illin/ConvertX"
labels:
manager: kubero
spec:
name: convertx
deploymentstrategy: docker
envVars:
- name: JWT_SECRET
value: aLongAndSecretStringUsedToSignTheJSONWebToken1234
- name: ACCOUNT_REGISTRATION
value: "false"
- name: ALLOW_UNAUTHENTICATED
value: "true"
- name: AUTO_DELETE_EVERY_N_HOURS
value: "24"
extraVolumes: []
cronjobs: []
addons: []
web:
replicaCount: 1
worker:
replicaCount: 0
image:
containerPort: "3000"
pullPolicy: Always
repository: ghcr.io/c4illin/convertx
tag: latest
Loading