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 2FAuth #515

Merged
merged 1 commit into from
Nov 25, 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
63 changes: 63 additions & 0 deletions services/twofauth/app.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
apiVersion: application.kubero.dev/v1alpha1
kind: KuberoApp
metadata:
name: twofauth
annotations:
kubero.dev/template.architecture: "[]"
kubero.dev/template.description: "2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop."
kubero.dev/template.icon: "https://docs.2fauth.app/static/2fauth_dark.png"
kubero.dev/template.installation: ""
kubero.dev/template.links: '[]'
kubero.dev/template.screenshots: '["https://user-images.githubusercontent.com/858858/100485897-18c21400-3102-11eb-9c72-ea0b1b46ef2e.png"]'
kubero.dev/template.source: "https://github.com/Bubka/2FAuth"
kubero.dev/template.tags: '["2FA", "Authentication", "Security"]'
kubero.dev/template.title: "2FAuth"
kubero.dev/template.website: "https://docs.2fauth.app/"
labels:
manager: kubero
spec:
name: twofauth
deploymentstrategy: docker
envVars:
- name: APP_NAME
value: 2Fauth
- name: APP_TIMEZONE
value: UTC
- name: APP_DEBUG
value: "false"
- name: SITE_OWNER
value: [email protected]
- name: APP_KEY
value: SomeRandomStringOf32CharsExactly
- name: APP_URL
value: https://twofauth.localhost
extraVolumes:
- accessMode: ReadWriteOnce
accessModes:
- ReadWriteOnce
emptyDir: false
mountPath: /2fauth
name: twofauth-volume
size: 1Gi
storageClass: standard
cronjobs: []
addons: []
web:
replicaCount: 1
worker:
replicaCount: 0
image:
containerPort: "8000"
pullPolicy: Always
repository: 2fauth/2fauth
tag: latest
run:
securityContext:
allowPrivilegeEscalation: false
capabilities:
add: []
drop: []
readOnlyRootFilesystem: false
runAsGroup: 1000
runAsNonRoot: false
runAsUser: 1000