Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for VirtualService (0.09 sec)

  1. istioctl/pkg/validate/validate_test.go

    apiVersion: networking.istio.io/v1
    kind: VirtualService
    metadata:
      name: valid-virtual-service2
    spec:
      exportTo:
      - '.'
      hosts:
      - d
      http:
      - route:
        - destination:
            host: c
            subset: v1`
    	validVirtualService2JSON = `{
    "apiVersion": "networking.istio.io/v1alpha3",
    "kind": "VirtualService",
    "metadata": {
    	"name": "valid-virtual-service2"
    },
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 02 16:18:14 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe_test.go

    								Ready: true,
    							},
    						},
    					},
    				},
    			},
    			istioConfigs: []runtime.Object{
    				&clientnetworking.VirtualService{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "bookinfo",
    						Namespace: "default",
    					},
    					Spec: networking.VirtualService{
    						Hosts:    []string{"productpage"},
    						Gateways: []string{"fake-gw"},
    						Http: []*networking.HTTPRoute{
    							{
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 20:04:20 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

    #### Ingress
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. istioctl/pkg/validate/validate.go

    		}
    		if err = checkFields(un); err != nil {
    			return nil, err
    		}
    
    		// If object to validate has no namespace, set it (the validity of a CR
    		// may depend on its namespace; for example a VirtualService with exportTo=".")
    		if obj.Namespace == "" {
    			// If the user didn't specify --namespace, and is validating a CR with no namespace, use "default"
    			if defaultNamespace == "" {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 15 22:27:47 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top