Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NotPorts (0.17 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

                notMethods: ["not-method", "not-method-prefix-*", "*-not-suffix-method", "*"]
                notHosts: ["not-exact.com", "*.not-suffix.com", "not-prefix.*", "*"]
                notPorts: ["8000", "9000"]
                notPaths: ["/not-exact", "/not-prefix/*", "*/not-suffix", "*", "/not-path/template/{*}", "/{**}/not-path/template"]
          when:
            - key: "request.headers[X-header]"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  7. 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)
Back to top