Constellation is the first Confidential Kubernetes. Constellation shields entire Kubernetes clusters from the (cloud) infrastructure using confidential computing.
Go to file
Daniel Weiße 042f668d20 AB#2190 Verification service (#232)
* Add verification service

* Update verify command to use new Constellation verification service

* Deploy verification service on cluster init

* Update pcr-reader to use verification service

* Add verification service build workflow

Signed-off-by: Daniel Weiße <dw@edgeless.systems>

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
2022-06-28 17:03:28 +02:00
.github AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
access_manager Replace logging with default logging interface (#233) 2022-06-28 16:51:30 +02:00
activation Replace logging with default logging interface (#233) 2022-06-28 16:51:30 +02:00
cli AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
conformance Add cis benchmark to conformance test (#165) 2022-05-19 14:57:21 +02:00
coordinator AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
debugd Replace logging with default logging interface (#233) 2022-06-28 16:51:30 +02:00
docs terraform libvirt: document usage 2022-05-25 10:30:58 +02:00
hack AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
image Always pull newest image version of COSA (#182) 2022-05-31 10:36:29 +02:00
internal AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
kms Replace logging with default logging interface (#233) 2022-06-28 16:51:30 +02:00
mount AB#2033 Remove redundant "failed" in error wrapping 2022-06-22 12:02:10 +01:00
proto AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
state Replace logging with default logging interface (#233) 2022-06-28 16:51:30 +02:00
terraform/libvirt Add machine variable to terraform module (#179) 2022-05-30 10:29:34 +02:00
test Move aTLS fakes into atls package 2022-06-15 16:31:24 +02:00
verify AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
.dockerignore Implement activation service 2022-06-08 17:17:06 +02:00
.gitignore AB#2190 Verification service (#232) 2022-06-28 17:03:28 +02:00
.golangci.yml monorepo 2022-03-22 16:09:39 +01:00
CHANGELOG.md add gcp loadbalancer 2022-06-23 14:00:20 +02:00
CMakeLists.txt Feat/more version info (#224) 2022-06-21 15:12:27 +02:00
CONTRIBUTING.md Inform about Go workspaces in CONTRIBUTING.md 2022-06-01 12:15:02 +02:00
Dockerfile.build fix build coordinator workflow (#190) 2022-06-01 17:17:37 +02:00
Dockerfile.kms AB#2111 Deploy activation service on cluster init (#205) 2022-06-15 16:00:48 +02:00
go.mod Upgrade to Cobra v1.5.0 & go mod tidy 2022-06-28 13:55:50 +02:00
go.sum Upgrade to Cobra v1.5.0 & go mod tidy 2022-06-28 13:55:50 +02:00
README.md constellation-access-manager: Persistent SSH as ConfigMap (#184) 2022-06-13 16:23:19 +02:00

Constellation

This is the main repository of Constellation.

Core components:

  • access_manager: Contains the access-manager pod used to persist SSH users based on a K8s ConfigMap
  • cli: The CLI is used to manage a Constellation cluster
  • coordinator: The Coordinator is a node agent whose most important task is to bootstrap a node
  • image: Build files for the Constellation disk image
  • kms: Constellation's key management client and server
  • mount: Package used by CSI plugins to create and mount encrypted block devices
  • state: Contains the disk-mapper that maps the encrypted node data disk during boot

Development components:

  • conformance: Kubernetes conformance tests
  • debugd: Debug daemon and client
  • hack: Development tools
  • proto: Proto files generator
  • terraform: Infrastructure management using terraform (instead of constellation create/destroy)
    • libvirt: Deploy local cluster using terraform, libvirt and QEMU
  • test: Integration test

Additional repositories:

Build

Prerequisites:

  • Go 1.18

  • Docker

  • Packages on Ubuntu:

    sudo apt install build-essential cmake libssl-dev pkg-config libcryptsetup12 libcryptsetup-dev
    
  • Packages on Fedora:

    sudo dnf install @development-tools pkg-config cmake openssl-devel cryptsetup-libs cryptsetup-devel
    
mkdir build
cd build
cmake ..
make -j`nproc`

Cloud credentials

Using the CLI requires the user to make authorized API calls to the CSP API. See the docs for configuration.

Deploying a locally compiled coordinator binary

By default, constellation create ... will spawn cloud provider instances with a pre-baked coordinator binary. For testing, you can use the constellation debug daemon (debugd) to upload your local coordinator binary to running instances and to obtain SSH access. Follow this introduction on how to install and setup cdbg

Development Guides

Deployment Guides