Compare commits

...

1 Commits

Author SHA1 Message Date
xAt0mZ
b6b126e8f6 fix(k8s/application): ability to remove naked pods 2020-12-15 19:29:57 +01:00

View File

@@ -71,6 +71,8 @@ class KubernetesApplicationService {
apiService = this.KubernetesDaemonSetService;
} else if (app instanceof KubernetesStatefulSet || (app instanceof KubernetesApplication && app.ApplicationType === KubernetesApplicationTypes.STATEFULSET)) {
apiService = this.KubernetesStatefulSetService;
} else if (app instanceof KubernetesApplication && app.ApplicationType === KubernetesApplicationTypes.POD) {
apiService = this.KubernetesPodService;
} else {
throw new PortainerError('Unable to determine which association to use to retrieve API Service');
}