generated from meshery/meshery-istio
-
Notifications
You must be signed in to change notification settings - Fork 33
/
main.go
223 lines (192 loc) · 6.26 KB
/
main.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
package main
import (
"fmt"
"os"
"path"
"path/filepath"
"strings"
"time"
//"github.com/aws/aws-sdk-go/service/appmesh"
"github.com/google/uuid"
"github.com/layer5io/meshery-adapter-library/adapter"
"github.com/layer5io/meshery-adapter-library/api/grpc"
configprovider "github.com/layer5io/meshery-adapter-library/config/provider"
"github.com/layer5io/meshery-app-mesh/appmesh"
"github.com/layer5io/meshery-app-mesh/build"
"github.com/layer5io/meshery-app-mesh/internal/config"
"github.com/layer5io/meshkit/logger"
"github.com/layer5io/meshkit/utils/events"
// "github.com/layer5io/meshkit/tracing"
"github.com/layer5io/meshery-app-mesh/appmesh/oam"
)
var (
serviceName = "app-mesh-adapter"
version = "edge"
gitsha = "none"
instanceID = uuid.NewString()
)
func isDebug() bool {
return os.Getenv("DEBUG") == "true"
}
// creates the ~/.meshery directory
func init() {
err := os.MkdirAll(path.Join(config.RootPath(), "bin"), 0750)
if err != nil {
fmt.Println(err)
os.Exit(0)
}
}
// main is the entrypoint of the adaptor
func main() {
// Initialize Logger instance
log, err := logger.New(serviceName, logger.Options{
Format: logger.SyslogLogFormat,
DebugLevel: isDebug(),
})
if err != nil {
fmt.Println(err)
os.Exit(1)
}
err = os.Setenv("KUBECONFIG", path.Join(
config.KubeConfig[configprovider.FilePath],
fmt.Sprintf("%s.%s", config.KubeConfig[configprovider.FileName], config.KubeConfig[configprovider.FileType])),
)
if err != nil {
// Fail silently
log.Warn(err)
}
// Initialize application specific configs and dependencies
// App and request config
cfg, err := config.New(configprovider.ViperKey)
if err != nil {
log.Error(err)
os.Exit(1)
}
service := &grpc.Service{}
err = cfg.GetObject(adapter.ServerKey, service)
if err != nil {
log.Error(err)
os.Exit(1)
}
kubeconfigHandler, err := config.NewKubeconfigBuilder(configprovider.ViperKey)
if err != nil {
log.Error(err)
os.Exit(1)
}
// // Initialize Tracing instance
// tracer, err := tracing.New(service.Name, service.TraceURL)
// if err != nil {
// log.Err("Tracing Init Failed", err.Error())
// os.Exit(1)
// }
e := events.NewEventStreamer()
// Initialize Handler intance
handler := appmesh.New(cfg, log, kubeconfigHandler, e)
handler = adapter.AddLogger(log, handler)
service.Handler = handler
service.EventStreamer = e
service.StartedAt = time.Now()
service.Version = version
service.GitSHA = gitsha
go registerCapabilities(service.Port, log) //Registering static capabilities
go registerDynamicCapabilities(service.Port, log) //Registering latest capabilities periodically
// Server Initialization
log.Info("Adaptor Listening at port: ", service.Port)
err = grpc.Start(service, nil)
if err != nil {
log.Error(err)
os.Exit(1)
}
}
func registerCapabilities(port string, log logger.Handler) {
// Register workloads
log.Info("Starting static component registration...")
if err := oam.RegisterWorkloads(mesheryServerAddress(), serviceAddress()+":"+port); err != nil {
log.Info(err.Error())
}
log.Info("Static Component registration completed")
// // Register traits
// if err := oam.RegisterTraits(mesheryServerAddress(), serviceAddress()+":"+port); err != nil {
// log.Info(err.Error())
// }
// Register meshmodel components
if err := oam.RegisterMeshModelComponents(instanceID, mesheryServerAddress(), serviceAddress(), port); err != nil {
log.Error(err)
}
}
func registerDynamicCapabilities(port string, log logger.Handler) {
registerWorkloads(port, log)
//Start the ticker
const reRegisterAfter = 24
ticker := time.NewTicker(reRegisterAfter * time.Hour)
for {
<-ticker.C
registerWorkloads(port, log)
}
}
func registerWorkloads(port string, log logger.Handler) {
log.Info("Registering latest components with Meshery Server")
//First we create and store any new components if available
version := build.LatestVersion
url := build.DefaultGenerationURL
gm := build.DefaultGenerationMethod
// Prechecking to skip comp gen
if os.Getenv("FORCE_DYNAMIC_REG") != "true" && oam.AvailableVersions[version] {
log.Info("Components available statically for version ", version, ". Skipping dynamic component registeration")
return
}
//If a URL is passed from env variable, it will be used for component generation with default method being "using manifests"
// In case a helm chart URL is passed, COMP_GEN_METHOD env variable should be set to Helm otherwise the component generation fails
if os.Getenv("COMP_GEN_URL") != "" && (os.Getenv("COMP_GEN_METHOD") == "Helm" || os.Getenv("COMP_GEN_METHOD") == "Manifest") {
url = os.Getenv("COMP_GEN_URL")
gm = os.Getenv("COMP_GEN_METHOD")
log.Info("Registering workload components from url ", url, " using ", gm, " method...")
}
log.Info("Registering latest workload components for version ", version)
err := adapter.CreateComponents(adapter.StaticCompConfig{
URL: url,
Method: gm,
OAMPath: build.WorkloadPath,
MeshModelPath: build.MeshModelPath,
MeshModelConfig: build.MeshModelConfig,
DirName: version,
Config: build.NewConfig(version),
})
if err != nil {
log.Info("Failed to generate components for version " + version)
log.Error(err)
return
}
//The below log is checked in the workflows. If you change this log, reflect that change in the workflow where components are generated
log.Info("Component creation completed for version ", version)
//Now we will register in case
log.Info("Registering workloads with Meshery Server for version ", version)
originalPath := oam.WorkloadPath
oam.WorkloadPath = filepath.Join(originalPath, version)
defer resetWorkloadPath(originalPath)
if err := oam.RegisterWorkloads(mesheryServerAddress(), serviceAddress()+":"+port); err != nil {
log.Error(err)
return
}
log.Info("Latest workload components successfully registered for version ", version)
}
func mesheryServerAddress() string {
meshReg := os.Getenv("MESHERY_SERVER")
if meshReg != "" {
if strings.HasPrefix(meshReg, "http") {
return meshReg
}
return "http://" + meshReg
}
return "http://localhost:9081"
}
func serviceAddress() string {
svcAddr := os.Getenv("SERVICE_ADDR")
if svcAddr != "" {
return svcAddr
}
return "mesherylocal.layer5.io"
}
func resetWorkloadPath(orig string) {
oam.WorkloadPath = orig
}