Quickstart
In this guide, we’ll walk you through how to install Marblerun into your Kubernetes cluster. Then we’ll deploy a sample confidential application to demonstrate the capabilities of Marblerun.
Installing Marblerun is easy. First, you will install the CLI (command-line interface) onto your local machine. Using this CLI, you’ll then install the control plane onto your Kubernetes cluster. Finally, you will “mesh” one or more of your own services and setup a Manifest defining your confidential service mesh.
Note
A working SGX DCAP environment is required for Marblerun to work. For the ease of exploring and testing we provide a simulation mode with--simulation
that runs without SGX hardware.
In this quickstart we deploy Marblerun in simulation mode. Be aware that this is not meant for poduction and runs without real SGX enclaves.Step 0: Setup
First, ensure you have access to a Kubernetes cluster and kubectl installed and configured. Probably the easiest way to get started is to run Kubernetes on your local machine using Minikube. Another easy way is to use Azure Kubernetes Service (AKS), which offers SGX-enabled nodes.
You can validate your setup by running:
kubectl version --short
You should see output with both a Client Version and Server Version component.
Now your cluster is ready and we’ll install the Marblerun CLI.
Step 1: Install the CLI
If this is your first time running Marblerun, you will need to download the marblerun command-line interface (CLI) onto your local machine. The CLI will allow you to interact with your Marblerun deployment.
To install the CLI manually, run:
For the current user
wget -P ~/.local/bin/marblerun https://github.com/edgelesssys/marblerun/releases/latest/download/marblerun
chmod +x ~/.local/bin/marblerun
Global install (requires root)
sudo wget -O /usr/local/bin/marblerun https://github.com/edgelesssys/marblerun/releases/latest/download/marblerun
sudo chmod +x /usr/local/bin/marblerun
Once installed, verify the CLI is running correctly with:
marblerun
Step 2: Install the control-plane onto your cluster
Now that you have the CLI running locally and a cluster that is ready to go, it’s time to install the control plane.
Install Marblerun’s Coordinator control-plane by running:
marblerun install --simulation
The marblerun install
command generates a Kubernetes manifest with all the necessary control plane resources.
The simulation flag tells Marblerun that real SGX hardware might not be present and the SGX-layer should be emulated.
Wait for the control plane to finish installing:
marblerun check
This command will wait until all components of Marblerun are ready to be used or return an error after a timeout period is reached.
Step 3: Initialize and verify the Coordinator
After installing the Coordinator we need to verify its integrity and establish trust in a confidential computing sense. Therefore, we utilize SGX remote attestation and obtain a root certificate for the entire confidential service mesh.
- Port forward the Coordinator’s Client API
kubectl -n marblerun port-forward svc/coordinator-client-api 4433:4433 --address localhost >/dev/null &
export MARBLERUN=localhost:4433
- Verify the quote and get the coordinator’s root certificate
marblerun certificate root $MARBLERUN -o marblerun.crt --insecure
The CLI will obtain the coordinator’s remote attestation quote and verify it against the configuration on our release page.
The SGX quote proves the integrity of the coordinator pod.
Since we are not using SGX hardware in this case (--simulation
), the quote verification is omitted by marblerun.
The CLI returns a certificate as result and stores it as marblerun.crt
in your current directory.
The certificate is bound to the quote and can be used for future verification.
It can also be used as a root of trust for authenticating your confidential applications.
Step 4: Deploy the demo application
To get a feel for how Marblerun would work for one of your services, you can install a demo application. The emojivoto application is a standalone Kubernetes application that uses a mix of gRPC and HTTP calls to allow the users to vote on their favorite emojis. Created as a demo application for the popular Linkerd service mesh, we’ve created a confidential variant that uses TLS for all gRPC and HTTP connections. Clone the demo application from the GitHub repository by running:
git clone https://github.com/edgelesssys/emojivoto.git && cd emojivoto
Marblerun guarantees that the topology of your distributed app adheres to a Manifest specified in simple JSON. Marblerun verifies the integrity of services, bootstraps them, and sets up encrypted connections between them. The emojivoto demo already comes with a manifest, which you can deploy onto Marblerun by running:
marblerun manifest set tools/manifest.json $MARBLERUN --insecure
You can check that the state of Marblerun changed and is now ready to authenticate your services by running:
marblerun status
Finally, install the demo application onto your cluster. Please make sure you have Helm (“the package manager for Kubernetes”) installed at least at Version v3.2.0. Install emojivoto into the emojivoto namespace by running:
helm install -f ./kubernetes/nosgx_values.yaml emojivoto ./kubernetes --create-namespace -n emojivoto
Step 5: Watch it run
You can now check the Marblerun log and see the services being authenticated by the coordinator.
kubectl -n marblerun logs -f -ledgeless.systems/control-plane-component=coordinator
Port forward the front-end web service to access it on your local machine by running:
sudo kubectl -n emojivoto port-forward svc/web-svc 443:443 --address 0.0.0.0
Now visit https://localhost.
You’ll be presented with a certificate warning because your browser does not know Marblerun’s root certificate as a root of trust.
You can safely ignore this error for now and proceed to the website.
Voila! Your emoji votes have never been safer!
That’s it! 👏
Congratulations, you’re now a Marblerun user! Here are some suggested next steps:
- Explore how Marblerun takes care of your secrets
- Add your own service to Marblerun
- Learn more about Marblerun’s architecture
- Chat with us on Discord
Welcome to the Marblerun community!