aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/maintenance/ContainerWireguardTask.java
blob: 858b3d647fc99fdee042b8ea00be684f31a08c4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yahoo.vespa.hosted.node.admin.maintenance;

import com.yahoo.vespa.hosted.node.admin.container.ContainerId;
import com.yahoo.vespa.hosted.node.admin.nodeagent.NodeAgentContext;

/**
 * Wireguard task for containers.
 *
 * @author gjoranv
 */
public interface ContainerWireguardTask {

    void converge(NodeAgentContext context, ContainerId containerId);

}