some fixes
This commit is contained in:
parent
11ad39805d
commit
fbefead704
@ -32,11 +32,11 @@ spec:
|
||||
- name: VIKUNJA_DATABASE_PATH
|
||||
value: /app/vikunja/files/vikunja.db
|
||||
- name: VIKUNJA_SERVICE_ENABLEREGISTRATION
|
||||
value: false
|
||||
value: "false"
|
||||
- name: VIKUNJA_AUTH_LOCAL_ENABLED
|
||||
value: false
|
||||
value: "false"
|
||||
- name: VIKUNJA_AUTH_OPENID_ENABLED
|
||||
value: true
|
||||
value: "true"
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: todos-oidc
|
||||
@ -47,7 +47,12 @@ spec:
|
||||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /app/vikunja/files
|
||||
- name: placeholder-config
|
||||
mountPath: /app/vikunja
|
||||
volumes:
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: data
|
||||
- name: placeholder-config
|
||||
configMap:
|
||||
name: placeholder-config
|
||||
|
@ -7,6 +7,7 @@ resources:
|
||||
- namespace.yaml
|
||||
- pvc.yaml
|
||||
- todos-oidc.sealedsecret.yaml
|
||||
- placeholder-config.configmap.yaml
|
||||
- deployment.yaml
|
||||
- service.yaml
|
||||
- ingress.yaml
|
||||
|
12
apps/todos/placeholder-config.configmap.yaml
Normal file
12
apps/todos/placeholder-config.configmap.yaml
Normal file
@ -0,0 +1,12 @@
|
||||
kind: ConfigMap
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: placeholder-config
|
||||
data:
|
||||
config.yml: |
|
||||
auth:
|
||||
openid:
|
||||
enabled: true
|
||||
providers:
|
||||
authelia:
|
||||
name: authelia
|
@ -1,54 +0,0 @@
|
||||
######################
|
||||
# VIKUNJA COMPONENTS #
|
||||
######################
|
||||
|
||||
image:
|
||||
tag: 0.22.1
|
||||
# You can find the default values that this `values.yaml` overrides, in the comment at the top of this file.
|
||||
api:
|
||||
enabled: true
|
||||
image:
|
||||
tag: 0.22.1
|
||||
persistence:
|
||||
# This is your Vikunja data will live, you can either let
|
||||
# the chart create a new PVC for you or provide an existing one.
|
||||
data:
|
||||
enabled: true
|
||||
existingClaim: data
|
||||
accessMode: ReadWriteOnce
|
||||
size: 10Gi
|
||||
mountPath: /app/vikunja/files
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: false
|
||||
|
||||
configMaps:
|
||||
# The configuration for Vikunja's api.
|
||||
# https://vikunja.io/docs/config-options/
|
||||
config:
|
||||
enabled: true
|
||||
data:
|
||||
config.yml: |
|
||||
service:
|
||||
frontendUrl: https://todos.kluster.moll.re
|
||||
database:
|
||||
type: sqlite
|
||||
path: /app/vikunja/files/vikunja.db
|
||||
registration: false
|
||||
|
||||
|
||||
frontend:
|
||||
enabled: true
|
||||
image:
|
||||
tag: 0.22.1
|
||||
ingress:
|
||||
main:
|
||||
enabled: false
|
||||
|
||||
postgresql:
|
||||
enabled: false
|
||||
redis:
|
||||
enabled: false
|
||||
typesense:
|
||||
enabled: false
|
@ -2,4 +2,3 @@ apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
resources:
|
||||
- application.yaml
|
||||
# - repo.yaml
|
@ -1,12 +0,0 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
labels:
|
||||
argocd.argoproj.io/secret-type: repository
|
||||
name: kolaente-helm-oci
|
||||
|
||||
stringData:
|
||||
url: kolaente.dev/vikunja
|
||||
name: vikunja
|
||||
type: helm
|
||||
enableOCI: "true"
|
Loading…
x
Reference in New Issue
Block a user