Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SlowConvertKindsToRuntimeObjects (0.22 sec)

  1. pkg/kube/util.go

    			Subdomain:          oldSpec.Subdomain,
    		}
    		pod.Spec = newSpec
    		pod.Status.InitContainerStatuses = nil
    		pod.Status.ContainerStatuses = nil
    	}
    
    	return obj, nil
    }
    
    func SlowConvertKindsToRuntimeObjects(in []crd.IstioKind) ([]runtime.Object, error) {
    	res := make([]runtime.Object, 0, len(in))
    	for _, o := range in {
    		r, err := SlowConvertToRuntimeObject(&o)
    		if err != nil {
    			return nil, err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top