-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapplication.go
215 lines (178 loc) · 6.5 KB
/
application.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
package generators
import (
"context"
"fmt"
nais_io_v1 "github.com/nais/liberator/pkg/apis/nais.io/v1"
nais_io_v1alpha1 "github.com/nais/liberator/pkg/apis/nais.io/v1alpha1"
"github.com/nais/naiserator/pkg/resourcecreator/frontend"
"github.com/nais/naiserator/pkg/resourcecreator/observability"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/nais/naiserator/pkg/naiserator/config"
"github.com/nais/naiserator/pkg/resourcecreator/aiven"
"github.com/nais/naiserator/pkg/resourcecreator/azure"
"github.com/nais/naiserator/pkg/resourcecreator/certificateauthority"
"github.com/nais/naiserator/pkg/resourcecreator/deployment"
"github.com/nais/naiserator/pkg/resourcecreator/fqdnpolicy"
"github.com/nais/naiserator/pkg/resourcecreator/google/gcp"
"github.com/nais/naiserator/pkg/resourcecreator/horizontalpodautoscaler"
"github.com/nais/naiserator/pkg/resourcecreator/idporten"
"github.com/nais/naiserator/pkg/resourcecreator/ingress"
"github.com/nais/naiserator/pkg/resourcecreator/jwker"
"github.com/nais/naiserator/pkg/resourcecreator/leaderelection"
"github.com/nais/naiserator/pkg/resourcecreator/maskinporten"
"github.com/nais/naiserator/pkg/resourcecreator/networkpolicy"
"github.com/nais/naiserator/pkg/resourcecreator/pod"
"github.com/nais/naiserator/pkg/resourcecreator/poddisruptionbudget"
"github.com/nais/naiserator/pkg/resourcecreator/podmonitor"
"github.com/nais/naiserator/pkg/resourcecreator/proxyopts"
"github.com/nais/naiserator/pkg/resourcecreator/resource"
"github.com/nais/naiserator/pkg/resourcecreator/securelogs"
"github.com/nais/naiserator/pkg/resourcecreator/service"
"github.com/nais/naiserator/pkg/resourcecreator/serviceaccount"
"github.com/nais/naiserator/pkg/resourcecreator/vault"
"github.com/nais/naiserator/pkg/synchronizer"
)
type Application struct {
Config config.Config
}
var _ synchronizer.Generator = &Application{}
// Prepare a configuration context for further processing.
// This function detects run-time parameters from a live running cluster.
func (g *Application) Prepare(ctx context.Context, source resource.Source, kube client.Client) (interface{}, error) {
app, ok := source.(*nais_io_v1alpha1.Application)
if !ok {
return nil, fmt.Errorf("NAISERATOR-3237: BUG: this generator accepts only nais_io_v1alpha1.Application objects")
}
o := &Options{
Config: g.Config,
}
// Make a query to Kubernetes for this application's previous deployment.
// The number of replicas is significant, so we need to carry it over to match
// this next rollout.
key := client.ObjectKey{
Name: source.GetName(),
Namespace: source.GetNamespace(),
}
deploy := &appsv1.Deployment{}
err := kube.Get(ctx, key, deploy)
if err != nil && !errors.IsNotFound(err) {
return nil, fmt.Errorf("NAISERATOR-2760: query existing deployment: %s", err)
}
// Disallow creating application resources if there is a Naisjob with the same name.
job := &nais_io_v1.Naisjob{}
err = kube.Get(ctx, key, job)
if err == nil {
return nil, fmt.Errorf("NAISERATOR-0916: cannot create an Application with name '%s' because a Naisjob with that name exists", source.GetName())
}
o.NumReplicas = numReplicas(deploy, app.GetReplicas().Min, app.GetReplicas().Max)
// Retrieve current namespace to check for labels and annotations
namespaceKey := client.ObjectKey{Name: source.GetNamespace()}
namespace := &corev1.Namespace{}
err = kube.Get(ctx, namespaceKey, namespace)
if err != nil && !errors.IsNotFound(err) {
return nil, fmt.Errorf("NAISERATOR-7805: query existing namespace: %s", err)
}
// Auto-detect Google Team Project ID
o.GoogleTeamProjectID = namespace.Annotations["cnrm.cloud.google.com/project-id"]
gcpSpec := source.GetGCP()
if gcpSpec != nil && len(gcpSpec.SqlInstances) == 1 && len(o.GetGoogleTeamProjectID()) > 0 && o.Config.Features.SqlInstanceInSharedVpc {
instanceName := source.GetName()
if len(gcpSpec.SqlInstances[0].Name) > 0 {
instanceName = gcpSpec.SqlInstances[0].Name
}
sqlInstanceKey := client.ObjectKey{
Name: instanceName,
Namespace: source.GetNamespace(),
}
err = prepareSqlInstance(ctx, kube, sqlInstanceKey, o)
if err != nil {
return nil, err
}
}
// Create Linkerd resources only if feature is enabled and namespace is Linkerd-enabled
if g.Config.Features.Linkerd && namespace.Annotations["linkerd.io/inject"] == "enabled" {
o.Linkerd = true
}
o.Team = app.GetNamespace()
return o, nil
}
// Generate transforms an Application resource into a set of Kubernetes resources,
// along with information about what to do with these resources, i.e. CreateOrUpdate, etc.
func (g *Application) Generate(source resource.Source, config interface{}) (resource.Operations, error) {
var err error
app, ok := source.(*nais_io_v1alpha1.Application)
if !ok {
return nil, fmt.Errorf("NAISERATOR-7774: BUG: CreateApplication only accepts nais_io_v1alpha1.Application objects; fix your code")
}
cfg, ok := config.(*Options)
if !ok {
return nil, fmt.Errorf("NAISERATOR-0175: BUG: Application generator called without correct configuration object; fix your code")
}
ast := resource.NewAst()
service.Create(app, ast, cfg)
serviceaccount.Create(app, ast, cfg)
horizontalpodautoscaler.Create(app, ast)
networkpolicy.Create(app, ast, cfg)
fqdnpolicy.Create(app, ast, cfg)
err = frontend.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = observability.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = ingress.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = leaderelection.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = azure.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = idporten.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = gcp.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = proxyopts.Create(app, ast, cfg)
if err != nil {
return nil, err
}
certificateauthority.Create(app, ast, cfg)
securelogs.Create(app, ast, cfg)
err = maskinporten.Create(app, ast, cfg)
if err != nil {
return nil, err
}
poddisruptionbudget.Create(app, ast)
jwker.Create(app, ast, cfg)
err = aiven.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = vault.Create(app, ast, cfg)
if err != nil {
return nil, err
}
err = pod.CreateAppContainer(app, ast, cfg)
if err != nil {
return nil, err
}
err = deployment.Create(app, ast, cfg)
if err != nil {
return nil, err
}
podmonitor.Create(app, ast, cfg)
return ast.Operations, nil
}