core/internal/consensus: refactor

This refactors the consensus to:
 - use localstorage
 - use the supervisor system
 - have a significantly simpler API for callers (no more
   PrecreateCertificate, etc.)
 - use a watcher for CRLs
 - actually have all bootstrap paths tested
 - keep the CA key in memory (keeping it in etcd only seems like odd
   threat modelling and can posisbly cause issues on quorum losses)

This breaks the build, as is part of a multi-revision refactor of the
core node service code.

Test Plan: adds tests \o/

X-Origin-Diff: phab/D579
GitOrigin-RevId: fadee7785028ef806d8243a770c70cb0fb82c20e
diff --git a/core/internal/launch/BUILD.bazel b/core/internal/launch/BUILD.bazel
index 382c73b..47cbc95 100644
--- a/core/internal/launch/BUILD.bazel
+++ b/core/internal/launch/BUILD.bazel
@@ -8,6 +8,7 @@
     deps = [
         "//core/api/api:go_default_library",
         "//core/internal/common:go_default_library",
+        "//golibs/common:go_default_library",
         "@com_github_golang_protobuf//proto:go_default_library",
         "@org_golang_google_grpc//:go_default_library",
         "@org_golang_x_sys//unix:go_default_library",