You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Additional environment variables for the cluster",
"type": "array",
"items": {
"type": "object",
"javaType": "com.hivemq.openapi.spec.Env",
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
]
}
},
When I want to set the Control Center user and password from a secret, this is obviously not possible. It is only possible to set it directly in the CRD, which lacks flexibility and security (user/password (hashed) in Git).
The text was updated successfully, but these errors were encountered:
The
env
section in thehivemqCluster
CRD only allows forkey
andvalue
:helm-charts/charts/hivemq-operator/hivemqCluster.json
Lines 104 to 123 in e54315b
When I want to set the Control Center user and password from a secret, this is obviously not possible. It is only possible to set it directly in the CRD, which lacks flexibility and security (user/password (hashed) in Git).
The text was updated successfully, but these errors were encountered: