- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for NetworkingV1 (0.13 sec)
-
istioctl/pkg/describe/describe_test.go
case *clientnetworking.DestinationRule: client.Istio().NetworkingV1().DestinationRules(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{}) case *clientnetworking.Gateway: client.Istio().NetworkingV1().Gateways(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{}) case *clientnetworking.VirtualService: client.Istio().NetworkingV1().VirtualServices(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{})
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 30.8K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
if err == nil && drName != "" && drNamespace != "" { exist := false dr, exist = recordDestinationRules[newResourceID(drNamespace, drName)] if !exist { dr, _ = configClient.NetworkingV1().DestinationRules(drNamespace).Get(context.Background(), drName, metav1.GetOptions{}) if dr == nil { fmt.Fprintf(writer,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck.go
"1.21")) return nil } func checkPassthroughTargetPorts(cli kube.CLIClient, messages *diag.Messages) error { ses, err := cli.Istio().NetworkingV1().ServiceEntries(metav1.NamespaceAll).List(context.Background(), metav1.ListOptions{}) if err != nil { return err } for _, se := range ses.Items { if se.Spec.Resolution != networking.ServiceEntry_NONE {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 02:31:32 UTC 2024 - 15.3K bytes - Viewed (0) -
istioctl/pkg/workload/workload.go
} wg := &clientnetworking.WorkloadGroup{} if filename != "" { if err := readWorkloadGroup(filename, wg); err != nil { return err } } else { wg, err = kubeClient.Istio().NetworkingV1().WorkloadGroups(namespace).Get(context.Background(), name, metav1.GetOptions{}) // errors if the requested workload group does not exist in the given namespace if err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0)