53 lines
902 B
YAML
53 lines
902 B
YAML
replicaCount: 1
|
|
|
|
# Backend API configuration
|
|
backend:
|
|
image:
|
|
repository: harbor.dvirlabs.com/my-apps/oramap-backend
|
|
tag: "latest"
|
|
pullPolicy: IfNotPresent
|
|
containerPort: 3000
|
|
replicaCount: 1
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
|
|
# Frontend Nginx configuration
|
|
frontend:
|
|
image:
|
|
repository: harbor.dvirlabs.com/my-apps/oramap-frontend
|
|
tag: "latest"
|
|
pullPolicy: IfNotPresent
|
|
containerPort: 80
|
|
replicaCount: 1
|
|
resources:
|
|
limits:
|
|
cpu: 200m
|
|
memory: 256Mi
|
|
requests:
|
|
cpu: 50m
|
|
memory: 64Mi
|
|
|
|
service:
|
|
type: ClusterIP
|
|
backend:
|
|
port: 3000
|
|
targetPort: 3000
|
|
frontend:
|
|
port: 80
|
|
targetPort: 80
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "traefik"
|
|
hosts:
|
|
- host: oramap.dvirlabs.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|