github.com/kubernetes-incubator/kube-aws@v0.16.4/pkg/api/aws_iam.go (about)

     1  package api
     2  
     3  type KubernetesAuthentication struct {
     4  	AWSIAM AWSIAM `yaml:"awsIAM"`
     5  }
     6  
     7  type AWSIAM struct {
     8  	Enabled           bool   `yaml:"enabled"`
     9  	BinaryDownloadURL string `yaml:"binaryDownloadURL"`
    10  	ClusterID         string `yaml:"clusterID"`
    11  }
    12  
    13  func (a AWSIAM) BinaryStorePathes() []string {
    14  	return []string{
    15  		"files/worker/opt/bin/heptio-authenticator-aws",
    16  		"files/controller/opt/bin/heptio-authenticator-aws",
    17  	}
    18  }