Auth: Fix function name (#100122)

Fix spelling
This commit is contained in:
Karl Persson
2025-02-05 15:32:22 +01:00
committed by GitHub
parent 64800f293e
commit 39d94eabcd
14 changed files with 30 additions and 30 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ func WithRequester(handler http.Handler) http.Handler {
} else if ok && info.GetName() == user.APIServerUser ||
slices.Contains(info.GetGroups(), user.SystemPrivilegedGroup) {
// For system:apiserver we use the identity of the service itself
ctx, _ = identity.WithServiceIdentitiy(ctx, 1)
ctx, _ = identity.WithServiceIdentity(ctx, 1)
req = req.WithContext(ctx)
} else {
klog.V(5).Info("unable to map the k8s user to grafana requester", "user", info)