forked from worldiety/AutoCD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautoCDexample.json
More file actions
82 lines (82 loc) · 2.06 KB
/
autoCDexample.json
File metadata and controls
82 lines (82 loc) · 2.06 KB
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
{
"otherImages": [
{
"registryImagePath": "redis:latest",
"containerPort": 6379,
"servicePort": 6379,
"publiclyAccessible": "false",
"serviceName": "redis"
},
{
"registryImagePath": "path/to/registry/service/image",
"serviceName": "content-service",
"subdomains": {
"dev": "yourapp.dev.com",
"edit": "yourapp.edit.com",
"stage": "yourapp.com"
},
"environmentVariables": {
"dev": {
"SPRING_PROFILES_ACTIVE": "dev",
"REDIS_URL": "redis",
"SYNC_URL": "http://sync-service"
},
"edit": {
"SPRING_PROFILES_ACTIVE": "stage",
"REDIS_URL": "redis",
"SYNC_URL": "http://sync-service"
},
"stage": {
"SPRING_PROFILES_ACTIVE": "prod",
"REDIS_URL": "redis"
}
}
},
{
"registryImagePath": "path/to/registry/service/image",
"serviceName": "sync-service",
"subdomains": {
"dev": "yourapp.dev.com",
"edit": "yourapp.edit.com",
"stage": "yourapp.com"
},
"environmentVariables": {
"dev": {
"SPRING_PROFILES_ACTIVE": "dev",
"REDIS_URL": "redis"
},
"edit": {
"SPRING_PROFILES_ACTIVE": "stage",
"REDIS_URL": "redis"
},
"stage": {
"SPRING_PROFILES_ACTIVE": "prod",
"REDIS_URL": "redis"
}
}
}
],
"containerPort": 3000,
"environmentVariables": {
"dev": {
"ENVIRONMENT": "dev",
"CONTENT_SERVICE_URL": "https://content-dev.de",
"NEWSLETTER_SERVICE_URL": "https://newsletter.de",
"EDITOR_URL": "https://cms-editor.de/js/app.js"
},
"edit": {
"ENVIRONMENT": "edit",
"NEWSLETTER_SERVICE_URL": "https://newsletter.de"
},
"stage": {
"ENVIRONMENT": "stage",
"NEWSLETTER_SERVICE_URL": "https://newsletter.de"
}
},
"serviceName" : "website",
"subdomains": {
"dev": "yourapp.dev.com",
"edit": "yourapp.edit.com",
"stage": "yourapp.com"
}
}