59 lines
991 B
YAML
59 lines
991 B
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: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: '{{ $.Values.name }}'
|
|
port:
|
|
name: http
|