mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 18:43:34 +00:00
Changes to accommodate client-go changes and kube vendor update
to v1.18.0 Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
committed by
mergify[bot]
parent
4c96ad3c85
commit
34fc1d847e
27
vendor/k8s.io/kubernetes/test/utils/delete_resources.go
generated
vendored
27
vendor/k8s.io/kubernetes/test/utils/delete_resources.go
generated
vendored
@ -19,9 +19,10 @@ limitations under the License.
|
||||
package utils
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
apierrs "k8s.io/apimachinery/pkg/api/errors"
|
||||
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||
clientset "k8s.io/client-go/kubernetes"
|
||||
@ -31,35 +32,35 @@ import (
|
||||
extensionsinternal "k8s.io/kubernetes/pkg/apis/extensions"
|
||||
)
|
||||
|
||||
func deleteResource(c clientset.Interface, kind schema.GroupKind, namespace, name string, options *metav1.DeleteOptions) error {
|
||||
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(name, options)
|
||||
return c.CoreV1().Pods(namespace).Delete(context.TODO(), name, options)
|
||||
case api.Kind("ReplicationController"):
|
||||
return c.CoreV1().ReplicationControllers(namespace).Delete(name, options)
|
||||
return c.CoreV1().ReplicationControllers(namespace).Delete(context.TODO(), name, options)
|
||||
case extensionsinternal.Kind("ReplicaSet"), appsinternal.Kind("ReplicaSet"):
|
||||
return c.AppsV1().ReplicaSets(namespace).Delete(name, options)
|
||||
return c.AppsV1().ReplicaSets(namespace).Delete(context.TODO(), name, options)
|
||||
case extensionsinternal.Kind("Deployment"), appsinternal.Kind("Deployment"):
|
||||
return c.AppsV1().Deployments(namespace).Delete(name, options)
|
||||
return c.AppsV1().Deployments(namespace).Delete(context.TODO(), name, options)
|
||||
case extensionsinternal.Kind("DaemonSet"):
|
||||
return c.AppsV1().DaemonSets(namespace).Delete(name, options)
|
||||
return c.AppsV1().DaemonSets(namespace).Delete(context.TODO(), name, options)
|
||||
case batchinternal.Kind("Job"):
|
||||
return c.BatchV1().Jobs(namespace).Delete(name, options)
|
||||
return c.BatchV1().Jobs(namespace).Delete(context.TODO(), name, options)
|
||||
case api.Kind("Secret"):
|
||||
return c.CoreV1().Secrets(namespace).Delete(name, options)
|
||||
return c.CoreV1().Secrets(namespace).Delete(context.TODO(), name, options)
|
||||
case api.Kind("ConfigMap"):
|
||||
return c.CoreV1().ConfigMaps(namespace).Delete(name, options)
|
||||
return c.CoreV1().ConfigMaps(namespace).Delete(context.TODO(), name, options)
|
||||
case api.Kind("Service"):
|
||||
return c.CoreV1().Services(namespace).Delete(name, options)
|
||||
return c.CoreV1().Services(namespace).Delete(context.TODO(), name, options)
|
||||
default:
|
||||
return fmt.Errorf("Unsupported kind when deleting: %v", kind)
|
||||
}
|
||||
}
|
||||
|
||||
func DeleteResourceWithRetries(c clientset.Interface, kind schema.GroupKind, namespace, name string, options *metav1.DeleteOptions) error {
|
||||
func DeleteResourceWithRetries(c clientset.Interface, kind schema.GroupKind, namespace, name string, options metav1.DeleteOptions) error {
|
||||
deleteFunc := func() (bool, error) {
|
||||
err := deleteResource(c, kind, namespace, name, options)
|
||||
if err == nil || apierrs.IsNotFound(err) {
|
||||
if err == nil || apierrors.IsNotFound(err) {
|
||||
return true, nil
|
||||
}
|
||||
if IsRetryableAPIError(err) {
|
||||
|
Reference in New Issue
Block a user