about summary refs log tree commit diff
path: root/ops/modules
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@tvl.su>2023-10-08T15·42+0300
committertazjin <tazjin@tvl.su>2023-10-08T18·13+0000
commit713a70d15457c46a281c71e2ebb98e6981c91798 (patch)
tree64e1d88b874e8b3ecb84d37200d90da2de42487c /ops/modules
parent1629f3064fbb0ef8d33dc1eb5db154a42a918bf9 (diff)
fix(ops/modules): remove cloud-init from yandex-cloud module r/6730
cloud-init stopped working for unknown reasons, enabling it will break
DHCP and SSH, and make the image inaccessible.

This means that access needs to be provided by baking keys into the
image instead.

Change-Id: Ib8d32a02d0a8ea61d75921f147349d73a27ef751
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9572
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Diffstat (limited to 'ops/modules')
-rw-r--r--ops/modules/yandex-cloud.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/ops/modules/yandex-cloud.nix b/ops/modules/yandex-cloud.nix
index cca81bc0ca..cf6d1eb810 100644
--- a/ops/modules/yandex-cloud.nix
+++ b/ops/modules/yandex-cloud.nix
@@ -66,7 +66,6 @@ in
     systemd.services."serial-getty@ttyS0".enable = true;
 
     services.openssh.enable = true;
-    services.cloud-init.enable = true;
 
     system.build.yandexCloudImage = import (pkgs.path + "/nixos/lib/make-disk-image.nix") {
       inherit lib config pkgs;