Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for NotPorts (0.16 sec)

  1. prow/config/calico.yaml

                                field.
                              items:
                                type: string
                              type: array
                            notPorts:
                              description: NotPorts is the negated version of the Ports
                                field. Since only some protocols have ports, if any ports
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/model/model.go

    	}
    
    	for _, to := range r.To {
    		merged := basePermission.copy()
    		if o := to.Operation; o != nil {
    			merged.insertFront(destPortGenerator{}, attrDestPort, o.Ports, o.NotPorts)
    			merged.insertFront(pathGenerator{}, pathMatcher, o.Paths, o.NotPaths)
    			merged.insertFront(methodGenerator{}, methodHeader, o.Methods, o.NotMethods)
    			merged.insertFront(hostGenerator{}, hostHeader, o.Hosts, o.NotHosts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    			// For DENY they will always match, so it is more restrictive
    			return nil
    		}
    		match := &security.Match{
    			DestinationPorts:    stringToPort(op.Ports),
    			NotDestinationPorts: stringToPort(op.NotPorts),
    		}
    		toMatches = append(toMatches, match)
    	}
    	fromMatches := []*security.Match{}
    	for _, from := range rule.From {
    		op := from.Source
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    					errs = appendErrors(errs, security.CheckEmptyValues("Paths", op.Paths))
    					errs = appendErrors(errs, security.CheckEmptyValues("Hosts", op.Hosts))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotPorts", op.NotPorts))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotMethods", op.NotMethods))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotPaths", op.NotPaths))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

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

                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
                                  notPorts:
                                    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)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
                                  notPorts:
                                    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)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                    description: Optional.
                                    items:
                                      type: string
                                    type: array
                                  notPorts:
                                    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)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    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: array paths: description: Optional. items: type: string type: array ports: description: Optional. items: type: string type: array type: object type: object type: array when: description: Optional....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top