Statefulsets pods in Kiali Dashboard

2/21/2020

Can anybody help me here, I'm not able to see my statefulset application in Kiali Dashboard (application: elasticsearch and Other statefulset ) . i have installed istio using istioctl manifest apply (demo profile). i am able to see all other workload like pods , servcice but not stateful set .

Not sure what i need to configure in the generated manifest file.

-- ABHISHEK KUMAR
google-kubernetes-engine
istio
kiali
kubernetes

1 Answer

2/21/2020

The kiali CR by default excludes statefulset.

excluded_workloads:
    - "CronJob"
    - "DeploymentConfig"
    - "Job"
    - "ReplicationController"
    - "StatefulSet"

You need to remove StatefulSet from exclusions by modifying the CR and applying it in your cluster. Check this issue.

-- Arghya Sadhu
Source: StackOverflow