Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 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. 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)
  7. 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