Inject license via Hashicorp Vault Agent Init Container | HiveMQ Platform Operator (new)

Vault Agent provides a number of different helper features, specifically addressing the following challenges:

  • Automatic authentication

  • Secure delivery/storage of tokens

  • Lifecycle management of these tokens (renewal & re-authentication)

Vault Agent can help authenticate to Hashicorp Vault, retrieving a base64 encoded HiveMQ license, decoding the license, and saving it to a file in the HiveMQ container.

Prerequisites

These instructions require the following tools on the local machine:

  • Kubernetes command-line interface (CLI)

  • Helm CLI

The kubectl context should be set to the Kubernetes cluster where the HiveMQ broker will be installed.

 Instructions

Install the Hashicorp Vault Helm Chart

  1. Add the HashiCorp Helm repository.

    helm repo add hashicorp https://helm.releases.hashicorp.com
  2. Update all the repositories to ensure helm is aware of the latest versions.

    helm repo update hashicorp
  3. Install the latest version of the Hashicorp Vault server running in development mode.
    Development mode: Running a Hashicorp Vault server in development is automatically initialized and unsealed. This is ideal in a learning environment but NOT recommended for a production environment.

    kubectl create namespace vault kubectl config set-context --current --namespace=vault helm install vault hashicorp/vault --set "server.dev.enabled=true" --namespace vault

    The vault pod and vault Agent Injector pod are deployed in the default namespace.

  4. Display all the pods in the default namespace.

    Successful output from the command resembles this example:

    The vault-0 pod runs a vault server in development mode. The vault-agent-injector pod performs the injection based on the annotations present or patched on a deployment.

  5. Wait until the vault-0 pod and vault-agent-injector pod are running and ready 1/1.

Set a secret in Hashicorp Vault

  1. Prepare your HiveMQ license in the file named hivemq.lic.

  2. Run the command on the vault-0 pod to enable kv-v2 secrets at the path hivemq. The command is executed on the vault-0 container.

    Successful output from the command resembles this example:

  3. Create a new secret at path hivemq/test/license with a hivemq_license_b64 key and base64-encoded hivemq.lic file.

    Successful output from the command resembles this example:

  4. Verify that the secret is defined at the path hivemq/test/license.

    Successful output from the command resembles this example:

    The secret is ready for the application.

Configure Kubernetes authentication

Hashicorp Vault provides a Kubernetes authentication method that enables clients to authenticate with a Kubernetes Service Account Token. This token is provided to each pod when it is created.

  1. Enable the Kubernetes authentication method.

    Successful output from the command resembles this example:

    Hashicorp Vault accepts a service token from any client in the Kubernetes cluster. During authentication, Hashicorp Vault verifies that the service account token is valid by querying a token review Kubernetes endpoint.

  2. Configure the Kubernetes authentication method to use the location of your HiveMQ Kubernetes cluster.

    Note: Ensure you are using Hashicorp Vault v1.13.3 or greater for the best compatibility with recent Kubernetes versions.

    Successful output from the command resembles this example:

    The environment variable KUBERNETES_PORT_443_TCP_ADDR is defined and references the internal network address of the Kubernetes host.

  3. Verify the kubernetes_host of the created kubernetes authentication method.

  4. For a client to read the secret data defined at hivemq/test/license, the read capability must be granted for the path hivemq/data/test/license. A policy defines a set of capabilities.

  5. Create a new policy named hivemq that grants read access to secrets at the path hivemq/data/test/license.

  6. Create a Kubernetes authentication role named hivemq.

    Successful output from the command resembles this example:

    The role connects the Kubernetes service account, hivemq-platform-pod-broker, and namespace, hivemq, with the Hashicorp Vault policy, hivemq. The tokens returned after authentication are valid for 24 hours.

  7. Lastly, exit the vault-0 pod.

Inject secrets into the pods

  1. Switch the kubectl context to the HiveMQ Kubernetes cluster.

  2. Install hivemq

  3. Check the pods in the hivemq namespace.

    Wait until the deployed broker-0 pod reports that it is Running and ready.

  4. Check service accounts. Copy the name of the service account of hivemq platform pods. In this example: hivemq-platform-pod-broker

  5. Create a new secret required for the Hashicorp Vault authentication. vault-auth-secret.yaml:

  6. Create a config map definition file configmap.yaml with a Vault Agent configuration file, vault-agent-config.hcl

    This creates a config map with a Vault Agent configuration file, vault-agent-config.hcl. Notice that the Vault Agent Auto-Auth (auto_auth block) is configured to use the kubernetes auth method enabled at the auth/kubernetes path on the Vault Server. The Vault Agent will use the hivemq role that you created in your Hashicorp Vault.

    The sink block specifies the location on the disk where to write tokens. In this example, the sink is set to /home/vault/.vault-token.

    The template block creates a file that retrieves the hivemq_license_b64 secret at the hivemq/data/test/license path, decodes it from base64, and writes the decoded text to the /etc/secrets/hivemq.lic file.

  7. Create a ConfigMap containing a Vault Agent configuration.

  8. Update HiveMQ Platform helm chart values by adding a new Init Container for the Vault Agent. You can get the original values by running the command

    Add a new Init Container for the Vault Agent.

    If your Hashicorp Vault is external to the HiveMQ Kubernetes cluster, replace the domain vault.vault.svc.cluster.local with the external IP of your Hashicorp Vault.

  9. Update HiveMQ Platform helm chart values by adding the volume required by the Vault Agent Init Container configuration file and the destination volume for the HiveMQ license secret.

  10. Update the HiveMQ Platform

Test end-to-end

When the HiveMQ pod has started successfully the vault-agent init container will be run. The container shall authenticate to the Vault, fetch the secret, and decode the secret to the file hivemq.lic.

  1. Check the log of the Vault Agent Init Container:

    The following log illustrates a successful run of the Vault Agent Init Container.

  1. Check the log of the HiveMQ container:

    The following illustrates a successful use of the HiveMQ license.

 Related articles

Retrieve secrets for Kubernetes workloads with Vault Agent | Vault | HashiCorp Developer

Mange secrets by injecting a Vault Agent container | Vault | HashiCorp Developer

Filter by label

There are no items with the selected labels at this time.