forked from josmo/drone-ecs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
161 lines (157 loc) · 4.5 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
package main
import (
"github.com/codegangsta/cli"
"log"
"os"
)
var version string
func main() {
app := cli.NewApp()
app.Name = "rancher publish"
app.Usage = "rancher publish"
app.Action = run
app.Version = version
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "access-key",
Usage: "AWS access key",
EnvVar: "PLUGIN_ACCESS_KEY, ECS_ACCESS_KEY",
},
cli.StringFlag{
Name: "secret-key",
Usage: "AWS secret key",
EnvVar: "PLUGIN_SECRET_KEY, ECS_SECRET_KEY",
},
cli.StringFlag{
Name: "region",
Usage: "aws region",
EnvVar: "PLUGIN_REGION",
},
cli.StringFlag{
Name: "family",
Usage: "ECS family",
EnvVar: "PLUGIN_FAMILY",
},
cli.StringFlag{
Name: "task-role-arn",
Usage: "ECS task IAM role",
EnvVar: "PLUGIN_TASK_ROLE_ARN",
},
cli.StringFlag{
Name: "service",
Usage: "Service to act on",
EnvVar: "PLUGIN_SERVICE",
},
cli.StringFlag{
Name: "container-name",
Usage: "Container name",
EnvVar: "PLUGIN_CONTAINER_NAME",
},
cli.StringFlag{
Name: "docker-image",
Usage: "image to use",
EnvVar: "PLUGIN_DOCKER_IMAGE",
},
cli.StringFlag{
Name: "tag",
Usage: "AWS tag",
EnvVar: "PLUGIN_TAG",
},
cli.StringFlag{
Name: "cluster",
Usage: "AWS ECS cluster",
EnvVar: "PLUGIN_CLUSTER",
},
cli.StringFlag{
Name: "log-driver",
Usage: "The log driver to use for the container",
EnvVar: "PLUGIN_LOG_DRIVER",
},
cli.StringSliceFlag{
Name: "log-options",
Usage: "The configuration options to send to the log driver",
EnvVar: "PLUGIN_LOG_OPTIONS",
},
cli.StringSliceFlag{
Name: "port-mappings",
Usage: "ECS port maps",
EnvVar: "PLUGIN_PORT_MAPPINGS",
},
cli.StringSliceFlag{
Name: "docker-labels",
Usage: "A key/value map of labels to add to the container",
EnvVar: "PLUGIN_DOCKER_LABELS",
},
cli.StringSliceFlag{
Name: "environment-variables",
Usage: "ECS environment-variables",
EnvVar: "PLUGIN_ENVIRONMENT_VARIABLES",
},
cli.StringSliceFlag{
Name: "secret-environment-variables",
Usage: "Secret ECS environment-variables",
EnvVar: "PLUGIN_SECRET_ENVIRONMENT_VARIABLES",
},
cli.Int64Flag{
Name: "cpu",
Usage: "The number of cpu units to reserve for the container",
EnvVar: "PLUGIN_CPU",
},
cli.Int64Flag{
Name: "memory",
Usage: "The hard limit (in MiB) of memory to present to the container",
EnvVar: "PLUGIN_MEMORY",
},
cli.Int64Flag{
Name: "memory-reservation",
Usage: "The soft limit (in MiB) of memory to reserve for the container. Defaults to 128",
Value: 128,
EnvVar: "PLUGIN_MEMORY_RESERVATION",
},
cli.StringFlag{
Name: "deployment-configuration",
Usage: "Deployment parameters that control how many tasks run during the deployment and the ordering of stopping and starting tasks",
EnvVar: "PLUGIN_DEPLOYMENT_CONFIGURATION",
},
cli.Int64Flag{
Name: "desired-count",
Usage: "The number of instantiations of the specified task definition to place and keep running on your cluster",
EnvVar: "PLUGIN_DESIRED_COUNT",
},
cli.BoolTFlag{
Name: "yaml-verified",
Usage: "Ensure the yaml was signed",
EnvVar: "DRONE_YAML_VERIFIED",
},
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}
func run(c *cli.Context) error {
plugin := Plugin{
Key: c.String("access-key"),
Secret: c.String("secret-key"),
Region: c.String("region"),
Family: c.String("family"),
TaskRoleArn: c.String("task-role-arn"),
Service: c.String("service"),
ContainerName: c.String("container-name"),
DockerImage: c.String("docker-image"),
Tag: c.String("tag"),
Cluster: c.String("cluster"),
LogDriver: c.String("log-driver"),
PortMappings: c.StringSlice("port-mappings"),
Environment: c.StringSlice("environment-variables"),
SecretEnvironment: c.StringSlice("secret-environment-variables"),
DockerLabels: c.StringSlice("docker-labels"),
LogOptions: c.StringSlice("log-options"),
CPU: c.Int64("cpu"),
Memory: c.Int64("memory"),
MemoryReservation: c.Int64("memory-reservation"),
DeploymentConfiguration: c.String("deployment-configuration"),
DesiredCount: c.Int64("desired-count"),
YamlVerified: c.BoolT("yaml-verified"),
}
return plugin.Exec()
}