ervu-account-applications/config/config.yaml
2025-03-11 19:52:43 +03:00

59 lines
1 KiB
YAML

name: ervu-account-applications-frontend
replicaCount: 1
ports:
- name: http
containerPort: 80
resources:
requests:
memory: '128Mi'
cpu: '50m'
limits:
memory: '512Mi'
cpu: '500m'
services:
- name: '{{ $.Values.name }}'
type: ClusterIP
ports:
- name: http
port: 80
targetPort: 80
livenessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 80
initialDelaySeconds: 30
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 5
readinessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 80
initialDelaySeconds: 30
periodSeconds: 3
successThreshold: 1
timeoutSeconds: 5
ingress:
- name: '{{ $.Values.name }}'
labels:
app/name: account-applications
rules:
- host: 'aa-ervu-dev.pgs.rtlabs.ru'
http:
paths:
- path: /mfe/account-applications(/|$)(.*)
pathType: Prefix
backend:
service:
name: '{{ $.Values.name }}'
port:
name: http