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.
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.