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