Add frontend

This commit is contained in:
pratik
2025-10-23 08:10:15 -05:00
parent 23dacdd0c2
commit c35cd7092a
28 changed files with 2243 additions and 4 deletions

61
frontend/helm/values.yaml Normal file
View File

@@ -0,0 +1,61 @@
# Default values for cf-deployer-ui
replicaCount: 2
image:
repository: cf-deployer-ui
pullPolicy: IfNotPresent
tag: "latest"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
create: false
name: ""
service:
type: ClusterIP
port: 80
targetPort: 80
ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# cert-manager.io/cluster-issuer: letsencrypt-prod
hosts:
- host: cf-deployer.example.com
paths:
- path: /
pathType: Prefix
tls: []
# - secretName: cf-deployer-tls
# hosts:
# - cf-deployer.example.com
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 100m
memory: 128Mi
autoscaling:
enabled: false
minReplicas: 2
maxReplicas: 10
targetCPUUtilizationPercentage: 80
# Backend service URL
backend:
url: "http://cf-deployer-backend:8080"
nodeSelector: {}
tolerations: []
affinity: {}