mirror of
https://github.com/nold360/hive-apps
synced 2024-11-16 02:29:34 +00:00
Add: conreq
This commit is contained in:
parent
3c994c8b23
commit
a012588e09
2 changed files with 56 additions and 0 deletions
|
@ -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
|
||||
|
|
48
projects/arrstack/values/conreq.yaml
Normal file
48
projects/arrstack/values/conreq.yaml
Normal file
|
@ -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
|
Loading…
Reference in a new issue