Single execution cleanup will not remove pods while task cleanup does
When hitting the cleanup option under "Tasks" the corresponding REST call has both REMOVE_DATA and CLEANUP set in the action parameter:
https://github.com/spring-cloud/spring-cloud-dataflow-ui/blob/46a218dd0135c78d76f20f174cee7ab6b8d52d30/ui/src/app/shared/api/task.service.ts#L123-L135
When triggering the cleanup from the "Task Executions" panel only REMOVE_DATA is set and hence the kubernetes pods are left untouched.
https://github.com/spring-cloud/spring-cloud-dataflow-ui/blob/46a218dd0135c78d76f20f174cee7ab6b8d52d30/ui/src/app/shared/api/task.service.ts#L107-L117
Is this intentional behaviour? I guess, it should be consistent at least or otherwise reflected in the label somehow so that the user is aware of those options actually behaving differently.