add policy-ui build
This commit is contained in:
6
ops/chart/Chart.lock
Normal file
6
ops/chart/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||
version: 4.6.2
|
||||
digest: sha256:35e8f4e5d15d878c246a04eb51de580291f31203fa10e9e4d2318f16026b2061
|
||||
generated: "2026-04-14T12:23:59.76714437-05:00"
|
||||
14
ops/chart/Chart.yaml
Normal file
14
ops/chart/Chart.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
apiVersion: v2
|
||||
name: policy-ui
|
||||
description: Policy UI dashboard
|
||||
type: application
|
||||
version: 0.1.0
|
||||
appVersion: "1.0.0"
|
||||
keywords:
|
||||
- nuxt
|
||||
- vue
|
||||
- frontend
|
||||
dependencies:
|
||||
- name: common
|
||||
version: "4.6.2"
|
||||
repository: https://bjw-s-labs.github.io/helm-charts/
|
||||
4
ops/chart/templates/common.tpl
Normal file
4
ops/chart/templates/common.tpl
Normal file
@@ -0,0 +1,4 @@
|
||||
{{/*
|
||||
Render all resources provided by the common library
|
||||
*/}}
|
||||
{{- include "bjw-s.common.loader.all" . -}}
|
||||
54
ops/chart/values.yaml
Normal file
54
ops/chart/values.yaml
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user