File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -1114,17 +1114,25 @@ description: |
1114
1114
1115
1115
Specifies the |k8s-secret| that contains the {+mdbagent+}'s
1116
1116
|tls| certificate.
1117
+
1118
+ This secret must contain the following keys, the
1119
+ values of which are |tls| certificates that can be validated by the
1120
+ server:
1117
1121
1122
+ - ``mms-automation-agent-pem``
1123
+ - ``mms-backup-agent-pem``
1124
+ - ``mms-monitoring-agent-pem``
1125
+
1118
1126
You must create this secret in the same namespace to which you
1119
1127
deploy the |k8s-op-short|:
1120
1128
1121
1129
.. code-block:: sh
1122
1130
1123
- kubectl create secret generic agent-cert \
1124
- --from-file=mms-automation-agent-pem=agent -cert.pem -n <namespace>
1125
-
1126
- This secret must contain a `` mms-automation -agent-pem`` key, the value
1127
- of which is a |tls| certificate that can be validated by the server.
1131
+ kubectl create secret generic agent-certs \
1132
+ --from-file=mms-automation-agent-pem=<automation -cert.pem> \
1133
+ --from-file=mms-backup-agent-pem=<backup-cert.pem> \
1134
+ --from-file= mms-monitoring -agent-pem=<monitoring-cert.pem> \
1135
+ -n <namespace>
1128
1136
1129
1137
This setting is required if
1130
1138
:setting:`spec.security.authentication.requireClientTLSAuthentication` is ``true``.
You can’t perform that action at this time.
0 commit comments