How to use Kubernetes Secret to specify HiveMQ license with HiveMQ Operator.
HiveMQ requires a valid license as a file placed in the /opt/hivemq/license
directory . There are 3 ways to add the license with HiveMQ Operator:within the HiveMQ container to operate properly. You can specify this license file using HiveMQ Operator in three different ways: as a raw value in the values.yaml
file,
...
as a configMap in the values.yaml
file,
...
or as a
...
Secret in the values.yaml
file.
...
This article explains how to use Kubernetes Secret to specify a HiveMQ license with HiveMQ Operatorwill guide you through the process of using a Kubernetes Secret
.
\uD83D\uDCD8 Instructions
Edit If you don't have the
values.yaml
file to specify that the license file is contained inhivemq-license
secret, which will be mounted to the for the HiveMQ Operator yet, you can retrieve it from the HiveMQ Helm repository and save it to a file namedvalues.yaml
using the following command:Code Block language bash helm show values 'hivemq/hivemq-operator' > values.yaml
Edit the
values.yaml
file to configure the mapping of the HiveMQ licenseSecret
to mount it into the HiveMQ container directory/opt/hivemq/license
. Find thehivemq
section in thevalues.yaml
file and add the following lines:Code Block language yaml hivemq: ... secrets: # Secrets to mount to the HiveMQ pods. These can be mounted to existing directories without shadowing the folder contents as well. - name: hivemq-license path: /opt/hivemq/license ...
If there is no namespace for the HiveMQ, then create one and switch the
kubectl
context to itCode Block language bash kubectl create ns hivemq kubectl ns hivemq
Create the secret with nave
hivemq-license
in the namespacehivemq
from the license filehivemq-2023.lic
Create a KubernetesSecret
with the namehivemq-license
using thekubectl
command. Make sure to place the license file, in this case,hivemq-2023.lic
, in the same namespace where the HiveMQ Operator is running (replace'hivemq-namespace'
with your actual namespace):
InstallCode Block language bash kubectl create secret generic 'hivemq-license' \ --from-file 'hivemq-license.lic' \ --namespace 'hivemq
-namespace'
Now, you can install HiveMQ with the specified license. Use the following
helm upgrade
command, providing a release name (e.g.,'hivemq-mine
fromrelease'
), the Helm chart ('hivemq/hivemq-operator
to'
), the target namespace ('hivemq
and use parameter values from the file'
), and thevalues.yaml
file you edited earlier:Code Block language bash helm upgrade 'hivemq-minerelease' \ --install 'hivemq/hivemq-operator' \ --namespace 'hivemq' \ --values 'values.yaml'
HiveMQ will be installed with the license file from the Kubernetes
Secret
, ensuring that it operates with the appropriate licensing.That's it! You've successfully configured HiveMQ to use a license file from a Kubernetes
Secret
using HiveMQ Operator.
\uD83D\uDCCB Related articles
Filter by label (Content by label) | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|