Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 583 for authorizer (0.23 sec)

  1. pkg/apis/admissionregistration/types.go

    	//  For example, a variable named 'foo' can be accessed as 'variables.foo'
    	// - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
    	//   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
    	// - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
    	//   request resource.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    // In addition the method lazily initializes a generic plugin that is appended to the list of pluginInitializers
    // note this method uses:
    //
    //	genericconfig.Authorizer
    func (a *AdmissionOptions) ApplyTo(
    	c *server.Config,
    	informers informers.SharedInformerFactory,
    	kubeClient kubernetes.Interface,
    	dynamicClient dynamic.Interface,
    	features featuregate.FeatureGate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    	ParamsVarName                    = "params"
    	RequestVarName                   = "request"
    	NamespaceVarName                 = "namespaceObject"
    	AuthorizerVarName                = "authorizer"
    	RequestResourceAuthorizerVarName = "authorizer.requestResource"
    	VariableVarName                  = "variables"
    )
    
    // BuildRequestType generates a DeclType for AdmissionRequest. This may be replaced with a utility that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    its lazily evaluated value.\n  For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n  See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n  request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/audit/request.go

    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/klog/v2"
    )
    
    const (
    	maxUserAgentLength      = 1024
    	userAgentTruncateSuffix = "...TRUNCATED"
    )
    
    func LogRequestMetadata(ctx context.Context, req *http.Request, requestReceivedTimestamp time.Time, level auditinternal.Level, attribs authorizer.Attributes) {
    	ac := AuditContextFrom(ctx)
    	if !ac.Enabled() {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    its lazily evaluated value.\n  For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n  See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz\n- 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the\n  request resource.\n\nThe `apiVersion`, `kind`, `metadata.name` and `metadata.generateName`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
      // 'oldObject' - The existing object. The value is null for CREATE requests.
      // 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	AuditBackend audit.Backend
    
    	// Authorizer determines whether a user is allowed to make a certain request. The Handler does a preliminary
    	// authorization check using the request URI but it may be necessary to make additional checks, such as in
    	// the create-on-update case
    	Authorizer authorizer.Authorizer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/certs_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This file is an exact copy of
    // plugin/pkg/auth/authorizer/webhook/certs_test.go
    
    package webhook
    
    var caCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDCzCCAfOgAwIBAgIJAKK9m2Cfg5uhMA0GCSqGSIb3DQEBCwUAMBsxGTAXBgNV
    BAMMEHdlYmhvb2tfYXV0aHpfY2EwIBcNMTYwMjE2MjM0NDI4WhgPMjI4OTEyMDEy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 22 21:47:17 UTC 2020
    - 8.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    	// - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
    	//   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
    	// - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
    	//   request resource.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top