Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for istioclient (0.38 sec)

  1. pkg/kube/kclient/client_test.go

    		wt := clienttest.NewWriter[*istioclient.WasmPlugin](t, c)
    		tracker := assert.NewTracker[string](t)
    		wasm.AddEventHandler(clienttest.TrackerHandler(tracker))
    		go constantlyAccessForRaceDetection(stop, wasm)
    
    		// CRD and Delayed client are ready to go by the time we start informers
    		clienttest.MakeCRD(t, c, gvr.WasmPlugin)
    		c.RunAndWait(stop)
    
    		wt.Create(&istioclient.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/controller/controller.go

    	createOptions := metav1.CreateOptions{DryRun: []string{metav1.DryRunAll}}
    	istioClient := c.client.Istio().NetworkingV1alpha3()
    	_, err := istioClient.Gateways(c.o.WatchedNamespace).Create(context.TODO(), invalidGateway, createOptions)
    	if kerrors.IsAlreadyExists(err) {
    		updateOptions := metav1.UpdateOptions{DryRun: []string{metav1.DryRunAll}}
    		_, err = istioClient.Gateways(c.o.WatchedNamespace).Update(context.TODO(), invalidGateway, updateOptions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/kube/krt/collection_test.go

    			Named:    NewNamed(i),
    			Selector: i.Spec.Selector,
    		}
    	})
    }
    
    func SimpleServiceCollectionFromEntries(entries krt.Collection[*istioclient.ServiceEntry]) krt.Collection[SimpleService] {
    	return krt.NewCollection(entries, func(ctx krt.HandlerContext, i *istioclient.ServiceEntry) *SimpleService {
    		l := i.Spec.WorkloadSelector.GetLabels()
    		if l == nil {
    			return nil
    		}
    		return &SimpleService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. pkg/kube/client.go

    	clientnetworkingbeta "istio.io/client-go/pkg/apis/networking/v1beta1"
    	clientsecurity "istio.io/client-go/pkg/apis/security/v1beta1"
    	clienttelemetry "istio.io/client-go/pkg/apis/telemetry/v1alpha1"
    	istioclient "istio.io/client-go/pkg/clientset/versioned"
    	istiofake "istio.io/client-go/pkg/clientset/versioned/fake"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/gvk"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. tests/integration/helm/util.go

    			"istio.io/rev": revision,
    		}
    	}
    	createOptions := metav1.CreateOptions{DryRun: []string{metav1.DryRunAll}}
    	istioClient := ctx.Clusters().Default().Istio().NetworkingV1alpha3()
    	retry.UntilOrFail(ctx, func() bool {
    		_, err := istioClient.Gateways(IstioNamespace).Create(context.TODO(), invalidGateway, createOptions)
    		rejected := err != nil
    		return rejected
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top