aboutsummaryrefslogtreecommitdiffstats
path: root/service-monitor/src/main/java/com/yahoo/vespa/service/monitor/application/ConfigServerHostApplication.java
blob: 18420fe64a12037999caac945874e9b8e4697b46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.service.monitor.application;

import com.yahoo.config.provision.ClusterSpec;
import com.yahoo.config.provision.NodeType;

public class ConfigServerHostApplication extends HostedVespaApplication {

    public static final ConfigServerHostApplication CONFIG_SERVER_HOST_APPLICATION = new ConfigServerHostApplication();

    private ConfigServerHostApplication() {
        super("configserver-host", NodeType.confighost,
                ClusterSpec.Type.container, ClusterSpec.Id.from("configserver-host"));
    }
}