Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allow_service_account (0.3 sec)

  1. samples/extauthz/README.md

    will allow the request if it includes the header `x-ext-authz: allow` or if the service account of the source workload is `a`.
    Note that `a` is just a default value for testing. It can be changed with the flag `-allow_service_account` when running the ext authz server.
    
    ## Usage
    
    1. Deploy the Ext Authz service in a dedicated pod:
    
        ```console
        $ kubectl apply -f ext-authz.yaml
        service/ext-authz created
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. samples/extauthz/cmd/extauthz/main.go

    	overrideGRPCValue = "grpc-additional-header-override-value"
    	resultAllowed     = "allowed"
    	resultDenied      = "denied"
    )
    
    var (
    	serviceAccount = flag.String("allow_service_account", "a",
    		"allowed service account, matched against the service account in the source principal from the client certificate")
    	httpPort = flag.String("http", "8000", "HTTP server port")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top