kie-cloud-operator icon indicating copy to clipboard operation
kie-cloud-operator copied to clipboard

Default TrustyAI liveness probe path error

Open kkk25641463 opened this issue 1 year ago • 0 comments

Currently default livenessProbe path of TrustyUI is '/' and trust-ui pod liveness http probe always 404.We must set path to '/audit'

apiVersion: app.kiegroup.org/v1beta1
kind: KogitoSupportingService
metadata:
  name: trusty-ui
spec:
  serviceType: TrustyUI
  replicas: 1
  image: quay.io/kiegroup/kogito-trusty-ui:1.5
  probes:
    readinessProbe:
      httpGet:
        path: '/audit'
        port: 8080
    livenessProbe:
      httpGet:
        host: '/audit'
        port: 8080
    startupProbe:
      httpGet:
        path: '/audit'
        port: 8080
  monitoring:
    path: '/audit'

kkk25641463 avatar Nov 16 '23 02:11 kkk25641463