-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathflight.go
123 lines (100 loc) · 2.84 KB
/
flight.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
// Copyright 2018 Red Hat
//
// 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 azure
import (
"github.com/coreos/pkg/capnslog"
"github.com/pkg/errors"
"github.com/coreos/coreos-assembler/mantle/platform"
"github.com/coreos/coreos-assembler/mantle/platform/api/azure"
"github.com/coreos/coreos-assembler/mantle/platform/conf"
)
const (
Platform platform.Name = "azure"
)
var (
plog = capnslog.NewPackageLogger("github.com/coreos/coreos-assembler/mantle", "platform/machine/azure")
)
type flight struct {
*platform.BaseFlight
api *azure.API
SSHKey string
}
// NewFlight creates an instance of a Flight suitable for spawning
// instances on the Azure platform.
func NewFlight(opts *azure.Options) (platform.Flight, error) {
api, err := azure.New(opts)
if err != nil {
return nil, err
}
if err = api.SetupClients(); err != nil {
return nil, errors.Wrapf(err, "setting up clients")
}
bf, err := platform.NewBaseFlight(opts.Options, Platform)
if err != nil {
return nil, err
}
af := &flight{
BaseFlight: bf,
api: api,
}
keys, err := af.Keys()
if err != nil {
af.Destroy()
return nil, err
}
af.SSHKey = keys[0].String()
return af, nil
}
// NewCluster creates an instance of a Cluster suitable for spawning
// instances on the Azure platform.
func (af *flight) NewCluster(rconf *platform.RuntimeConfig) (platform.Cluster, error) {
bc, err := platform.NewBaseCluster(af.BaseFlight, rconf)
if err != nil {
return nil, err
}
ac := &cluster{
BaseCluster: bc,
flight: af,
}
if !rconf.NoSSHKeyInMetadata {
ac.sshKey = af.SSHKey
}
ac.ResourceGroup, err = af.api.CreateResourceGroup("kola-cluster")
if err != nil {
return nil, err
}
ac.StorageAccount, err = af.api.CreateStorageAccount(ac.ResourceGroup)
if err != nil {
if e := af.api.TerminateResourceGroup(ac.ResourceGroup); e != nil {
plog.Errorf("Deleting resource group %v: %v", ac.ResourceGroup, e)
}
return nil, err
}
_, err = af.api.PrepareNetworkResources(ac.ResourceGroup)
if err != nil {
if e := af.api.TerminateResourceGroup(ac.ResourceGroup); e != nil {
plog.Errorf("Deleting resource group %v: %v", ac.ResourceGroup, e)
}
return nil, err
}
af.AddCluster(ac)
return ac, nil
}
func (af *flight) ConfigTooLarge(ud conf.UserData) bool {
// not implemented
return false
}
func (af *flight) Destroy() {
af.BaseFlight.Destroy()
}