mirror of https://github.com/kubernetes/kops.git
121 lines
3.7 KiB
Go
121 lines
3.7 KiB
Go
/*
|
|
Copyright 2016 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package digitalocean
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
|
|
"github.com/digitalocean/godo"
|
|
"github.com/golang/glog"
|
|
"golang.org/x/oauth2"
|
|
|
|
"fmt"
|
|
|
|
"k8s.io/client-go/pkg/api/v1"
|
|
"k8s.io/kops/pkg/apis/kops"
|
|
"k8s.io/kops/pkg/cloudinstances"
|
|
"k8s.io/kops/pkg/resources/digitalocean/dns"
|
|
"k8s.io/kops/upup/pkg/fi"
|
|
"k8s.io/kubernetes/federation/pkg/dnsprovider"
|
|
)
|
|
|
|
// TokenSource implements oauth2.TokenSource
|
|
type TokenSource struct {
|
|
AccessToken string
|
|
}
|
|
|
|
// Token() returns oauth2.Token
|
|
func (t *TokenSource) Token() (*oauth2.Token, error) {
|
|
token := &oauth2.Token{
|
|
AccessToken: t.AccessToken,
|
|
}
|
|
return token, nil
|
|
}
|
|
|
|
// Cloud exposes all the interfaces required to operate on DigitalOcean resources
|
|
type Cloud struct {
|
|
Client *godo.Client
|
|
|
|
dns dnsprovider.Interface
|
|
|
|
Region string
|
|
tags map[string]string
|
|
}
|
|
|
|
var _ fi.Cloud = &Cloud{}
|
|
|
|
// NewCloud returns a Cloud, expecting the env var DO_ACCESS_TOKEN
|
|
// NewCloud will return an err if DO_ACCESS_TOKEN is not defined
|
|
func NewCloud(region string) (*Cloud, error) {
|
|
accessToken := os.Getenv("DO_ACCESS_TOKEN")
|
|
if accessToken == "" {
|
|
return nil, errors.New("DO_ACCESS_TOKEN is required")
|
|
}
|
|
|
|
tokenSource := &TokenSource{
|
|
AccessToken: accessToken,
|
|
}
|
|
|
|
oauthClient := oauth2.NewClient(oauth2.NoContext, tokenSource)
|
|
client := godo.NewClient(oauthClient)
|
|
|
|
return &Cloud{
|
|
Client: client,
|
|
dns: dns.NewProvider(client),
|
|
Region: region,
|
|
}, nil
|
|
}
|
|
|
|
// GetCloudGroups is not implemented yet, that needs to return the instances and groups that back a kops cluster.
|
|
func (c *Cloud) GetCloudGroups(cluster *kops.Cluster, instancegroups []*kops.InstanceGroup, warnUnmatched bool, nodes []v1.Node) (map[string]*cloudinstances.CloudInstanceGroup, error) {
|
|
glog.V(8).Infof("digitalocean cloud provider GetCloudGroups not implemented yet")
|
|
return nil, fmt.Errorf("digital ocean cloud provider does not support getting cloud groups at this time")
|
|
}
|
|
|
|
// DeleteGroup is not implemented yet, is a func that needs to delete a DO instance group.
|
|
func (c *Cloud) DeleteGroup(name string, template string) error {
|
|
glog.V(8).Infof("digitalocean cloud provider DeleteGroup not implemented yet")
|
|
return fmt.Errorf("digital ocean cloud provider does not support deleting cloud groups at this time")
|
|
}
|
|
|
|
// DeleteInstance is not implemented yet, is func needs to delete a DO instance.
|
|
func (c *Cloud) DeleteInstance(id *string) error {
|
|
glog.V(8).Infof("digitalocean cloud provider DeleteInstance not implemented yet")
|
|
return fmt.Errorf("digital ocean cloud provider does not support deleting cloud instances at this time")
|
|
}
|
|
|
|
// ProviderID returns the kops api identifier for DigitalOcean cloud provider
|
|
func (c *Cloud) ProviderID() kops.CloudProviderID {
|
|
return kops.CloudProviderDO
|
|
}
|
|
|
|
// DNS returns a DO implementation for dnsprovider.Interface
|
|
func (c *Cloud) DNS() (dnsprovider.Interface, error) {
|
|
return c.dns, nil
|
|
}
|
|
|
|
// Volume returns an implementation of godo.StorageService
|
|
func (c *Cloud) Volumes() godo.StorageService {
|
|
return c.Client.Storage
|
|
}
|
|
|
|
// FindVPCInfo is not implemented, it's only here to satisfy the fi.Cloud interface
|
|
func (c *Cloud) FindVPCInfo(id string) (*fi.VPCInfo, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|