Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for networkingv1alpha3 (0.25 sec)

  1. istioctl/pkg/workload/workload.go

    						"name":      name,
    						"namespace": namespace,
    					},
    				},
    			}
    			spec := &networkingv1alpha3.WorkloadGroup{
    				Metadata: &networkingv1alpha3.WorkloadGroup_ObjectMeta{
    					Labels:      convertToStringMap(resourceLabels),
    					Annotations: convertToStringMap(annotations),
    				},
    				Template: &networkingv1alpha3.WorkloadEntry{
    					Ports:          convertToUnsignedInt32Map(ports),
    					ServiceAccount: serviceAccount,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		"1.21"))
    	return nil
    }
    
    func checkPassthroughTargetPorts(cli kube.CLIClient, messages *diag.Messages) error {
    	ses, err := cli.Istio().NetworkingV1alpha3().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 {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe_test.go

    		case *v1alpha3.DestinationRule:
    			client.Istio().NetworkingV1alpha3().DestinationRules(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{})
    		case *v1alpha3.Gateway:
    			client.Istio().NetworkingV1alpha3().Gateways(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{})
    		case *v1alpha3.VirtualService:
    			client.Istio().NetworkingV1alpha3().VirtualServices(t.Namespace).Create(context.TODO(), t, metav1.CreateOptions{})
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    				if err == nil && drName != "" && drNamespace != "" {
    					exist := false
    					dr, exist = recordDestinationRules[newResourceID(drNamespace, drName)]
    					if !exist {
    						dr, _ = configClient.NetworkingV1alpha3().DestinationRules(drNamespace).Get(context.Background(), drName, metav1.GetOptions{})
    						if dr == nil {
    							fmt.Fprintf(writer,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
Back to top