add policy-ui build

This commit is contained in:
2026-04-15 12:35:50 -05:00
parent ff2d7b18b5
commit 1023f99642
8 changed files with 9168 additions and 13039 deletions

54
ops/chart/values.yaml Normal file
View File

@@ -0,0 +1,54 @@
controllers:
main:
enabled: true
type: deployment
replicas: 1
containers:
main:
image:
repository: gitea.corredorconect.com/software-engineering/policy-ui
tag: '{{ $.Chart.AppVersion }}'
env:
NODE_ENV: production
HOST: "0.0.0.0"
PORT: "3000"
probes:
liveness:
enabled: true
custom: true
spec:
httpGet:
path: /
port: 3000
initialDelaySeconds: 10
periodSeconds: 10
readiness:
enabled: true
custom: true
spec:
httpGet:
path: /
port: 3000
initialDelaySeconds: 5
periodSeconds: 5
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 200m
memory: 128Mi
service:
main:
enabled: true
controller: main
primary: true
type: ClusterIP
ports:
http:
enabled: true
primary: true
port: 3000
protocol: HTTP