DEVX-178: [BE] Разработать endpoint выдачи информации для подключении фейн-клиентов через gradle/maven

This commit is contained in:
subochev 2026-03-26 14:44:05 +03:00
parent 32e41935bb
commit f8dc1071cf
2 changed files with 6 additions and 10 deletions

View File

@ -71,20 +71,17 @@ spec:
- name: http - name: http
containerPort: {{ $.Values.port }} containerPort: {{ $.Values.port }}
protocol: TCP protocol: TCP
- name: management
containerPort: {{ $.Values.managementPort }}
protocol: TCP
livenessProbe: livenessProbe:
httpGet: httpGet:
path: '/actuator/health/liveness' path: '/health'
port: management port: http
initialDelaySeconds: 20 initialDelaySeconds: 10
periodSeconds: 10 periodSeconds: 10
readinessProbe: readinessProbe:
httpGet: httpGet:
path: '/actuator/health/readiness' path: '/health'
port: management port: http
initialDelaySeconds: 25 initialDelaySeconds: 10
periodSeconds: 10 periodSeconds: 10
{{- if $.Values.resources}} {{- if $.Values.resources}}
resources: resources:

View File

@ -5,7 +5,6 @@ labels: []
securityContext: securityContext:
privileged: false privileged: false
port: 80 port: 80
managementPort: 80
imagePullSecrets: null imagePullSecrets: null
image: image:
name: null name: null