Documentation
¶
Index ¶
- func New(cluster *types.Cluster, tok token.Token) (*kubernetes.Clientset, error)
- type AwsConfig
- type EKSCluster
- type Generator
- type GeneratorType
- func (g *GeneratorType) DescribeCluster(e *eks.Client, cluster string) (*eks.DescribeClusterOutput, error)
- func (g *GeneratorType) GenToken(cluster *string) (token.Token, error)
- func (g *GeneratorType) TestCluster(r *types.Cluster, tok token.Token) error
- func (g *GeneratorType) WriteCA(a AwsConfig, e *eks.DescribeClusterOutput) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type AwsConfig ¶
type AwsConfig struct { J janitorconfig.EnvConfig Token string }
type EKSCluster ¶
aws specific EKS logic.
type Generator ¶
type Generator interface { DescribeCluster(*eks.Client, string) (*eks.DescribeClusterOutput, error) GenToken(*string) (token.Token, error) TestCluster(*types.Cluster, token.Token) error WriteCA(AwsConfig, *eks.DescribeClusterOutput) string }
Generator interface which describes the k8s master API server we connect to
type GeneratorType ¶
GeneratorType is used
func (*GeneratorType) DescribeCluster ¶
func (g *GeneratorType) DescribeCluster(e *eks.Client, cluster string) (*eks.DescribeClusterOutput, error)
DescribeCluster calls the AWS SDK EKS API to get details on the cluster
func (*GeneratorType) GenToken ¶
func (g *GeneratorType) GenToken(cluster *string) (token.Token, error)
GenToken will get the EKS cluster oauth2 token. Consider refresh flow instead and make token private and accessible via function call.
func (*GeneratorType) TestCluster ¶
TestCluster is a tough function to test as it makes a call to Nodes().
func (*GeneratorType) WriteCA ¶
func (g *GeneratorType) WriteCA(a AwsConfig, e *eks.DescribeClusterOutput) string
WriteCA - need to pass in another interface if i wanna mock this.
Click to show internal directories.
Click to hide internal directories.