From f8dc1071cfd15aa75aaf052605de51d62fe89016 Mon Sep 17 00:00:00 2001 From: subochev Date: Thu, 26 Mar 2026 14:44:05 +0300 Subject: [PATCH] =?UTF-8?q?DEVX-178:=20[BE]=20=D0=A0=D0=B0=D0=B7=D1=80?= =?UTF-8?q?=D0=B0=D0=B1=D0=BE=D1=82=D0=B0=D1=82=D1=8C=20endpoint=20=D0=B2?= =?UTF-8?q?=D1=8B=D0=B4=D0=B0=D1=87=D0=B8=20=D0=B8=D0=BD=D1=84=D0=BE=D1=80?= =?UTF-8?q?=D0=BC=D0=B0=D1=86=D0=B8=D0=B8=20=D0=B4=D0=BB=D1=8F=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=B4=D0=BA=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D0=B8=D0=B8=20?= =?UTF-8?q?=D1=84=D0=B5=D0=B9=D0=BD-=D0=BA=D0=BB=D0=B8=D0=B5=D0=BD=D1=82?= =?UTF-8?q?=D0=BE=D0=B2=20=D1=87=D0=B5=D1=80=D0=B5=D0=B7=20gradle/maven?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../devspace-selfkit-ui/templates/deployment.yaml | 15 ++++++--------- devspc/devspace-selfkit-ui/values.yaml | 1 - 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/devspc/devspace-selfkit-ui/templates/deployment.yaml b/devspc/devspace-selfkit-ui/templates/deployment.yaml index b3447c0..17c8ccc 100644 --- a/devspc/devspace-selfkit-ui/templates/deployment.yaml +++ b/devspc/devspace-selfkit-ui/templates/deployment.yaml @@ -71,20 +71,17 @@ spec: - name: http containerPort: {{ $.Values.port }} protocol: TCP - - name: management - containerPort: {{ $.Values.managementPort }} - protocol: TCP livenessProbe: httpGet: - path: '/actuator/health/liveness' - port: management - initialDelaySeconds: 20 + path: '/health' + port: http + initialDelaySeconds: 10 periodSeconds: 10 readinessProbe: httpGet: - path: '/actuator/health/readiness' - port: management - initialDelaySeconds: 25 + path: '/health' + port: http + initialDelaySeconds: 10 periodSeconds: 10 {{- if $.Values.resources}} resources: diff --git a/devspc/devspace-selfkit-ui/values.yaml b/devspc/devspace-selfkit-ui/values.yaml index c647a7c..13c7ca7 100644 --- a/devspc/devspace-selfkit-ui/values.yaml +++ b/devspc/devspace-selfkit-ui/values.yaml @@ -5,7 +5,6 @@ labels: [] securityContext: privileged: false port: 80 -managementPort: 80 imagePullSecrets: null image: name: null