The following code doesn't work: const [podsData, podsLoaded, podsError] = useK8sWatchResource<{}[]>({ groupVersionKind: { version: 'v1', kind: 'Pod' }, namespace: 'openshift-console', isList: true, namespaced: true, }); `useK8sWatchResource` calls `getReference` on `groupVersionKind`, which returns `core~v1~Pod`. However, the model key for Pods in `Pod` in Redux, so the watch hook doesn't find the model when calling `k8s.getIn(['RESOURCES', 'models', kindReference])`.
Putting this back into the "pool" so it can be re-triaged and reassigned.
*** This bug has been marked as a duplicate of bug 2027311 ***