Constellation is the first Confidential Kubernetes. Constellation shields entire Kubernetes clusters from the (cloud) infrastructure using confidential computing.
Go to file
2022-07-14 17:25:18 +02:00
.github AB#2158 publish measurements (#268) 2022-07-13 14:04:46 +02:00
access_manager Add verbosity flag to all services (#244) 2022-07-01 16:17:06 +02:00
activation Add verbosity flag to all services (#244) 2022-07-01 16:17:06 +02:00
cli Test IntervalRetrier 2022-07-14 17:25:18 +02:00
conformance Add cis benchmark to conformance test (#165) 2022-05-19 14:57:21 +02:00
coordinator Bootstrapper 2022-07-14 17:25:18 +02:00
debugd Bootstrapper 2022-07-14 17:25:18 +02:00
docs Move kubernetes package into internal 2022-07-14 17:25:18 +02:00
hack AB#1915 Local PCR calculation (#243) 2022-07-04 12:59:43 +02:00
image Always pull newest image version of COSA (#182) 2022-05-31 10:36:29 +02:00
internal Test IntervalRetrier 2022-07-14 17:25:18 +02:00
kms Add verbosity flag to all services (#244) 2022-07-01 16:17:06 +02:00
mount Use Constellation KMS instead of deprecated vpn API for requesting keys (#248) 2022-07-05 09:48:47 +02:00
proto Delete Coordinator core and apis 2022-07-14 17:25:18 +02:00
state Bootstrapper 2022-07-14 17:25:18 +02:00
terraform/libvirt AB#1915 Local PCR calculation (#243) 2022-07-04 12:59:43 +02:00
test Delete Coordinator core and apis 2022-07-14 17:25:18 +02:00
verify Add verbosity flag to all services (#244) 2022-07-01 16:17:06 +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 Ref/prepare changelog for v1.3.1 (#263) 2022-07-11 15:19:56 +02:00
CMakeLists.txt Ref/prepare changelog for v1.3.1 (#263) 2022-07-11 15:19:56 +02:00
CONTRIBUTING.md Inform about Go workspaces in CONTRIBUTING.md 2022-06-01 12:15:02 +02:00
Dockerfile.build CoreOS build pipeline fix (#256) 2022-07-07 11:28:12 +02:00
go.mod Delete Coordinator core and apis 2022-07-14 17:25:18 +02:00
go.sum Delete Coordinator core and apis 2022-07-14 17:25:18 +02:00
README.md Invoke tests through ctest (#230) 2022-06-30 13:26:21 +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`

Testing

You can run all integration and unitttests like this:

ctest -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