Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenKubeConfigForKSA ¶
GenKubeConfigForKSA generates a KubeConfig to access the cluster using a Kubernetes service account
func GenKubeConfigForUser ¶
GenKubeConfigForUser generates a KubeConfig to access the cluster using a third-party identity
Types ¶
type ClusterCredentials ¶
type ClusterCredentials struct { // AccessToken is the access token to access the cluster AccessToken string `json:"access_token"` // TokenExpiry is the expiry time of the access token, in RFC3339 format TokenExpiry string `json:"token_expiry"` }
ClusterCredentials contains the access token to the cluster and its expiry time
type ConnectionHelper ¶
type ConnectionHelper interface { // Credentials contain the credentials used for the daemon to access the cluster. // This is output to stdout, for Kubernetes clients to use. Credentials() (ClusterCredentials, error) // KubeConfig yields the config used to create Kubernetes clientset. KubeConfig() (*rest.Config, error) }
ConnectionHelper provides the identity and config used to connect to the cluster
type WorkloadInfo ¶
type WorkloadInfo interface { // Name is the name of the workload Name() (string, bool) // Hostname is the hostname or DNS address of the workload Hostname() (string, bool) // IP is the IP used to access this workload from the cluster IP() (string, bool) // Labels are one or more labels associated with the workload Labels() map[string]string // Region associated with the endpoint. Region() (string, bool) // Zone associated with the endpoint. Zone() (string, bool) }
WorkloadInfo represents basic information of this workload
Click to show internal directories.
Click to hide internal directories.