Our first official VSecM Contributor Sync will be on…
Friday, 2023-09-29 (instead of Thursday)
at 8:00am Pacific time.
Anyone is welcome to join.
Check out the details about how to join the meeting.
Quickstart
Get Your Hands Dirty
This is a quickstart guide to get you up and running with VSecM.
Prerequisites
- Minikube: You can install VMware Secrets Manager on any Kubernetes cluster, but we’ll use Minikube in this quickstart example. Minikube is a tool that makes it easy to run Kubernetes locally.
-
make: You’ll need
make
to run certain build tasks. You can installmake
using your favorite package manager. - Docker: This quickstart guide assumes that Minikube uses the Docker driver. If you use a different driver, things will still likely work, but you might need to tweak some of the commands and configuration.
I Have a Kubernetes Cluster Already
If you are already have a cluster and a
kubectl
that you can use on that cluster, you won’t need Minikube, so you can skip the steps related to initializing Minikube and configuring Minikube-related environment variables.
Also, if you are not using minikube, you will not need a local docker instance either.
A Video Is Worth A Lot of Words
Here’s a video that walks you through the steps in this quickstart guide:
Clone the Repository
Let’s start by cloning the VMware Secrets Manager repository first:
cd $WORKSPACE
git clone https://github.com/vmware-tanzu/secrets-manager.git
cd secrets-manager
Initialize Minikube
Next, let’s initialize Minikube:
cd $WORKSPACE/secrets-manager
# If you have a previous minikube setup, you can delete it with:
# make k8s-delete
make k8s-start
Configure Docker Environment Variables
Next, let’s configure the Docker environment variables for Minikube.
We don’t strictly need this for the quickstart, but it’s a good idea to do it anyway.
eval $(minikube -p minikube docker-env)
Install SPIRE and VMware Secrets Manager
Next we’ll install SPIRE and VMware Secrets Manager on the cluster.
cd $WORKSPACE/secrets-manager
make deploy
This will take a few minutes to complete.
Verify Installation
Let’s check that the installation was successful by listing the pods int
the spire-system
and vsecm-system
namespaces:
kubectl get po -n spire-system
# Output:
NAME READY STATUS RESTARTS
spire-agent-p9m27 3/3 Running 1 (23s ago)
spire-server-6fb4f57c8-6s7ns 2/2 Running 0
kubectl get po -n vsecm-system
# Output:
NAME READY STATUS RESTARTS
vsecm-safe-85dd95949c-f4mhj 1/1 Running 0
vsecm-sentinel-6dc9b476f-djnq7 1/1 Running 0
All the pods look up and running, so we can move on to the next step.
List Available Commands
make help
lists all the available make targets in a cheat sheet format:
make help
# The output will vary as we add more commands to the Makefile.
# It will contain useful information about the available commands.
Deploy an Example Workload
Now, let’s deploy an example workload to the cluster to test VMware Secrets Manager in action.
cd $WORKSPACE/secrets-manager
make example-sdk-deploy
This will take a few moments too.
When done you would ba able to list the pods in the default
namespace:
kubectl get po -n default
# Output
NAME READY STATUS RESTARTS AGE
example-68997489c6-8j8kj 1/1 Running 0 1m51s
Let’s check the logs of our example workload:
kubectl logs example-68997489c6-8j8kj
The output will be something similar to this:
2023/07/28 01:26:51 fetch
Failed to read the secrets file. Will retry in 5 seconds…
Secret does not exist
2023/07/28 01:27:03 fetch
Failed to read the secrets file. Will retry in 5 seconds…
Secret does not exist
2023/07/28 01:27:08 fetch
Failed to read the secrets file. Will retry in 5 seconds…
… truncated …
Our sample workload is trying to fetch a secret, but it can’t find it.
Here’s the source code of our sample workload to provide some context:
package main
// … truncated headers …
func main() {
// … truncated irrelevant code …
for {
log.Println("fetch")
d, err := sentry.Fetch()
if err != nil {
fmt.Println("Failed. Will retry in 5 seconds…")
fmt.Println(err.Error())
time.Sleep(5 * time.Second)
continue
}
if d.Data == "" {
fmt.Println("No secret yet… will check again later.")
time.Sleep(5 * time.Second)
continue
}
fmt.Printf(
"secret: updated: %s, created: %s, value: %s\n",
d.Updated, d.Created, d.Data,
)
time.Sleep(5 * time.Second)
}
}
What the demo workload does is to try to fetch a secret every 5 seconds
using the sentry.Fetch()
function.
sentry.Fetch()
is a function provided by the VMware Secrets Manager;
it establishes a secure mTLS connection between the workload and
VSecM Safe to fetch the secret.
Since this workload does not have any secret registered, the request fails and the workload retries every 5 seconds.
Since this is a quickstart example, we won’t dive into the details of how the workload establishes a secure mTLS connection with the VSecM Safe. We’ll cover this in the following sections.
For the sake of this quickstart, we can assume that secure communication between the workload and the VSecM Safe is already taken care of for us.
Register a Secret
Now, let’s register a secret and see what happens.
To register a secret we’ll need to find the vsecm-sentinel
pod in the
vsecm-system
namespace and execute a command inside the pod.
Let’s get the pod first:
kubectl get po -n vsecm-system
Here’s a sample output:
NAME READY STATUS RESTARTS
vsecm-safe-85dd95949c-f4mhj 1/1 Running 0
vsecm-sentinel-6dc9b476f-djnq7 1/1 Running 0
vsecm-sentinel-6dc9b476f-djnq7
is what we need here.
Let’s use it and register a secret to our example workload:
kubectl exec vsecm-sentinel-6dc9b476f-djnq7 -n vsecm-system -- \
safe -w "example" -n "default" -s "VSecMRocks"
Sentinel Command Line Help
VSecM Sentinel comes with a command line tool called
safe
.safe
allows you to register secrets to VSecM Safe, delete secrets, or list existing secrets.You can execute
safe -h
orsafe --help
to get a list of available commands and options.
You’ll get an OK
as a response:
OK
For the command safe -w "example" -n "default" -s "VSecMRocks"
-
-w
is the workload name -
-n
is the namespace -
-s
is the secret value
But how do you know what the workload name is?
That’s where ClusterSPIFFEID comes in:
kubectl get ClusterSPIFFEID
And here’s the output:
NAME AGE
example 4h33m
vsecm-safe 4h35m
vsecm-sentinel 4h35m
ClusterSPIFFEID with an Analogy
Imagine the ClusterSPIFFEID as a badge maker for an organization.
If anyone could create or modify badges (SVIDs), they could make one for themselves that mimics the CEO’s badge, gaining access to restricted areas.
Hence, only trusted personnel (with elevated privileges) are allowed to manage the badge maker.
Make sure your guard your ClusterSPIFFEID with proper RBAC rules.
Let’s see the details of this example
SPIFFE ID:
kubectl describe ClusterSPIFFEID example
And the output:
Name: example
Namespace:
Labels: <none>
Annotations: <none>
API Version: spire.spiffe.io/v1alpha1
Kind: ClusterSPIFFEID
Metadata:
Creation Timestamp: 2023-07-28T01:26:48Z
Generation: 1
Resource Version: 832
UID: b254294e-eed0-4116-8b38-2fb1d101e387
Spec:
Pod Selector:
Match Labels:
app.kubernetes.io/name: example
Spiffe ID Template:
spiffe://vsecm.com/workload/example/
ns/{{ .PodMeta.Namespace }}/
sa/{{ .PodSpec.ServiceAccountName }}/n/{{ .PodMeta.Name }}
Workload Selector Templates:
k8s:ns:default
k8s:sa:example
Status:
Stats:
Entries Masked: 0
Entries To Set: 1
Entry Failures: 0
Namespaces Ignored: 4
Namespaces Selected: 6
Pod Entry Render Failures: 0
Pods Selected: 1
For the sake of keeping things simple because this is a quickstart, we can
assume that someone has created this example
SPIFFE ID for us, and using
this SPIFFE ID, our example workload can securely communicate with the
VSecM Safe.
Verifying Secret Registration
Since we’ve registered a secret, let’s see if our example workload can fetch the secret now and display it in its logs.
kubectl logs example-68997489c6-8j8kj
And the output would be something like this:
2023/07/28 06:06:39 fetch
secret: updated: "2023-07-28T01:34:30Z",
created: "2023-07-28T01:34:30Z", value: VSecMRocks
2023/07/28 06:06:44 fetch
secret: updated: "2023-07-28T01:34:30Z",
created: "2023-07-28T01:34:30Z", value: VSecMRocks
2023/07/28 06:06:49 fetch
secret: updated: "2023-07-28T01:34:30Z",
created: "2023-07-28T01:34:30Z", value: VSecMRocks
As you can see, the secret is now fetched and displayed in the logs.
The beauty of this approach is when we change the secret using VSecM Sentinel, the workload will automatically fetch the new value, without having to restart itself.
Where to Go From Here
This quickstart is meant to give you a quick overview of how you can use VMware Secrets Manager to securely manage secrets in your Kubernetes clusters.
After successfully completing this quickstart, you can try the following:
- Join the VMware Secrets Manager Community on Slack where helpful community members and VMware Secrets Manager engineers hang out and answer questions.
- Navigate this website to learn more about VMware Secrets Manager, starting with its architecture, and design philosophy.
- Follow a more detailed tutorial that contains multiple use cases.