mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
9a849b1bb7
* changing package to k3s-io Signed-off-by: Luther Monson <luther.monson@gmail.com> Co-authored-by: Derek Nola <derek.nola@suse.com>
31 lines
871 B
Go
31 lines
871 B
Go
package control
|
|
|
|
import (
|
|
"github.com/k3s-io/k3s/pkg/authenticator/basicauth"
|
|
"github.com/k3s-io/k3s/pkg/authenticator/passwordfile"
|
|
"k8s.io/apiserver/pkg/authentication/authenticator"
|
|
"k8s.io/apiserver/pkg/authentication/group"
|
|
"k8s.io/apiserver/pkg/authentication/request/union"
|
|
)
|
|
|
|
func basicAuthenticator(basicAuthFile string) (authenticator.Request, error) {
|
|
if basicAuthFile == "" {
|
|
return nil, nil
|
|
}
|
|
basicAuthenticator, err := passwordfile.NewCSV(basicAuthFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return basicauth.New(basicAuthenticator), nil
|
|
}
|
|
|
|
func combineAuthenticators(auths ...authenticator.Request) authenticator.Request {
|
|
var authenticators []authenticator.Request
|
|
for _, auth := range auths {
|
|
if auth != nil {
|
|
authenticators = append(authenticators, auth)
|
|
}
|
|
}
|
|
return group.NewAuthenticatedGroupAdder(union.New(authenticators...))
|
|
}
|