From c8b935ecfb435ed55c990af5185306429941253f Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 7 Feb 2023 10:57:57 -0500 Subject: [PATCH] Add runtime-demo server --- nix/metal/bitteProfile.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/nix/metal/bitteProfile.nix b/nix/metal/bitteProfile.nix index 014708c..f323918 100644 --- a/nix/metal/bitteProfile.nix +++ b/nix/metal/bitteProfile.nix @@ -241,6 +241,22 @@ in { } ]; }; + + runtime-demo = { + instanceType = "t3a.small"; + privateIP = "172.16.0.30"; + subnet = cluster.vpc.subnets.core-1; + volumeSize = 1500; + + modules = [ + (bitte + /profiles/common.nix) + { + virtualisation.docker.enable = true; + } + ]; + + securityGroupRules = {inherit (sr) internet internal ssh;}; + }; }; }; };