1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: Apache-2.0
11 "git.curoverse.com/arvados.git/sdk/go/config"
14 const DefaultConfigFile = "/etc/arvados/config.yml"
17 Clusters map[string]Cluster
20 // GetConfig returns the current system config, loading it from
21 // configFile if needed.
22 func GetConfig(configFile string) (*Config, error) {
24 err := config.LoadFile(&cfg, configFile)
28 // GetCluster returns the cluster ID and config for the given
29 // cluster, or the default/only configured cluster if clusterID is "".
30 func (sc *Config) GetCluster(clusterID string) (*Cluster, error) {
32 if len(sc.Clusters) == 0 {
33 return nil, fmt.Errorf("no clusters configured")
34 } else if len(sc.Clusters) > 1 {
35 return nil, fmt.Errorf("multiple clusters configured, cannot choose")
37 for id, cc := range sc.Clusters {
43 if cc, ok := sc.Clusters[clusterID]; !ok {
44 return nil, fmt.Errorf("cluster %q is not configured", clusterID)
46 cc.ClusterID = clusterID
52 ClusterID string `json:"-"`
53 ManagementToken string
54 SystemNodes map[string]SystemNode
55 InstanceTypes []InstanceType
58 type InstanceType struct {
68 // GetThisSystemNode returns a SystemNode for the node we're running
70 func (cc *Cluster) GetThisSystemNode() (*SystemNode, error) {
71 hostname, err := os.Hostname()
75 return cc.GetSystemNode(hostname)
78 // GetSystemNode returns a SystemNode for the given hostname. An error
79 // is returned if the appropriate configuration can't be determined
80 // (e.g., this does not appear to be a system node).
81 func (cc *Cluster) GetSystemNode(node string) (*SystemNode, error) {
82 if cfg, ok := cc.SystemNodes[node]; ok {
85 // If node is not listed, but "*" gives a default system node
86 // config, use the default config.
87 if cfg, ok := cc.SystemNodes["*"]; ok {
90 return nil, fmt.Errorf("config does not provision host %q as a system node", node)
93 type SystemNode struct {
94 Health SystemServiceInstance `json:"arvados-health"`
95 Keepproxy SystemServiceInstance `json:"keepproxy"`
96 Keepstore SystemServiceInstance `json:"keepstore"`
97 Keepweb SystemServiceInstance `json:"keep-web"`
98 Nodemanager SystemServiceInstance `json:"arvados-node-manager"`
99 RailsAPI SystemServiceInstance `json:"arvados-api-server"`
100 Websocket SystemServiceInstance `json:"arvados-ws"`
101 Workbench SystemServiceInstance `json:"arvados-workbench"`
104 // ServicePorts returns the configured listening address (or "" if
105 // disabled) for each service on the node.
106 func (sn *SystemNode) ServicePorts() map[string]string {
107 return map[string]string{
108 "arvados-api-server": sn.RailsAPI.Listen,
109 "arvados-node-manager": sn.Nodemanager.Listen,
110 "arvados-workbench": sn.Workbench.Listen,
111 "arvados-ws": sn.Websocket.Listen,
112 "keep-web": sn.Keepweb.Listen,
113 "keepproxy": sn.Keepproxy.Listen,
114 "keepstore": sn.Keepstore.Listen,
118 type SystemServiceInstance struct {