Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for NotHosts (0.16 sec)

  1. pkg/config/validation/validation_test.go

    							},
    						},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "NotHosts-empty",
    			in: &security_beta.AuthorizationPolicy{
    				Rules: []*security_beta.Rule{
    					{
    						To: []*security_beta.Rule_To{
    							{
    								Operation: &security_beta.Operation{
    									NotHosts: []string{"host", ""},
    								},
    							},
    						},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
                                  notHosts:
                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
                                  notHosts:
                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
                                  notHosts:
                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    			rules := ps.VirtualServicesForGateway(tt.proxyNs, tt.gateway)
    			gotHosts := make([]string, 0)
    			for _, r := range rules {
    				vs := r.Spec.(*networking.VirtualService)
    				gotHosts = append(gotHosts, vs.Hosts...)
    			}
    			if !reflect.DeepEqual(gotHosts, tt.wantHosts) {
    				t.Errorf("want %+v, got %+v", tt.wantHosts, gotHosts)
    			}
    		})
    	}
    }
    
    func TestInitVirtualService(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: Optional. items: properties: operation: description: Operation specifies the operation of a request. properties: hosts: description: Optional. items: type: string type: array methods: description: Optional. items: type: string type: array notHosts: description: Optional. items: type: string type: array notMethods: description: Optional. items: type: string type: array notPaths: description: Optional. items: type: string type: array notPorts: description: Optional. items: type: string type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    						t.Fatalf("route %q not found, have %v", tt.routeName, xdstest.MapKeys(r))
    					}
    					gotHosts := xdstest.ExtractVirtualHosts(vh)
    					for wk, wv := range exp {
    						got := gotHosts[wk]
    						if !reflect.DeepEqual(wv, got) {
    							t.Errorf("%q: wanted %v, got %v (had %v)", wk, wv, got, xdstest.MapKeys(gotHosts))
    						}
    					}
    				})
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top