FlowSchema flowcontrol.apiserver.k8s.io/v1
FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher".
Fields
- apiVersion:
flowcontrol.apiserver.k8s.io/v1 - kind:
FlowSchema - metadata (ObjectMeta)
-
metadatais the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - spec (FlowSchemaSpec)
-
specis the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status - status (FlowSchemaStatus)
-
statusis the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
FlowSchemaSpec
FlowSchemaSpec describes how the FlowSchema's specification looks like.
- priorityLevelConfiguration (PriorityLevelConfigurationReference)
-
priorityLevelConfigurationshould reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required.PriorityLevelConfigurationReference contains information that points to the "request-priority" being used.
- priorityLevelConfiguration.name (string)
nameis the name of the priority level configuration being referenced Required.
- distinguisherMethod (FlowDistinguisherMethod)
-
distinguisherMethoddefines how to compute the flow distinguisher for requests that match this schema.nilspecifies that the distinguisher is disabled and thus will always be the empty string.FlowDistinguisherMethod specifies the method of a flow distinguisher.
- distinguisherMethod.type (string)
typeis the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required.
- matchingPrecedence (integer)
-
matchingPrecedenceis used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default. - rules ([]PolicyRulesWithSubjects)
-
rulesdescribes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.
PolicyRulesWithSubjects
PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.
- subjects ([]Subject)
-
subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.
- nonResourceRules ([]NonResourcePolicyRule)
-
nonResourceRulesis a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
- nonResourceRules.nonResourceURLs ([]string)
nonResourceURLsis a set of url prefixes that a user should have access to and may not be empty. For example:- "/healthz" is legal
- "/hea*" is illegal
- "/hea" is legal but matches nothing
- "/hea/*" also matches nothing
- "/healthz/" matches all per-component health checks. "" matches all non-resource urls. if it is present, it must be the only entry. Required.
- nonResourceRules.verbs ([]string)
verbsis a list of matching verbs and may not be empty. "*" matches all verbs. If it is present, it must be the only entry. Required.
- resourceRules ([]ResourcePolicyRule)
-
resourceRulesis a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one ofresourceRulesandnonResourceRuleshas to be non-empty.ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e.,
Namespace=="") and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request's namespace.- resourceRules.apiGroups ([]string)
apiGroupsis a list of matching API groups and may not be empty. "*" matches all API groups and, if present, must be the only entry. Required.- resourceRules.resources ([]string)
resourcesis a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ "services", "nodes/status" ]. This list may not be empty. "*" matches all resources and, if present, must be the only entry. Required.- resourceRules.verbs ([]string)
verbsis a list of matching verbs and may not be empty. "*" matches all verbs and, if present, must be the only entry. Required.- resourceRules.clusterScope (boolean)
clusterScopeindicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then thenamespacesfield must contain a non-empty list.- resourceRules.namespaces ([]string)
namespacesis a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains "". Note that "" matches any specified namespace but does not match a request that does not specify a namespace (see theclusterScopefield for that). This list may be empty, but only ifclusterScopeis true.
Subject
Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.
- kind (string)
-
kindindicates which one of the other fields is non-empty. Required - group (GroupSubject)
-
groupmatches based on user group name.GroupSubject holds detailed information for group-kind subject.
- group.name (string)
name is the user group that matches, or "*" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.
- serviceAccount (ServiceAccountSubject)
-
serviceAccountmatches ServiceAccounts.ServiceAccountSubject holds detailed information for service-account-kind subject.
- serviceAccount.name (string)
nameis the name of matching ServiceAccount objects, or "*" to match regardless of name. Required.- serviceAccount.namespace (string)
namespaceis the namespace of matching ServiceAccount objects. Required.
- user (UserSubject)
-
usermatches based on username.UserSubject holds detailed information for user-kind subject.
- user.name (string)
nameis the username that matches, or "*" to match all usernames. Required.
FlowSchemaStatus
FlowSchemaStatus represents the current state of a FlowSchema.
- conditions ([]FlowSchemaCondition)
-
conditionsis a list of the current states of FlowSchema.
FlowSchemaCondition
FlowSchemaCondition describes conditions for a FlowSchema.
- lastTransitionTime (Time)
-
lastTransitionTimeis the last time the condition transitioned from one status to another. - message (string)
-
messageis a human-readable message indicating details about last transition. - reason (string)
-
reasonis a unique, one-word, CamelCase reason for the condition's last transition. - status (string)
-
statusis the status of the condition. Can be True, False, Unknown. Required. - type (string)
-
typeis the type of the condition. Required.
FlowSchemaList
FlowSchemaList is a list of FlowSchema objects.
- apiVersion:
flowcontrol.apiserver.k8s.io/v1 - kind:
FlowSchemaList - metadata (ListMeta)
-
metadatais the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata - items ([]FlowSchema)
-
itemsis a list of FlowSchemas.