package modes
import "k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
Index ¶
Constants ¶
const ( // ModeAlwaysAllow is the mode to set all requests as authorized ModeAlwaysAllow string = "AlwaysAllow" // ModeAlwaysDeny is the mode to set no requests as authorized ModeAlwaysDeny string = "AlwaysDeny" // ModeABAC is the mode to use Attribute Based Access Control to authorize ModeABAC string = "ABAC" // ModeWebhook is the mode to make an external webhook call to authorize ModeWebhook string = "Webhook" // ModeRBAC is the mode to use Role Based Access Control to authorize ModeRBAC string = "RBAC" // ModeNode is an authorization mode that authorizes API requests made by kubelets. ModeNode string = "Node" )
Variables ¶
var AuthorizationModeChoices = []string{ModeAlwaysAllow, ModeAlwaysDeny, ModeABAC, ModeWebhook, ModeRBAC, ModeNode}
AuthorizationModeChoices is the list of supported authorization modes
Functions ¶
func IsValidAuthorizationMode ¶
IsValidAuthorizationMode returns true if the given authorization mode is a valid one for the apiserver
Source Files ¶
modes.go
- Version
- v1.21.7
- Published
- Nov 17, 2021
- Platform
- js/wasm
- Imports
- 1 packages
- Last checked
- 37 seconds ago –
Tools for package owners.