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 Fider #567

Merged
merged 1 commit into from
Dec 31, 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
77 changes: 77 additions & 0 deletions services/fider/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoApp
metadata:
name: fider
annotations:
kubero.dev/template.architecture: '["linux/amd64", "linux/arm64"]'
kubero.dev/template.description: "Open platform to collect and prioritize feedback"
kubero.dev/template.icon: "https://avatars.githubusercontent.com/u/25187431"
kubero.dev/template.installation: ""
kubero.dev/template.links: "[]"
kubero.dev/template.screenshots: '["https://fider.io/_next/image?url=%2Fimages%2Fscreenshot%2Fhome2.png&w=1920&q=75"]'
kubero.dev/template.source: "https://github.com/getfider/fider"
kubero.dev/template.categories: '["collaboration","productivity"]'
kubero.dev/template.title: "Fider"
kubero.dev/template.website: "https://fider.io"
labels:
manager: kubero
spec:
name: fider
deploymentstrategy: docker
envVars:
- name: BASE_URL
value: https://fider.localhost
- name: DATABASE_URL
value: postgres://fider:fider@fider-postgresql/fider?sslmode=disable
- name: JWT_SECRET
value: random64
- name: EMAIL_NOREPLY
value: [email protected]
- name: EMAIL_SMTP_HOST
value: smtp.yourdomain.com
- name: EMAIL_SMTP_PORT
value: "587"
- name: EMAIL_SMTP_USERNAME
value: [email protected]
- name: EMAIL_SMTP_PASSWORD
value: s0m3p4ssw0rd
- name: EMAIL_SMTP_ENABLE_STARTTLS
value: "true"
extraVolumes: []
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: fider-postgresql
spec:
postgresql:
global:
postgresql:
auth:
database: fider
password: fider
postgresPassword: fider
username: fider
storageClass: standard
primary:
persistence:
size: 1Gi
version:
latest: 0.1.5
web:
replicaCount: 1
worker:
replicaCount: 0
image:
containerPort: "3000"
pullPolicy: Always
repository: getfider/fider
tag: stable
Loading