Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for AuthorizationPolicy (0.25 sec)

  1. tests/integration/security/testdata/authz/custom-provider.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: custom-{{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: CUSTOM
      provider:
        name: "{{ .Provider.Name }}"
      rules:
      - to:
        - operation: # HTTP
            ports: [ "{{ (.To.PortForName `http`).WorkloadPort }}", "{{ (.To.PortForName `http2`).WorkloadPort }}" ]
            paths: [ "/custom" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 724 bytes
    - Viewed (0)
  2. releasenotes/notes/29414.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 29414
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 17:30:27 UTC 2020
    - 281 bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/workload-bad.yaml.tmpl

    # The following policy selects a non-exist workload
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}-bad
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
          "foo": "bla"
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 392 bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/simple-policy-multiple-td-aliases-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin
      namespace: foo
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      rules:
        - from:
            - source:
                principals: ["cluster.local/ns/rule[0]/sa/from[0]-principal[0]"]
            - source:
                principals: ["some-td/ns/rule[0]/sa/from[1]-principal[0]", "cluster.local/ns/rule[0]/sa/from[1]-principal[1]"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 485 bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/allow-principal.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
            - operation: # HTTP
                ports: [ "{{ (.To.PortForName `http`).WorkloadPort }}", "{{ (.To.PortForName `http2`).WorkloadPort }}" ]
                paths: [ "/allow" ]
                methods: [ "GET" ]
          from:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 998 bytes
    - Viewed (0)
  6. tests/integration/security/policy_attachment_only/testdata/authz/gateway-authz.yaml.tmpl

      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    --- 
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz-gateway-{{ .To.ServiceName }}
    spec:
      targetRef:
        name: {{ .To.ServiceName }}-gateway
        kind: Gateway
        group: gateway.networking.k8s.io
      action: ALLOW
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 847 bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/not-method.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    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
    - 268 bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/not-port.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    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)
  9. releasenotes/notes/21340.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 21340
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 30 00:00:33 UTC 2020
    - 217 bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/path-templating.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 314 bytes
    - Viewed (0)
Back to top