package group

import "k8s.io/apiserver/pkg/authentication/group"

Index

Functions

func NewAuthenticatedGroupAdder

func NewAuthenticatedGroupAdder(auth authenticator.Request) authenticator.Request

NewAuthenticatedGroupAdder wraps a request authenticator, and adds the system:authenticated group when appropriate. Authentication must succeed, the user must not be system:anonymous, the groups system:authenticated or system:unauthenticated must not be present

func NewGroupAdder

func NewGroupAdder(auth authenticator.Request, groups []string) authenticator.Request

NewGroupAdder wraps a request authenticator, and adds the specified groups to the returned user when authentication succeeds

func NewTokenGroupAdder

func NewTokenGroupAdder(auth authenticator.Token, groups []string) authenticator.Token

NewTokenGroupAdder wraps a token authenticator, and adds the specified groups to the returned user when authentication succeeds

Types

type AuthenticatedGroupAdder

type AuthenticatedGroupAdder struct {
	// Authenticator is delegated to make the authentication decision
	Authenticator authenticator.Request
}

AuthenticatedGroupAdder adds system:authenticated group when appropriate

func (*AuthenticatedGroupAdder) AuthenticateRequest

func (g *AuthenticatedGroupAdder) AuthenticateRequest(req *http.Request) (*authenticator.Response, bool, error)

type GroupAdder

type GroupAdder struct {
	// Authenticator is delegated to make the authentication decision
	Authenticator authenticator.Request
	// Groups are additional groups to add to the user.Info from a successful authentication
	Groups []string
}

GroupAdder adds groups to an authenticated user.Info

func (*GroupAdder) AuthenticateRequest

func (g *GroupAdder) AuthenticateRequest(req *http.Request) (*authenticator.Response, bool, error)

type TokenGroupAdder

type TokenGroupAdder struct {
	// Authenticator is delegated to make the authentication decision
	Authenticator authenticator.Token
	// Groups are additional groups to add to the user.Info from a successful authentication
	Groups []string
}

TokenGroupAdder adds groups to an authenticated user.Info

func (*TokenGroupAdder) AuthenticateToken

func (g *TokenGroupAdder) AuthenticateToken(ctx context.Context, token string) (*authenticator.Response, bool, error)

Source Files

authenticated_group_adder.go group_adder.go token_group_adder.go

Version
v0.33.0 (latest)
Published
Apr 23, 2025
Platform
linux/amd64
Imports
4 packages
Last checked
1 hour ago

Tools for package owners.