github.com/alkar/terraform@v0.9.6-0.20170517124458-a4cddf6ebf59/builtin/providers/kubernetes/provider.go (about)

     1  package kubernetes
     2  
     3  import (
     4  	"bytes"
     5  	"fmt"
     6  	"log"
     7  	"os"
     8  
     9  	"github.com/hashicorp/terraform/helper/schema"
    10  	"github.com/hashicorp/terraform/terraform"
    11  	"github.com/mitchellh/go-homedir"
    12  	kubernetes "k8s.io/kubernetes/pkg/client/clientset_generated/release_1_5"
    13  	"k8s.io/kubernetes/pkg/client/restclient"
    14  	"k8s.io/kubernetes/pkg/client/unversioned/clientcmd"
    15  	clientcmdapi "k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api"
    16  )
    17  
    18  func Provider() terraform.ResourceProvider {
    19  	return &schema.Provider{
    20  		Schema: map[string]*schema.Schema{
    21  			"host": {
    22  				Type:        schema.TypeString,
    23  				Optional:    true,
    24  				DefaultFunc: schema.EnvDefaultFunc("KUBE_HOST", ""),
    25  				Description: "The hostname (in form of URI) of Kubernetes master.",
    26  			},
    27  			"username": {
    28  				Type:        schema.TypeString,
    29  				Optional:    true,
    30  				DefaultFunc: schema.EnvDefaultFunc("KUBE_USER", ""),
    31  				Description: "The username to use for HTTP basic authentication when accessing the Kubernetes master endpoint.",
    32  			},
    33  			"password": {
    34  				Type:        schema.TypeString,
    35  				Optional:    true,
    36  				DefaultFunc: schema.EnvDefaultFunc("KUBE_PASSWORD", ""),
    37  				Description: "The password to use for HTTP basic authentication when accessing the Kubernetes master endpoint.",
    38  			},
    39  			"insecure": {
    40  				Type:        schema.TypeBool,
    41  				Optional:    true,
    42  				DefaultFunc: schema.EnvDefaultFunc("KUBE_INSECURE", false),
    43  				Description: "Whether server should be accessed without verifying the TLS certificate.",
    44  			},
    45  			"client_certificate": {
    46  				Type:        schema.TypeString,
    47  				Optional:    true,
    48  				DefaultFunc: schema.EnvDefaultFunc("KUBE_CLIENT_CERT_DATA", ""),
    49  				Description: "PEM-encoded client certificate for TLS authentication.",
    50  			},
    51  			"client_key": {
    52  				Type:        schema.TypeString,
    53  				Optional:    true,
    54  				DefaultFunc: schema.EnvDefaultFunc("KUBE_CLIENT_KEY_DATA", ""),
    55  				Description: "PEM-encoded client certificate key for TLS authentication.",
    56  			},
    57  			"cluster_ca_certificate": {
    58  				Type:        schema.TypeString,
    59  				Optional:    true,
    60  				DefaultFunc: schema.EnvDefaultFunc("KUBE_CLUSTER_CA_CERT_DATA", ""),
    61  				Description: "PEM-encoded root certificates bundle for TLS authentication.",
    62  			},
    63  			"config_path": {
    64  				Type:        schema.TypeString,
    65  				Optional:    true,
    66  				DefaultFunc: schema.EnvDefaultFunc("KUBE_CONFIG", "~/.kube/config"),
    67  				Description: "Path to the kube config file, defaults to ~/.kube/config",
    68  			},
    69  			"config_context": {
    70  				Type:        schema.TypeString,
    71  				Optional:    true,
    72  				DefaultFunc: schema.EnvDefaultFunc("KUBE_CTX", ""),
    73  			},
    74  			"config_context_auth_info": {
    75  				Type:        schema.TypeString,
    76  				Optional:    true,
    77  				DefaultFunc: schema.EnvDefaultFunc("KUBE_CTX_AUTH_INFO", ""),
    78  				Description: "",
    79  			},
    80  			"config_context_cluster": {
    81  				Type:        schema.TypeString,
    82  				Optional:    true,
    83  				DefaultFunc: schema.EnvDefaultFunc("KUBE_CTX_CLUSTER", ""),
    84  				Description: "",
    85  			},
    86  		},
    87  
    88  		ResourcesMap: map[string]*schema.Resource{
    89  			"kubernetes_config_map":              resourceKubernetesConfigMap(),
    90  			"kubernetes_limit_range":             resourceKubernetesLimitRange(),
    91  			"kubernetes_namespace":               resourceKubernetesNamespace(),
    92  			"kubernetes_persistent_volume":       resourceKubernetesPersistentVolume(),
    93  			"kubernetes_persistent_volume_claim": resourceKubernetesPersistentVolumeClaim(),
    94  			"kubernetes_resource_quota":          resourceKubernetesResourceQuota(),
    95  			"kubernetes_secret":                  resourceKubernetesSecret(),
    96  			"kubernetes_service":                 resourceKubernetesService(),
    97  		},
    98  		ConfigureFunc: providerConfigure,
    99  	}
   100  }
   101  
   102  func providerConfigure(d *schema.ResourceData) (interface{}, error) {
   103  	// Config file loading
   104  	cfg, err := tryLoadingConfigFile(d)
   105  	if err != nil {
   106  		return nil, err
   107  	}
   108  	if cfg == nil {
   109  		cfg = &restclient.Config{}
   110  	}
   111  
   112  	// Overriding with static configuration
   113  	cfg.UserAgent = fmt.Sprintf("HashiCorp/1.0 Terraform/%s", terraform.VersionString())
   114  
   115  	if v, ok := d.GetOk("host"); ok {
   116  		cfg.Host = v.(string)
   117  	}
   118  	if v, ok := d.GetOk("username"); ok {
   119  		cfg.Username = v.(string)
   120  	}
   121  	if v, ok := d.GetOk("password"); ok {
   122  		cfg.Password = v.(string)
   123  	}
   124  	if v, ok := d.GetOk("insecure"); ok {
   125  		cfg.Insecure = v.(bool)
   126  	}
   127  	if v, ok := d.GetOk("cluster_ca_certificate"); ok {
   128  		cfg.CAData = bytes.NewBufferString(v.(string)).Bytes()
   129  	}
   130  	if v, ok := d.GetOk("client_certificate"); ok {
   131  		cfg.CertData = bytes.NewBufferString(v.(string)).Bytes()
   132  	}
   133  	if v, ok := d.GetOk("client_key"); ok {
   134  		cfg.KeyData = bytes.NewBufferString(v.(string)).Bytes()
   135  	}
   136  
   137  	k, err := kubernetes.NewForConfig(cfg)
   138  	if err != nil {
   139  		return nil, fmt.Errorf("Failed to configure: %s", err)
   140  	}
   141  
   142  	return k, nil
   143  }
   144  
   145  func tryLoadingConfigFile(d *schema.ResourceData) (*restclient.Config, error) {
   146  	path, err := homedir.Expand(d.Get("config_path").(string))
   147  	if err != nil {
   148  		return nil, err
   149  	}
   150  
   151  	loader := &clientcmd.ClientConfigLoadingRules{
   152  		ExplicitPath: path,
   153  	}
   154  
   155  	overrides := &clientcmd.ConfigOverrides{}
   156  	ctxSuffix := "; default context"
   157  
   158  	ctx, ctxOk := d.GetOk("config_context")
   159  	authInfo, authInfoOk := d.GetOk("config_context_auth_info")
   160  	cluster, clusterOk := d.GetOk("config_context_cluster")
   161  	if ctxOk || authInfoOk || clusterOk {
   162  		ctxSuffix = "; overriden context"
   163  		if ctxOk {
   164  			overrides.CurrentContext = ctx.(string)
   165  			ctxSuffix += fmt.Sprintf("; config ctx: %s", overrides.CurrentContext)
   166  			log.Printf("[DEBUG] Using custom current context: %q", overrides.CurrentContext)
   167  		}
   168  
   169  		overrides.Context = clientcmdapi.Context{}
   170  		if authInfoOk {
   171  			overrides.Context.AuthInfo = authInfo.(string)
   172  			ctxSuffix += fmt.Sprintf("; auth_info: %s", overrides.Context.AuthInfo)
   173  		}
   174  		if clusterOk {
   175  			overrides.Context.Cluster = cluster.(string)
   176  			ctxSuffix += fmt.Sprintf("; cluster: %s", overrides.Context.Cluster)
   177  		}
   178  		log.Printf("[DEBUG] Using overidden context: %#v", overrides.Context)
   179  	}
   180  
   181  	cc := clientcmd.NewNonInteractiveDeferredLoadingClientConfig(loader, overrides)
   182  	cfg, err := cc.ClientConfig()
   183  	if err != nil {
   184  		if pathErr, ok := err.(*os.PathError); ok && os.IsNotExist(pathErr.Err) {
   185  			log.Printf("[INFO] Unable to load config file as it doesn't exist at %q", path)
   186  			return nil, nil
   187  		}
   188  		return nil, fmt.Errorf("Failed to load config (%s%s): %s", path, ctxSuffix, err)
   189  	}
   190  
   191  	log.Printf("[INFO] Successfully loaded config file (%s%s)", path, ctxSuffix)
   192  	return cfg, nil
   193  }