diff --git a/projects/arrstack/project.yaml b/projects/arrstack/project.yaml index b1d3d34b..491e7c28 100644 --- a/projects/arrstack/project.yaml +++ b/projects/arrstack/project.yaml @@ -4,6 +4,14 @@ config: repo: k8s-at-home apps: +- name: conreq + namespace: conreq + chart: conreq + repoURL: https://charts.truecharts.org + targetRevision: 0.0.35 + include: + - ingress-internal + - name: ombi namespace: ombi chart: ombi diff --git a/projects/arrstack/values/conreq.yaml b/projects/arrstack/values/conreq.yaml new file mode 100644 index 00000000..59f05e2b --- /dev/null +++ b/projects/arrstack/values/conreq.yaml @@ -0,0 +1,48 @@ +env: + UMASK: "" + +image: + pullPolicy: Always + repository: tccr.io/truecharts/conreq + tag: latest + +persistence: + config: + enabled: true + mountPath: /config + +podSecurityContext: + runAsGroup: 0 + runAsUser: 0 +securityContext: + readOnlyRootFilesystem: false + runAsNonRoot: false + +service: + main: + ports: + main: + port: 8000 + protocol: TCP + targetPort: 8000 + +ingress: + main: + enabled: true + enableFixedMiddlewares: false + annotations: + cert-manager.io/cluster-issuer: vault-issuer + traefik.ingress.kubernetes.io/router.tls: 'true' + hosts: + - host: conreq.dc + paths: + - path: / + pathType: Prefix + tls: + - secretName: conreq-tls + hosts: + - conreq.dc + + +portal: + enabled: false