core/internal: move containerd and kubernetes to localstorage
This moves the last users of the old 'storage' library onto 'localstorage'. We move a lot of 'runtime' directories to a single `/ephemeral` root. This could be called `/run`, but that might imply FHS compliance - which we don't have, nor want to have.
We also slightly refactor Kubernetes services to be a bit nicer to spawn. But generally, this is a pure refactor, with no functional changes.
Test Plan: this should fail. part of a larger stack. D590 is the first tip of the stack that should work.
X-Origin-Diff: phab/D589
GitOrigin-RevId: d2a7c0bb52c2a7c753199221c609e03474936c22
diff --git a/core/cmd/init/BUILD.bazel b/core/cmd/init/BUILD.bazel
index af37ea6..368470f 100644
--- a/core/cmd/init/BUILD.bazel
+++ b/core/cmd/init/BUILD.bazel
@@ -16,9 +16,9 @@
"//core/internal/common:go_default_library", # keep
"//core/internal/common/supervisor:go_default_library",
"//core/internal/network:go_default_library",
- "//core/internal/node:go_default_library",
- "//core/internal/storage:go_default_library",
"//core/pkg/tpm:go_default_library",
+ "@de_cinfra_git_source_nexantic_git//core/internal/node:go_default_library",
+ "@de_cinfra_git_source_nexantic_git//core/internal/storage:go_default_library",
"@org_golang_x_sys//unix:go_default_library",
"@org_uber_go_zap//:go_default_library",
],