From 23658f894ba2b91303bdf5ba13bf96eea7636c8c Mon Sep 17 00:00:00 2001 From: Gianni Carafa Date: Tue, 17 Dec 2024 21:23:27 +0100 Subject: [PATCH] Template / Add ConvertX --- services/convertx/app.yaml | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 services/convertx/app.yaml diff --git a/services/convertx/app.yaml b/services/convertx/app.yaml new file mode 100644 index 00000000..ae33d7e3 --- /dev/null +++ b/services/convertx/app.yaml @@ -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