Skip to content

Commit fd756de

Browse files
PCLM corrections
1 parent 22d495f commit fd756de

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

content/en/docs/developerportal/deploy/private-cloud/private-cloud-license-manager.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ Assume that the operator is running in the namespace `<operator-ns>`.
277277

278278
### 7.1 Storing Operator User Credentials and Configuring the Mendix Operator
279279

280-
The credentials you have created for an operator or admin type user need to be stored in the repository. You also need to patch the Mendix Operator with the location of pclm server and credentials for accessing the PCLM server. To do this, you can use the below mx-pclm-cli command:
280+
The credentials you have created for an operator or admin type user need to be stored in the repository. You also need to patch the Mendix Operator and Agent with the location of the PCLM server, and the credentials for accessing the PCLM server. To do this, you can use the below mx-pclm-cli command:
281281

282282
```bash {linenos=false}
283283
mx-pclm-cli config-namespace -n <operator-ns> \
@@ -293,9 +293,9 @@ kind: Secret
293293
type: Opaque
294294
metadata:
295295
name: <secret-name>
296-
stringData:
297-
username: <username>
298-
password: <password>
296+
data:
297+
username: <base64-encoded username>
298+
password: <base64-encoded password>
299299
```
300300

301301
Where:
@@ -428,6 +428,8 @@ Once you have configured the Mendix Operator running in a specific `<namespace>`
428428
```bash {linenos=false}
429429
kubectl -n <namespace> scale deployment mendix-operator --replicas=0
430430
kubectl -n <namespace> scale deployment mendix-operator --replicas=1
431+
kubectl -n <namespace> scale deployment mendix-agent --replicas=0
432+
kubectl -n <namespace> scale deployment mendix-agent --replicas=1
431433
```
432434

433435
This restarts the Mendix Operator, and associated Mendix App Runtimes, and configures both with licenses fetched from the PCLM server.

0 commit comments

Comments
 (0)