Documentation ¶
Index ¶
- func ClusterClientset(config *rest.Config) (*client.Clientset, error)
- func ClusterRegistryClientset(config *rest.Config) (*crclient.Clientset, error)
- func ClusterServiceAccountName(joiningClusterName, hostClusterName string) string
- func CommonClusterRoleName(serviceAccountName string) string
- func FedClientset(config *rest.Config) (*fedclient.Clientset, error)
- func HostClientset(config *rest.Config) (*client.Clientset, error)
- func RoleName(serviceAccountName string) string
- type FedConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ClusterClientset ¶
ClusterClientset provides a kubernetes API compliant clientset to communicate with the joining cluster's kubernetes API server.
func ClusterRegistryClientset ¶
ClusterRegistryClientset provides a cluster registry API compliant clientset to communicate with the cluster registry.
func ClusterServiceAccountName ¶
ClusterServiceAccountName returns the name of a service account whose credentials are used by the host cluster to access the client cluster.
func CommonClusterRoleName ¶ added in v0.0.2
CommonClusterRoleName returns the name of a ClusterRole and its associated ClusterRoleBinding that is used to allow the service account to check the health of the cluster and list nodes.
func FedClientset ¶
FedClientset provides a federation API compliant clientset to communicate with the federation API server.
func HostClientset ¶
HostClientset provides a kubernetes API compliant clientset to communicate with the host cluster's kubernetes API server.
Types ¶
type FedConfig ¶
type FedConfig interface { HostConfig(context, kubeconfigPath string) (*rest.Config, error) ClusterConfig(context, kubeconfigPath string) (*rest.Config, error) }
FedConfig provides a rest config based on the filesystem kubeconfig (via pathOptions) and context in order to talk to the host kubernetes cluster and the joining kubernetes cluster.
func NewFedConfig ¶
func NewFedConfig(pathOptions *clientcmd.PathOptions) FedConfig
NewFedConfig creates a fedConfig for `kubefed2` commands.