Skip to content

Commit 28aab19

Browse files
committed
support migration script override
1 parent f885161 commit 28aab19

7 files changed

+61
-11
lines changed

README.md

+33-7
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Add `BuildCmd` option in `App` as bellow:
226226
```
227227
"App": {
228228
"Name": "app",
229-
"BuildCmd": "docker run -t -v $GOPATH:/home/app golang /bin/sh -c 'GOPATH=/home/app /usr/local/go/bin/go build -o /home/app/src/github.com/bom-d-van/harp/%s %s'"
229+
"BuildCmd": "docker run -t -v $GOPATH:/home/app golang /bin/sh -c 'cd /home/app/src/github.com/bom-d-van/harp; GOPATH=/home/app /usr/local/go/bin/go build -o /home/app/src/github.com/bom-d-van/harp/%s %s'"
230230
}
231231
```
232232

@@ -253,10 +253,14 @@ harp supports you to override its default deploy script. Add configuration like
253253
```
254254
"App": {
255255
"Name": "app",
256-
"DeployScript": "path-to-your-script-template"
256+
"DeployScript": "path-to-your-script-template",
257+
"RestartScript": "path-to-your-script-template",
258+
"MigrationScript": "path-to-your-script-template",
257259
},
258260
```
259261

262+
#### Deploy and Restart Script
263+
260264
The script could be a `text/template.Template`, into which harp pass a data as bellow:
261265

262266
```
@@ -270,33 +274,43 @@ map[string]interface{}{
270274
type App struct {
271275
Name string
272276
ImportPath string
273-
Files []string
277+
278+
NoRelMatch bool
279+
DefaultExcludeds []string
280+
Files []File
274281
275282
Args []string
276283
Envs map[string]string
277284
278-
BuildCmd string
285+
BuildCmd string
286+
BuildArgs string
279287
280288
KillSig string
281289
282-
// TODO: could override default deploy script for out-of-band deploy
290+
// Default: 1MB
291+
FileWarningSize int64
292+
283293
DeployScript string
284294
RestartScript string
285295
}
286296
287297
type Server struct {
298+
ID string
299+
288300
Envs map[string]string
301+
Home string
289302
GoPath string
290303
LogDir string
291-
PIDDir string
292304
293305
User string
294306
Host string
295307
Port string
296308
297-
Set string
309+
Set string // aka, Type
298310
299311
client *ssh.Client
312+
313+
Config *Config
300314
}
301315
```
302316

@@ -318,6 +332,18 @@ set -e
318332

319333
You can inspect your script by evoking command: `harp -s prod inspect deploy` or `harp -s prod inspect restart`.
320334

335+
#### Migration Script
336+
337+
Migration script template data is:
338+
339+
```
340+
map[string]interface{}{
341+
"Server": harp.Server,
342+
"App": harp.App,
343+
"DefaultScript": string,
344+
}
345+
```
346+
321347
### Server Informations
322348

323349
You can use `harp info` to retrieve build and deploy information about the current running server. For example:

harp.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,9 @@ type App struct {
105105
// Default: 1MB
106106
FileWarningSize int64
107107

108-
DeployScript string
109-
RestartScript string
108+
DeployScript string
109+
RestartScript string
110+
MigrationScript string
110111
}
111112

112113
type Tasks []string

harp_test.sh

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ tmp/harp -c test/harp.json -s prod run github.com/bom-d-van/harp/test/migration3
6363
echo ====================
6464
echo tmp/harp -c test/harp2.json -s prod run github.com/bom-d-van/harp/test/migration3
6565
tmp/harp -c test/harp2.json -s prod run github.com/bom-d-van/harp/test/migration3
66+
ssh app@$dmip -p 49153 -- tail migration.log
67+
ssh app@$dmip -p 49153 -- tail /home/app/src/github.com/bom-d-van/harp/test/migration.log
6668

6769
echo ====================
6870
echo tmp/harp -c test/harp.json -s prod rollback ls

migration.go

+13
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,19 @@ func (s *Server) runMigration(migrations []Migration) {
181181
exitf("failed to generate migration script: %s", err)
182182
}
183183

184+
if s.Config.App.MigrationScript != "" {
185+
var customScript bytes.Buffer
186+
err := template.Must(template.New("migration.sh").ParseFiles(s.Config.App.MigrationScript)).Execute(&customScript, map[string]interface{}{
187+
"Server": s,
188+
"App": s.Config.App,
189+
"DefaultScript": script.String(),
190+
})
191+
if err != nil {
192+
exitf("failed to generate custom script (%s): %s", s.Config.App.MigrationScript, err)
193+
}
194+
script = customScript
195+
}
196+
184197
if option.debug || option.hand {
185198
log.Printf("===============\n%s\n%s", s, trimEmptyLines(script.String()))
186199
if option.hand {

test/harp2.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"ImportPath": "github.com/bom-d-van/harp/test",
77
"DeployScript": "test/deploy.sh",
88
"RestartScript": "test/restart.sh",
9-
"BuildCmd": "docker run -t -v $GOPATH:/home/app golang /bin/sh -c 'GOPATH=/home/app /usr/local/go/bin/go build -o /home/app/src/github.com/bom-d-van/harp/%s %s'",
9+
"MigrationScript": "test/migration.sh",
10+
"BuildCmd": "docker run -t -v $GOPATH:/home/app golang /bin/sh -c 'cd /home/app/src/github.com/bom-d-van/harp; GOPATH=/home/app /usr/local/go/bin/go build -o /home/app/src/github.com/bom-d-van/harp/%s %s'",
1011
"Files": [
1112
"github.com/bom-d-van/harp/test/files",
1213
"github.com/bom-d-van/harp/test/file"

test/migration.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
set -e
2+
3+
echo $(date) start >> migration.log
4+
5+
{{.DefaultScript}}
6+
7+
echo $(date) done >> migration.log

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const version = 2
3+
const version = 3

0 commit comments

Comments
 (0)