-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathunits.go
More file actions
34 lines (32 loc) · 800 Bytes
/
units.go
File metadata and controls
34 lines (32 loc) · 800 Bytes
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
package units
// Names are the base names of Deis units. Update this list when adding a new Deis unit file.
var Names = []string{
"deis-builder",
"deis-cache",
"deis-controller",
"deis-database",
"deis-logger",
"deis-logspout",
"deis-publisher",
"deis-registry",
"deis-router",
"deis-store-admin",
"deis-store-daemon",
"deis-store-gateway",
"deis-store-metadata",
"deis-store-monitor",
"deis-store-volume",
"deis-swarm-manager",
"deis-swarm-node",
"deis-mesos-marathon",
"deis-mesos-master",
"deis-mesos-slave",
"deis-zookeeper",
"deis-kube-apiserver",
"deis-kube-controller-manager",
"deis-kube-kubelet",
"deis-kube-proxy",
"deis-kube-scheduler",
}
// URL is the GitHub url where these units can be refreshed from
var URL = "https://raw.githubusercontent.com/deis/deis/"