aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/Agent.java
blob: d1c590ad83e695f7abaab02606726cc6e7f920d3 (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
35
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.provision.node;

/**
 * The enum of agents making changes to the system.
 * 
 * @author bratseth
 */
public enum Agent {

    operator, // A hosted Vespa operator. Some logic recognizes these events.
    application, // An application package change deployment
    system, // An unspecified system agent
    nodeAdmin, // A hosted Vespa node

    // Specific system agents:
    NodeFailer,
    NodeHealthTracker,
    Rebalancer,
    DirtyExpirer,
    FailedExpirer,
    InactiveExpirer,
    ProvisionedExpirer,
    ReservationExpirer,
    ParkedExpirer,
    HostCapacityMaintainer,
    HostResumeProvisioner,
    RetiringOsUpgrader,
    RebuildingOsUpgrader,
    SpareCapacityMaintainer,
    SwitchRebalancer,
    HostEncrypter,
    HostFlavorUpgrader,

}