/
githubmirror
/
kubernetes
Обзор
Документация
Войти
/
githubmirror
/
kubernetes
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/utils/delete_resources.go
57 строк
2 KB
Maciej Szulik
Cleanup unused test functions - cont-ed
17 июл 2024, 17:22
Не верифицирован
17 июл 2024, 17:22
ce01dfc
Код
Авторство
О чём код?
/* Copyright 2018 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // TODO: Refactor common part of functions in this file for generic object kinds. package utils import ( "context" "fmt" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime/schema" clientset "k8s.io/client-go/kubernetes" appsinternal "k8s.io/kubernetes/pkg/apis/apps" batchinternal "k8s.io/kubernetes/pkg/apis/batch" api "k8s.io/kubernetes/pkg/apis/core" extensionsinternal "k8s.io/kubernetes/pkg/apis/extensions" ) func DeleteResource(c clientset.Interface, kind schema.GroupKind, namespace, name string, options metav1.DeleteOptions) error { switch kind { case api.Kind("Pod"): return c.CoreV1().Pods(namespace).Delete(context.TODO(), name, options) case api.Kind("ReplicationController"): return c.CoreV1().ReplicationControllers(namespace).Delete(context.TODO(), name, options) case extensionsinternal.Kind("ReplicaSet"), appsinternal.Kind("ReplicaSet"): return c.AppsV1().ReplicaSets(namespace).Delete(context.TODO(), name, options) case extensionsinternal.Kind("Deployment"), appsinternal.Kind("Deployment"): return c.AppsV1().Deployments(namespace).Delete(context.TODO(), name, options) case extensionsinternal.Kind("DaemonSet"): return c.AppsV1().DaemonSets(namespace).Delete(context.TODO(), name, options) case batchinternal.Kind("Job"): return c.BatchV1().Jobs(namespace).Delete(context.TODO(), name, options) case api.Kind("Secret"): return c.CoreV1().Secrets(namespace).Delete(context.TODO(), name, options) case api.Kind("ConfigMap"): return c.CoreV1().ConfigMaps(namespace).Delete(context.TODO(), name, options) case api.Kind("Service"): return c.CoreV1().Services(namespace).Delete(context.TODO(), name, options) default: return fmt.Errorf("unsupported kind when deleting: %v", kind) } }