aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/noderepository/NodeType.java
blob: 845400ff9786e0c1e1ff63fe73e6e8aaed4703ba (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.noderepository;

/**
 * The possible types of nodes in the node repository
 *
 * @author bjorncs
 */
public enum NodeType {

    /** A node to be assigned to a tenant to run application workloads */
    tenant,

    /** A host of a set of (docker) tenant nodes */
    host,

    /** Nodes running the shared proxy layer */
    proxy,

    /** A host of a (docker) proxy node */
    proxyhost,

    /** A config server */
    config,

    /** A host of a (docker) config server node */
    confighost,

    /** A controller */
    controller,

    /** A host of a (docker) controller node */
    controllerhost
}