Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for NotPorts (0.12 sec)

  1. tests/integration/security/testdata/authz/not-port.yaml.tmpl

    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}-allow
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
          - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 307 bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/authz-b.yaml

    metadata:
      name: allow-policy
    spec:
      action: ALLOW
      selector:
        matchLabels:
          "istio": {{.GatewayIstioLabel | default "ingressgateway"}}
      rules:
      - to:
        - operation:
            notPorts: ["100"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: deny-policy
    spec:
      action: DENY
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 941 bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/tcp/audit-both-http-tcp-in.yaml

        to:
        - operation:
            methods: ["method"]
            hosts: ["exact.com"]
            ports: ["80"]
            paths: ["/exact"]
            notMethods: ["not-method"]
            notHosts: ["not-exact.com"]
            notPorts: ["8000"]
            notPaths: ["/not-exact"]
        when:
          - key: "request.headers[X-header]"
            values: ["header"]
            notValues: ["not-header"]
          - key: "source.ip"
            values: ["10.10.10.10"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/tcp/custom-both-http-tcp-in.yaml

                methods: ["method"]
                hosts: ["exact.com"]
                ports: ["80"]
                paths: ["/exact"]
                notMethods: ["not-method"]
                notHosts: ["not-exact.com"]
                notPorts: ["8000"]
                notPaths: ["/not-exact"]
          when:
            - key: "request.headers[X-header]"
              values: ["header"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. 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)
  6. cluster/addons/calico-policy-controller/networkpolicies-crd.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
                                are specified it requires the Protocol match in the Rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.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
                                are specified it requires the Protocol match in the Rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

        - operation:
            hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
            notHosts: ["not-exact.com", "*.not-suffix.com", "not-prefix.*", "*"]
      - to:
        - operation:
            ports: ["80", "90"]
            notPorts: ["800", "900"]
      - to:
        - operation:
            paths: ["/exact", "/prefix/*", "*/suffix", "*"]
            notPaths: ["/not-exact", "/not-prefix/*", "*/not-suffix", "*"]
      - when:
        - key: "request.headers[X-header]"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/model_test.go

    - source:
        requestPrincipals: ["td-1/ns/foo/sa/sleep-3"]
        notRequestPrincipals: ["td-1/ns/foo/sa/sleep-4"]
    to:
    - operation:
        ports: ["8001"]
        notPorts: ["8002"]
    - operation:
        ports: ["8003"]
        notPorts: ["8004"]
    when:
    - key: "source.principal"
      values: ["td-1/ns/foo/sa/httpbin-1"]
      notValues: ["td-1/ns/foo/sa/httpbin-2"]
    - key: "destination.ip"
      values: ["10.0.0.1"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

        to:
        - operation:
            methods: ["method"]
            hosts: ["exact.com"]
            ports: ["80"]
            paths: ["/exact"]
            notMethods: ["not-method"]
            notHosts: ["not-exact.com"]
            notPorts: ["8000"]
            notPaths: ["/not-exact"]
        when:
          - key: "request.headers[X-header]"
            values: ["header"]
            notValues: ["not-header"]
          - key: "source.ip"
            values: ["10.10.10.10"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
Back to top