Documentation ¶
Index ¶
- Constants
- Variables
- func CreateScheme() *apiruntime.Scheme
- func InClusterConfigClusterName() string
- func RestConfig() (*rest.Config, string, error)
- type ClientGetter
- type ClusterConfig
- type ConfigGetter
- type DefaultClientGetter
- type DefaultKubeGetter
- type ImpersonatingConfigGetter
- type Kube
- type KubeGetter
- type KubeHTTP
- type Resource
- type WegoConfig
Constants ¶
const FluxNamespace = "flux-system"
const WeGOCRDName = "apps.wego.weave.works"
const (
WegoConfigMapName = "weave-gitops-config"
)
Variables ¶
var ErrNamespaceNotFound = errors.New("namespace not found")
var ( //ErrWegoConfigNotFound indicates weave gitops config could not be found ErrWegoConfigNotFound = errors.New("Wego Config not found") )
var InClusterConfig func() (*rest.Config, error) = func() (*rest.Config, error) { return rest.InClusterConfig() }
InClusterConfig defines a function for checking if this code is executing in kubernetes. This can be overriden if needed.
Functions ¶
func CreateScheme ¶ added in v0.2.0
func CreateScheme() *apiruntime.Scheme
func InClusterConfigClusterName ¶ added in v0.7.0
func InClusterConfigClusterName() string
Types ¶
type ClientGetter ¶ added in v0.7.0
ClientGetter implementations should create a Kubernetes client from a context.
func NewDefaultClientGetter ¶ added in v0.7.0
func NewDefaultClientGetter(configGetter ConfigGetter, clusterName string, schemeBuilder ...func(*runtime.Scheme) error) ClientGetter
NewDefaultClientGetter creates a new DefaultClientGetter
type ClusterConfig ¶ added in v0.7.0
ClusterConfig is used to hold the default *rest.Config and the cluster name.
type ConfigGetter ¶ added in v0.7.0
ConfigGetter implementations should extract the details from a context and create a *rest.Config for use in clients.
type DefaultClientGetter ¶ added in v0.7.0
type DefaultClientGetter struct {
// contains filtered or unexported fields
}
DefaultClientGetter implements the ClientGetter interface and uses a ConfigGetter to get a *rest.Config and create a Kubernetes client.
type DefaultKubeGetter ¶ added in v0.7.0
type DefaultKubeGetter struct {
// contains filtered or unexported fields
}
DefaultKubeGetter implements the KubeGetter interface and uses a ConfigGetter to get a *rest.Config and create a Kube client.
type ImpersonatingConfigGetter ¶ added in v0.7.0
type ImpersonatingConfigGetter struct {
// contains filtered or unexported fields
}
ImpersonatingConfigGetter is an implementation of the ConfigGetter interface that returns configs based on a base one. It inspects the context for a principal and if it finds one, it configures the *rest.Config to impersonate that principal. Otherwise it returns a copy of the base config.
func NewImpersonatingConfigGetter ¶ added in v0.7.0
func NewImpersonatingConfigGetter(cfg *rest.Config, insecure bool) *ImpersonatingConfigGetter
NewImpersonatingConfigGetter creates and returns a ConfigGetter with a known config.
type Kube ¶
type KubeGetter ¶ added in v0.7.0
KubeGetter implementations should create a Kube client from a context.
func NewDefaultKubeGetter ¶ added in v0.7.0
func NewDefaultKubeGetter(configGetter ConfigGetter, clusterName string) KubeGetter
NewDefaultKubeGetter creates a new DefaultKubeGetter
type KubeHTTP ¶ added in v0.2.0
type KubeHTTP struct { Client client.Client ClusterName string DynClient dynamic.Interface RestMapper meta.RESTMapper }
This is an alternative implementation of the kube.Kube interface, specifically designed to query the K8s API directly instead of relying on `kubectl` to be present in the PATH.
func (*KubeHTTP) GetClusterName ¶ added in v0.2.0
func (*KubeHTTP) GetWegoConfig ¶ added in v0.6.0
GetWegoConfig fetches the wego config saved in the cluster in a given namespace. If an empty namespace is passed it will search in all namespaces and return the first one it finds.