2
0
mirror of synced 2025-02-21 12:38:20 +00:00

26 lines
740 B
C#
Raw Normal View History

2023-09-21 10:56:48 +02:00
using Core;
using KubernetesWorkflow;
2023-09-15 12:36:35 +02:00
2023-09-19 11:51:59 +02:00
namespace GethPlugin
{
2023-09-21 10:56:48 +02:00
public class GethDeployment : IHasContainer
2023-09-19 11:51:59 +02:00
{
2023-10-23 13:36:20 +02:00
public GethDeployment(RunningContainer container, Port discoveryPort, Port httpPort, Port wsPort, GethAccount account, string pubKey)
2023-09-19 11:51:59 +02:00
{
2023-09-21 14:39:41 +02:00
Container = container;
2023-09-19 11:51:59 +02:00
DiscoveryPort = discoveryPort;
HttpPort = httpPort;
WsPort = wsPort;
2023-10-23 13:36:20 +02:00
Account = account;
2023-09-19 11:51:59 +02:00
PubKey = pubKey;
}
2023-09-21 10:56:48 +02:00
public RunningContainer Container { get; }
2023-09-19 11:51:59 +02:00
public Port DiscoveryPort { get; }
public Port HttpPort { get; }
public Port WsPort { get; }
2023-10-23 13:36:20 +02:00
public GethAccount Account { get; }
2023-09-19 11:51:59 +02:00
public string PubKey { get; }
}
}