-
Notifications
You must be signed in to change notification settings - Fork 153
/
deploy.go
211 lines (174 loc) · 6.25 KB
/
deploy.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
// Copyright 2020 The PipeCD 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 cloudrun
import (
"context"
"strconv"
provider "github.com/pipe-cd/pipecd/pkg/app/piped/cloudprovider/cloudrun"
"github.com/pipe-cd/pipecd/pkg/app/piped/deploysource"
"github.com/pipe-cd/pipecd/pkg/app/piped/executor"
"github.com/pipe-cd/pipecd/pkg/config"
"github.com/pipe-cd/pipecd/pkg/model"
"go.uber.org/zap"
)
const promotePercentageMetadataKey = "promote-percentage"
type deployExecutor struct {
executor.Input
deploySource *deploysource.DeploySource
appCfg *config.CloudRunApplicationSpec
client provider.Client
}
func (e *deployExecutor) Execute(sig executor.StopSignal) model.StageStatus {
ctx := sig.Context()
ds, err := e.TargetDSP.GetReadOnly(ctx, e.LogPersister)
if err != nil {
e.LogPersister.Errorf("Failed to prepare target deploy source data (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
e.deploySource = ds
e.appCfg = ds.ApplicationConfig.CloudRunApplicationSpec
if e.appCfg == nil {
e.LogPersister.Error("Malformed application configuration: missing CloudRunApplicationSpec")
return model.StageStatus_STAGE_FAILURE
}
cpName, cpCfg, found := findCloudProvider(&e.Input)
if !found {
return model.StageStatus_STAGE_FAILURE
}
e.client, err = provider.DefaultRegistry().Client(ctx, cpName, cpCfg, e.Logger)
if err != nil {
e.LogPersister.Errorf("Unable to create ClourRun client for the provider (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
var (
originalStatus = e.Stage.Status
status model.StageStatus
)
switch model.Stage(e.Stage.Name) {
case model.StageCloudRunSync:
status = e.ensureSync(ctx)
case model.StageCloudRunPromote:
status = e.ensurePromote(ctx)
default:
e.LogPersister.Errorf("Unsupported stage %s for cloudrun application", e.Stage.Name)
return model.StageStatus_STAGE_FAILURE
}
return executor.DetermineStageStatus(sig.Signal(), originalStatus, status)
}
func (e *deployExecutor) ensureSync(ctx context.Context) model.StageStatus {
sm, ok := loadServiceManifest(&e.Input, e.appCfg.Input.ServiceManifestFile, e.deploySource)
if !ok {
return model.StageStatus_STAGE_FAILURE
}
revision, ok := decideRevisionName(sm, e.Deployment.Trigger.Commit.Hash, e.LogPersister)
if !ok {
return model.StageStatus_STAGE_FAILURE
}
traffics := []provider.RevisionTraffic{
{
RevisionName: revision,
Percent: 100,
},
}
if !configureServiceManifest(sm, revision, traffics, e.LogPersister) {
return model.StageStatus_STAGE_FAILURE
}
// Add builtin labels for tracking application live state
commit := e.Deployment.CommitHash()
if !addBuiltinLabels(sm, commit, e.PipedConfig.PipedID, e.Deployment.ApplicationId, revision, e.LogPersister) {
return model.StageStatus_STAGE_FAILURE
}
if !apply(ctx, e.client, sm, e.LogPersister) {
return model.StageStatus_STAGE_FAILURE
}
return model.StageStatus_STAGE_SUCCESS
}
func (e *deployExecutor) ensurePromote(ctx context.Context) model.StageStatus {
options := e.StageConfig.CloudRunPromoteStageOptions
if options == nil {
e.LogPersister.Errorf("Malformed configuration for stage %s", e.Stage.Name)
return model.StageStatus_STAGE_FAILURE
}
metadata := map[string]string{
promotePercentageMetadataKey: strconv.FormatInt(int64(options.Percent.Int()), 10),
}
if err := e.MetadataStore.Stage(e.Stage.Id).PutMulti(ctx, metadata); err != nil {
e.Logger.Error("failed to save routing percentages to metadata", zap.Error(err))
}
// Loaded the last deployed data.
if e.Deployment.RunningCommitHash == "" {
e.LogPersister.Errorf("Unable to determine the last deployed commit")
return model.StageStatus_STAGE_FAILURE
}
runningDS, err := e.RunningDSP.GetReadOnly(ctx, e.LogPersister)
if err != nil {
e.LogPersister.Errorf("Failed to prepare running deploy source data (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
runningAppCfg := runningDS.ApplicationConfig.CloudRunApplicationSpec
if runningAppCfg == nil {
e.LogPersister.Error("Malformed application configuration in running commit: missing CloudRunApplicationSpec")
return model.StageStatus_STAGE_FAILURE
}
lastDeployedSM, ok := loadServiceManifest(&e.Input, runningAppCfg.Input.ServiceManifestFile, runningDS)
if !ok {
return model.StageStatus_STAGE_FAILURE
}
lastDeployedRevision, ok := decideRevisionName(lastDeployedSM, e.Deployment.RunningCommitHash, e.LogPersister)
if !ok {
return model.StageStatus_STAGE_FAILURE
}
// Load the service manifest at the target commit.
sm, ok := loadServiceManifest(&e.Input, e.appCfg.Input.ServiceManifestFile, e.deploySource)
if !ok {
return model.StageStatus_STAGE_FAILURE
}
revision, ok := decideRevisionName(sm, e.Deployment.Trigger.Commit.Hash, e.LogPersister)
if !ok {
return model.StageStatus_STAGE_FAILURE
}
traffics := []provider.RevisionTraffic{
{
RevisionName: revision,
Percent: options.Percent.Int(),
},
{
RevisionName: lastDeployedRevision,
Percent: 100 - options.Percent.Int(),
},
}
exist, err := revisionExists(ctx, e.client, revision, e.LogPersister)
if err != nil {
return model.StageStatus_STAGE_FAILURE
}
newRevision := revision
if exist {
newRevision = ""
e.LogPersister.Infof("Revision %s was already registered", revision)
}
if !configureServiceManifest(sm, newRevision, traffics, e.LogPersister) {
return model.StageStatus_STAGE_FAILURE
}
commit := e.Deployment.CommitHash()
if newRevision != "" {
if !addBuiltinLabels(sm, commit, e.PipedConfig.PipedID, e.Deployment.ApplicationId, newRevision, e.LogPersister) {
return model.StageStatus_STAGE_FAILURE
}
}
if !apply(ctx, e.client, sm, e.LogPersister) {
return model.StageStatus_STAGE_FAILURE
}
// TODO: Wait to ensure the traffic was fully configured.
return model.StageStatus_STAGE_SUCCESS
}