fix(errors): display kube confgimap and secret errors [EE-5558] (#10539)
This commit is contained in:
@@ -10,7 +10,6 @@ import {
|
||||
} from '@/portainer/services/notifications';
|
||||
import { isFulfilled, isRejected } from '@/portainer/helpers/promise-utils';
|
||||
import { pluralize } from '@/portainer/helpers/strings';
|
||||
import PortainerError from '@/portainer/error';
|
||||
|
||||
import { parseKubernetesAxiosError } from '../axiosError';
|
||||
|
||||
@@ -122,14 +121,10 @@ async function getConfigMapsForCluster(
|
||||
environmentId: EnvironmentId,
|
||||
namespaces: string[]
|
||||
) {
|
||||
try {
|
||||
const configMaps = await Promise.all(
|
||||
namespaces.map((namespace) => getConfigMaps(environmentId, namespace))
|
||||
);
|
||||
return configMaps.flat();
|
||||
} catch (e) {
|
||||
throw new PortainerError('Unable to retrieve ConfigMaps', e);
|
||||
}
|
||||
const configMaps = await Promise.all(
|
||||
namespaces.map((namespace) => getConfigMaps(environmentId, namespace))
|
||||
);
|
||||
return configMaps.flat();
|
||||
}
|
||||
|
||||
// get all configmaps for a namespace
|
||||
|
||||
@@ -10,7 +10,6 @@ import {
|
||||
} from '@/portainer/services/notifications';
|
||||
import { isFulfilled, isRejected } from '@/portainer/helpers/promise-utils';
|
||||
import { pluralize } from '@/portainer/helpers/strings';
|
||||
import PortainerError from '@/portainer/error';
|
||||
|
||||
import { parseKubernetesAxiosError } from '../axiosError';
|
||||
|
||||
@@ -118,14 +117,10 @@ async function getSecretsForCluster(
|
||||
environmentId: EnvironmentId,
|
||||
namespaces: string[]
|
||||
) {
|
||||
try {
|
||||
const secrets = await Promise.all(
|
||||
namespaces.map((namespace) => getSecrets(environmentId, namespace))
|
||||
);
|
||||
return secrets.flat();
|
||||
} catch (e) {
|
||||
throw new PortainerError('Unable to retrieve secrets for cluster', e);
|
||||
}
|
||||
const secrets = await Promise.all(
|
||||
namespaces.map((namespace) => getSecrets(environmentId, namespace))
|
||||
);
|
||||
return secrets.flat();
|
||||
}
|
||||
|
||||
// get all secrets for a namespace
|
||||
|
||||
Reference in New Issue
Block a user