mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-15 13:36:52 +00:00
35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using KubernetesWorkflow;
|
|
using KubernetesWorkflow.Recipe;
|
|
using Utils;
|
|
|
|
namespace CodexDiscordBotPlugin
|
|
{
|
|
public class DiscordBotContainerRecipe : ContainerRecipeFactory
|
|
{
|
|
public override string AppName => "discordbot-bibliotech";
|
|
public override string Image => "thatbenbierens/codex-discordbot:initial";
|
|
|
|
protected override void Initialize(StartupConfig startupConfig)
|
|
{
|
|
var config = startupConfig.Get<DiscordBotStartupConfig>();
|
|
|
|
SetSchedulingAffinity(notIn: "tests-runners");
|
|
|
|
AddEnvVar("TOKEN", config.Token);
|
|
AddEnvVar("SERVERNAME", config.ServerName);
|
|
AddEnvVar("ADMINROLE", config.AdminRoleName);
|
|
AddEnvVar("ADMINCHANNELNAME", config.AdminChannelName);
|
|
AddEnvVar("KUBECONFIG", "/opt/kubeconfig.yaml");
|
|
AddEnvVar("KUBENAMESPACE", config.KubeNamespace);
|
|
|
|
if (!string.IsNullOrEmpty(config.DataPath))
|
|
{
|
|
AddEnvVar("DATAPATH", config.DataPath);
|
|
AddVolume(config.DataPath, 1.GB());
|
|
}
|
|
|
|
AddVolume(name: "kubeconfig", mountPath: "/opt/kubeconfig.yaml", subPath: "kubeconfig.yaml", secret: "discordbot-sa-kubeconfig");
|
|
}
|
|
}
|
|
}
|