constellation/docs/versioned_docs/version-2.0/workflows/verify-cluster.md
Thomas Tendyck d861f7b519
docs: minor fixes in first steps and wording improvements (#155)
* docs: minor fixes in first steps and wording improvements

* publish to 2.0
2022-09-14 14:40:41 +02:00

2.4 KiB

Verify your cluster

Constellation's attestation feature allows you, or a third party, to verify the integrity and confidentiality of your Constellation cluster.

Fetch measurements

To verify the integrity of Constellation you need trusted measurements to verify against. For each node image released by Edgeless Systems, there are signed measurements, which you can download using the CLI:

constellation config fetch-measurements

This command performs the following steps:

  1. Download the signed measurements for the configured image. By default, this will use Edgeless Systems' public measurement registry.
  2. Verify the signed images. This will use Edgeless Systems' public key.
  3. Write measurements into configuration file.

The verify command

:::note The steps below are purely optional. They're automatically executed by constellation init when you initialize your cluster. The constellation verify command mostly has an illustrative purpose. :::

The verify command obtains and verifies an attestation statement from a running Constellation cluster.

constellation verify [--cluster-id ...]

From the attestation statement, the command verifies the following properties:

  • The cluster is using the correct Confidential VM (CVM) type.
  • Inside the CVMs, the correct node images are running. The node images are identified through the measurements obtained in the previous step.
  • The unique ID of the cluster matches the one passed in via --cluster-id.

Once the above properties are verified, you know that you are talking to the right Constellation cluster and it's in a good and trustworthy shape.

Custom arguments

The verify command also allows you to verify any Constellation deployment that you have network access to. For this you need the following:

  • The IP address of a running Constellation cluster's VerificationService. The VerificationService is exposed via a NodePort service using the external IP address of your cluster. Run kubectl get nodes -o wide and look for EXTERNAL-IP.
  • The cluster's clusterID. See cluster identity for more details.

For example:

constellation verify -e 192.0.2.1 --cluster-id Q29uc3RlbGxhdGlvbkRvY3VtZW50YXRpb25TZWNyZXQ=