Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for Authz (0.04 sec)

  1. istioctl/pkg/authz/authz.go

    		Example: `  # Check AuthorizationPolicy applied to pod httpbin-88ddbcfdd-nt5jb:
      istioctl x authz check httpbin-88ddbcfdd-nt5jb
    
      # Check AuthorizationPolicy applied to one pod under a deployment
      istioctl x authz check deployment/productpage-v1
    
      # Check AuthorizationPolicy from Envoy config dump file:
      istioctl x authz check -f httpbin_config_dump.json`,
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    //
    // Examples:
    //
    //	authorizer.group('').resource('pods').namespace('default').check('create').error()
    func Authz() cel.EnvOption {
    	return cel.Lib(authzLib)
    }
    
    var authzLib = &authz{}
    
    type authz struct{}
    
    func (*authz) LibraryName() string {
    	return "k8s.authz"
    }
    
    var authzLibraryDecls = map[string][]cel.FunctionOpt{
    	"path": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/validatingadmissionpolicy/authz.go

    Cici Huang <******@****.***> 1667856596 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. pkg/registry/admissionregistration/validatingadmissionpolicybinding/authz.go

    Mikalai Radchuk <******@****.***> 1714565943 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 12:19:03 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. samples/extauthz/local-ext-authz.yaml

    #   limitations under the License.
    
    # Example configurations for deploying ext-authz server locally with the application container in the same pod.
    
    # Define the service entry for the local ext-authz service on port 8000.
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: httpbin-ext-authz-http
    spec:
      hosts:
      - "ext-authz-http.local"
      endpoints:
      - address: "127.0.0.1"
      ports:
      - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/authz-b.yaml

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 941 bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/authz-a.yaml

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 402 bytes
    - Viewed (0)
  8. tests/integration/security/policy_attachment_only/testdata/authz/gateway-authz.yaml.tmpl

      - 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:
      - to:
        - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 847 bytes
    - Viewed (0)
  9. tests/integration/security/testdata/requestauthn/authn-authz.yaml.tmpl

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 699 bytes
    - Viewed (0)
  10. samples/extauthz/README.md

    ## Usage
    
    1. Deploy the Ext Authz service in a dedicated pod:
    
        ```console
        $ kubectl apply -f ext-authz.yaml
        service/ext-authz created
        deployment.apps/ext-authz created
        ```
    
        Note, you can also deploy the Ext Authz service locally with the application container in the same pod, see the example in `local-ext-authz.yaml`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top