Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Info ¶
type Info struct {
// IsAdmin indicates whether the user represented by this struct has been
// verified as the Kargo API server's admin user. When this is true, all
// other fields should have an empty value.
IsAdmin bool
// Claims is a map of claims from an identity provider of a
// non-admin user whose credentials have
// been successfully verified by the server's authentication middleware.
Claims map[string]any
// BearerToken is the raw bearer token presented in the Authorization header
// of any request requiring authentication.
BearerToken string
// ServiceAccountsByNamespace is the mapping of namespace names to sets of
// ServiceAccounts that a user has been mapped to.
ServiceAccountsByNamespace map[string]map[types.NamespacedName]struct{}
// UsernameClaim identifies from which specific claim the user's uniquely
// identifying username was extracted from.
UsernameClaim string
// Username is the username of the user. This is often the email address
// of the user, but may be different depending on configuration.
Username string
}
Info represents information about an API user. This is bound to the context by the server's authentication middleware and later retrieved and used to create an ad-hoc Kubernetes client that has the correct level of permissions for the user.
Click to show internal directories.
Click to hide internal directories.