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
245
246
247
248
249
250
251
252
253
254
255
256
|
package main
import (
"context"
"fmt"
"os"
"time"
"github.com/grindlemire/gothem-stack/magefiles/cmd"
"github.com/grindlemire/gothem-stack/pkg/version"
"github.com/pkg/errors"
"go.uber.org/zap"
)
func deploy(ctx context.Context) error {
zap.S().Info("Starting deployment process...")
config, err := GetConfig(ctx)
if err != nil {
return errors.Wrap(err, "failed to get config")
}
if len(config.Args) == 0 {
config.Args = []string{"all"}
}
var ver version.Version
if config.Args[0] == "backend" || config.Args[0] == "all" {
versionLevel := "patch"
if len(config.Args) > 1 {
versionLevel = config.Args[1]
}
ver, err = version.Read()
if err != nil {
return errors.Wrap(err, "failed to read version")
}
if err := ver.Increment(versionLevel); err != nil {
return errors.Wrap(err, "failed to increment version")
}
}
if err := build(ctx); err != nil {
return errors.Wrap(err, "failed to build static files")
}
if config.Args[0] == "backend" || config.Args[0] == "all" {
err = deployBackend(ctx, ver)
if err != nil {
return errors.Wrap(err, "failed to deploy backend to Cloud Run")
}
if err := version.Write(ver); err != nil {
return errors.Wrap(err, "failed to save new version")
}
zap.S().Infof("Successfully deployed backend version %s", ver)
}
if config.Args[0] == "frontend" || config.Args[0] == "all" {
err = deployFrontend(ctx)
if err != nil {
return errors.Wrap(err, "failed to deploy to firebase")
}
zap.S().Info("Successfully deployed frontend")
}
zap.S().Info("Successfully completed deployment")
return nil
}
func deployBackend(ctx context.Context, ver version.Version) error {
zap.S().Info("Deploying backend to Cloud Run...")
err := cmd.Run(ctx, cmd.WithCMD("gcloud", "version"), cmd.WithSilent())
if err != nil {
return errors.Wrap(err, "gcloud is not installed. Run `mage install backend` to install it")
}
projectID := os.Getenv("GOOGLE_CLOUD_PROJECT")
if projectID == "" {
return errors.New("GOOGLE_CLOUD_PROJECT environment variable not set")
}
region := os.Getenv("GOOGLE_CLOUD_REGION")
if region == "" {
region = "us-central1"
}
serviceName := os.Getenv("CLOUD_RUN_SERVICE_NAME")
if serviceName == "" {
return errors.New("CLOUD_RUN_SERVICE_NAME environment variable not set")
}
err = ensureArtifactRegistry(ctx, projectID, region, serviceName)
if err != nil {
return errors.Wrap(err, "failed to initialize artifact registry")
}
err = ensureCloudBuild(ctx, projectID)
if err != nil {
return errors.Wrap(err, "failed to initialize cloud build")
}
err = ensureCloudRun(ctx, projectID)
if err != nil {
return errors.Wrap(err, "failed to initialize cloud run")
}
tagname, err := getImageTag(
projectID,
serviceName,
"backend",
fmt.Sprintf("v%s", ver),
)
if err != nil {
return errors.Wrap(err, "failed to get image tag")
}
err = cmd.Run(ctx,
cmd.WithCMD(
"gcloud", "builds", "submit",
"--project", projectID,
"--region", region,
"--config", "./cloudbuild.json",
"--substitutions", fmt.Sprintf("_IMAGE_NAME=%s", tagname),
),
)
if err != nil {
return err
}
err = cmd.Run(ctx, cmd.WithCMD(
"gcloud", "run", "deploy", serviceName,
"--image", tagname,
"--platform", "managed",
"--region", region,
"--project", projectID,
"--allow-unauthenticated",
))
if err != nil {
return errors.Wrap(err, "failed to deploy to cloud run")
}
zap.S().Info("Successfully deployed to Cloud Run")
return nil
}
func ensureCloudRun(ctx context.Context, projectID string) error {
err := cmd.Run(ctx, cmd.WithCMD(
"gcloud", "services", "enable", "run.googleapis.com",
"--project", projectID,
))
if err != nil {
return errors.Wrap(err, "failed to enable Cloud Run API")
}
return nil
}
func ensureArtifactRegistry(ctx context.Context, projectID, region, repoName string) error {
err := cmd.Run(ctx, cmd.WithCMD(
"gcloud", "services", "enable", "artifactregistry.googleapis.com",
"--project", projectID,
))
if err != nil {
return errors.Wrap(err, "failed to enable Artifact Registry API")
}
repoExists := cmd.Run(ctx,
cmd.WithCMD(
"gcloud", "artifacts", "repositories", "describe", repoName,
"--project", projectID,
"--location", region,
),
cmd.WithSilent(),
) == nil
if !repoExists {
zap.S().Infof("Creating Artifact Registry repository %s in %s", repoName, region)
err = cmd.Run(ctx, cmd.WithCMD(
"gcloud", "artifacts", "repositories", "create", repoName,
"--repository-format", "docker",
"--location", region,
"--project", projectID,
))
if err != nil {
return errors.Wrap(err, "failed to create Artifact Registry repository")
}
}
zap.S().Infof("Setting cleanup policy for repository %s", repoName)
err = cmd.Run(ctx, cmd.WithCMD(
"gcloud", "artifacts", "repositories", "set-cleanup-policies", repoName,
"--location", region,
"--project", projectID,
"--policy=artifact-cleanup-policy.json",
))
if err != nil {
return errors.Wrap(err, "failed to set cleanup policy")
}
return nil
}
func ensureCloudBuild(ctx context.Context, projectID string) error {
err := cmd.Run(ctx, cmd.WithCMD(
"gcloud", "services", "enable", "cloudbuild.googleapis.com",
"--project", projectID,
))
if err != nil {
return errors.Wrap(err, "failed to enable Cloud Build API")
}
return nil
}
func deployFrontend(ctx context.Context) error {
err := cmd.Run(ctx, cmd.WithCMD("firebase", "--version"), cmd.WithSilent())
if err != nil {
return errors.Wrap(err, "firebase is not installed. Run `mage install frontend` to install it")
}
zap.S().Info("Deploying to Firebase hosting...")
err = cmd.Run(ctx,
cmd.WithDir("web"),
cmd.WithCMD(
"firebase",
"deploy",
"--only", "hosting",
"--message", fmt.Sprintf("Build at %s", time.Now().Format(time.RFC3339)),
),
)
if err != nil {
return errors.Wrap(err, "failed to deploy to firebase")
}
zap.S().Info("Successfully deployed to Firebase hosting")
return nil
}
|