1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

fix(kubeapi): fix ts api error handling [EE-5558] (#10488)

* fix(kubeapi): fix ts api error handling [EE-5558]

* use portainer errors for mapped functions

* don't parse long patch responses

* allow nested kube error that's thrown to bubble up

---------

Co-authored-by: testa113 <testa113>
This commit is contained in:
Ali 2023-10-23 20:52:40 +01:00 committed by GitHub
parent 6c55cac52a
commit 96ead31a8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 210 additions and 234 deletions

View file

@ -3,6 +3,8 @@ import { Pod, PodList } from 'kubernetes-types/core/v1';
import { EnvironmentId } from '@/react/portainer/environments/types';
import axios, { parseAxiosError } from '@/portainer/services/axios';
import { parseKubernetesAxiosError } from '../axiosError';
import { ApplicationPatch } from './types';
export async function getNamespacePods(
@ -21,7 +23,10 @@ export async function getNamespacePods(
);
return data.items;
} catch (e) {
throw parseAxiosError(e as Error, 'Unable to retrieve pods');
throw parseKubernetesAxiosError(
e,
`Unable to retrieve pods in namespace '${namespace}'`
);
}
}
@ -40,7 +45,7 @@ export async function getPod<T extends Pod | string = Pod>(
);
return data;
} catch (e) {
throw parseAxiosError(e as Error, 'Unable to retrieve pod');
throw parseKubernetesAxiosError(e, 'Unable to retrieve pod');
}
}
@ -61,7 +66,7 @@ export async function patchPod(
}
);
} catch (e) {
throw parseAxiosError(e as Error, 'Unable to update pod');
throw parseAxiosError(e, 'Unable to update pod');
}
}
@ -73,7 +78,7 @@ export async function deletePod(
try {
return await axios.delete<Pod>(buildUrl(environmentId, namespace, name));
} catch (e) {
throw parseAxiosError(e as Error, 'Unable to delete pod');
throw parseKubernetesAxiosError(e as Error, 'Unable to delete pod');
}
}