Documentation
      ¶
    
    
  
    
  
    Index ¶
- func VethNameForWorkload(workload string) string
 - type KubeClient
 - func (c *KubeClient) Apply(d *model.KVPair) (*model.KVPair, error)
 - func (c *KubeClient) Create(d *model.KVPair) (*model.KVPair, error)
 - func (c *KubeClient) Delete(d *model.KVPair) error
 - func (c *KubeClient) Get(k model.Key) (*model.KVPair, error)
 - func (c *KubeClient) List(l model.ListInterface) ([]*model.KVPair, error)
 - func (c *KubeClient) Syncer(callbacks api.SyncerCallbacks) api.Syncer
 - func (c *KubeClient) Update(d *model.KVPair) (*model.KVPair, error)
 
- type KubeConfig
 
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type KubeClient ¶
type KubeClient struct {
	// contains filtered or unexported fields
}
    func NewKubeClient ¶
func NewKubeClient(kc *KubeConfig) (*KubeClient, error)
func (*KubeClient) Apply ¶
Set an existing entry in the datastore. This ignores whether an entry already exists.
func (*KubeClient) Create ¶
Create an entry in the datastore. This errors if the entry already exists.
func (*KubeClient) Delete ¶
func (c *KubeClient) Delete(d *model.KVPair) error
Delete an entry in the datastore. This is a no-op when using the k8s backend.
func (*KubeClient) Get ¶
Get an entry from the datastore. This errors if the entry does not exist.
func (*KubeClient) List ¶
func (c *KubeClient) List(l model.ListInterface) ([]*model.KVPair, error)
List entries in the datastore. This may return an empty list of there are no entries matching the request in the ListInterface.
func (*KubeClient) Syncer ¶
func (c *KubeClient) Syncer(callbacks api.SyncerCallbacks) api.Syncer
type KubeConfig ¶
type KubeConfig struct {
	Kubeconfig     string `json:"kubeconfig" envconfig:"KUBECONFIG" default:""`
	K8sAPIEndpoint string `json:"k8sAPIEndpoint" envconfig:"K8S_API_ENDPOINT" default:""`
	K8sKeyFile     string `json:"k8sKeyFile" envconfig:"K8S_KEY_FILE" default:""`
	K8sCertFile    string `json:"k8sCertFile" envconfig:"K8S_CERT_FILE" default:""`
	K8sCAFile      string `json:"k8sCAFile" envconfig:"K8S_CA_FILE" default:""`
	K8sAPIToken    string `json:"k8sAPIToken" envconfig:"K8S_API_TOKEN" default:""`
}
    
      
      Source Files
      ¶
    
- conversion.go
 - k8s.go
 - syncer.go
 
 Click to show internal directories. 
   Click to hide internal directories.