-
Notifications
You must be signed in to change notification settings - Fork 153
/
primary.go
244 lines (217 loc) · 8.69 KB
/
primary.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// Copyright 2022 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 kubernetes
import (
"context"
"fmt"
"time"
provider "github.com/pipe-cd/pipecd/pkg/app/piped/platformprovider/kubernetes"
"github.com/pipe-cd/pipecd/pkg/config"
"github.com/pipe-cd/pipecd/pkg/model"
)
func (e *deployExecutor) ensurePrimaryRollout(ctx context.Context) model.StageStatus {
var (
options = e.StageConfig.K8sPrimaryRolloutStageOptions
variantLabel = e.appCfg.VariantLabel.Key
primaryVariant = e.appCfg.VariantLabel.PrimaryValue
)
if options == nil {
e.LogPersister.Errorf("Malformed configuration for stage %s", e.Stage.Name)
return model.StageStatus_STAGE_FAILURE
}
// Load the manifests at the triggered commit.
e.LogPersister.Infof("Loading manifests at trigered commit %s for handling", e.commit)
manifests, err := loadManifests(
ctx,
e.Deployment.ApplicationId,
e.commit,
e.AppManifestsCache,
e.loader,
e.Logger,
)
if err != nil {
e.LogPersister.Errorf("Failed while loading manifests (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
e.LogPersister.Successf("Successfully loaded %d manifests", len(manifests))
var primaryManifests []provider.Manifest
routingMethod := config.DetermineKubernetesTrafficRoutingMethod(e.appCfg.TrafficRouting)
switch routingMethod {
// In case of routing by Pod selector,
// all manifests can be used as primary manifests.
case config.KubernetesTrafficRoutingMethodPodSelector:
primaryManifests = manifests
// In case of routing by Istio,
// VirtualService manifest will be used to manipulate the traffic ratio.
// Other manifests can be used as primary manifests.
case config.KubernetesTrafficRoutingMethodIstio:
// Firstly, find the VirtualService manifests.
istioCfg := e.appCfg.TrafficRouting.Istio
if istioCfg == nil {
istioCfg = &config.IstioTrafficRouting{}
}
trafficRoutingManifests, err := findIstioVirtualServiceManifests(manifests, istioCfg.VirtualService)
if err != nil {
e.LogPersister.Errorf("Failed while finding traffic routing manifest: (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
// Then remove them from the list of primary manifests.
if len(trafficRoutingManifests) > 0 {
primaryManifests = make([]provider.Manifest, 0, len(manifests)-1)
for _, m := range manifests {
if m.Key == trafficRoutingManifests[0].Key {
continue
}
primaryManifests = append(primaryManifests, m)
}
}
default:
e.LogPersister.Errorf("Traffic routing method %v is not supported", routingMethod)
return model.StageStatus_STAGE_FAILURE
}
// Check if the variant selector is in the workloads.
if !options.AddVariantLabelToSelector &&
routingMethod == config.KubernetesTrafficRoutingMethodPodSelector &&
e.appCfg.HasStage(model.StageK8sTrafficRouting) {
workloads := findWorkloadManifests(primaryManifests, e.appCfg.Workloads)
var invalid bool
for _, m := range workloads {
if err := checkVariantSelectorInWorkload(m, variantLabel, primaryVariant); err != nil {
invalid = true
e.LogPersister.Errorf("Missing %q in selector of workload %s (%v)", variantLabel+": "+primaryVariant, m.Key.ReadableLogString(), err)
}
}
if invalid {
return model.StageStatus_STAGE_FAILURE
}
}
// Generate the manifests for applying.
e.LogPersister.Info("Start generating manifests for PRIMARY variant")
if primaryManifests, err = e.generatePrimaryManifests(primaryManifests, *options, variantLabel, primaryVariant); err != nil {
e.LogPersister.Errorf("Unable to generate manifests for PRIMARY variant (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
e.LogPersister.Successf("Successfully generated %d manifests for PRIMARY variant", len(primaryManifests))
// Add builtin annotations for tracking application live state.
addBuiltinAnnotations(
primaryManifests,
variantLabel,
primaryVariant,
e.commit,
e.PipedConfig.PipedID,
e.Deployment.ApplicationId,
)
// Add config-hash annotation to the workloads.
if err := annotateConfigHash(primaryManifests); err != nil {
e.LogPersister.Errorf("Unable to set %q annotation into the workload manifest (%v)", provider.AnnotationConfigHash, err)
return model.StageStatus_STAGE_FAILURE
}
// Start applying all manifests to add or update running resources.
e.LogPersister.Info("Start rolling out PRIMARY variant...")
if err := applyManifests(ctx, e.applierGetter, primaryManifests, e.appCfg.Input.Namespace, e.LogPersister); err != nil {
return model.StageStatus_STAGE_FAILURE
}
e.LogPersister.Success("Successfully rolled out PRIMARY variant")
if !options.Prune {
e.LogPersister.Info("Resource GC was skipped because sync.prune was not configured")
return model.StageStatus_STAGE_SUCCESS
}
// Wait for all applied manifests to be stable.
// In theory, we don't need to wait for them to be stable before going to the next step
// but waiting for a while reduces the number of Kubernetes changes in a short time.
e.LogPersister.Info("Waiting for the applied manifests to be stable")
select {
case <-time.After(15 * time.Second):
break
case <-ctx.Done():
break
}
// Find the running resources that are not defined in Git.
e.LogPersister.Info("Start finding all running PRIMARY resources but no longer defined in Git")
runningManifests, err := e.loadRunningManifests(ctx)
if err != nil {
e.LogPersister.Errorf("Failed while loading running manifests (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
e.LogPersister.Successf("Successfully loaded %d live resources", len(runningManifests))
for _, m := range runningManifests {
e.LogPersister.Successf("- loaded live resource: %s", m.Key.ReadableLogString())
}
removeKeys := findRemoveManifests(runningManifests, manifests, e.appCfg.Input.Namespace)
if len(removeKeys) == 0 {
e.LogPersister.Info("There are no live resources should be removed")
return model.StageStatus_STAGE_SUCCESS
}
e.LogPersister.Infof("Found %d live resources that are no longer defined in Git", len(removeKeys))
// Start deleting all running resources that are not defined in Git.
e.LogPersister.Infof("Start deleting %d resources", len(removeKeys))
if err := deleteResources(ctx, e.applierGetter, removeKeys, e.LogPersister); err != nil {
return model.StageStatus_STAGE_FAILURE
}
return model.StageStatus_STAGE_SUCCESS
}
func findRemoveManifests(prevs []provider.Manifest, curs []provider.Manifest, namespace string) []provider.ResourceKey {
var (
keys = make(map[provider.ResourceKey]struct{}, len(curs))
removeKeys = make([]provider.ResourceKey, 0)
)
for _, m := range curs {
keys[m.Key] = struct{}{}
}
for _, m := range prevs {
key := m.Key
if _, ok := keys[key]; ok {
continue
}
if key.Namespace == "" {
key.Namespace = namespace
}
removeKeys = append(removeKeys, key)
}
return removeKeys
}
func (e *deployExecutor) generatePrimaryManifests(manifests []provider.Manifest, opts config.K8sPrimaryRolloutStageOptions, variantLabel, variant string) ([]provider.Manifest, error) {
suffix := variant
if opts.Suffix != "" {
suffix = opts.Suffix
}
// Because the loaded manifests are read-only
// we duplicate them to avoid updating the shared manifests data in cache.
manifests = duplicateManifests(manifests, "")
// When addVariantLabelToSelector is true, ensure that all workloads
// have the variant label in their selector.
if opts.AddVariantLabelToSelector {
workloads := findWorkloadManifests(manifests, e.appCfg.Workloads)
for _, m := range workloads {
if err := ensureVariantSelectorInWorkload(m, variantLabel, variant); err != nil {
return nil, fmt.Errorf("unable to check/set %q in selector of workload %s (%v)", variantLabel+": "+variant, m.Key.ReadableLogString(), err)
}
}
}
// Find service manifests and duplicate them for PRIMARY variant.
if opts.CreateService {
serviceName := e.appCfg.Service.Name
services := findManifests(provider.KindService, serviceName, manifests)
if len(services) == 0 {
return nil, fmt.Errorf("unable to find any service for name=%q", serviceName)
}
services = duplicateManifests(services, "")
generatedServices, err := generateVariantServiceManifests(services, variantLabel, variant, suffix)
if err != nil {
return nil, err
}
manifests = append(manifests, generatedServices...)
}
return manifests, nil
}