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
Copy file name to clipboardExpand all lines: content/operate/rs/security/encryption/internode-encryption.md
+29-3Lines changed: 29 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,15 +168,41 @@ tab3="REST API" >}}
168
168
169
169
-tab-sep-
170
170
171
-
Run [`rladmin cluster certificate`]({{< relref "/operate/rs/references/cli-utilities/rladmin/cluster/certificate">}}):
171
+
To use the same certificate for data and control plane internode encryption, run the following [`rladmin cluster certificate`]({{< relref "/operate/rs/references/cli-utilities/rladmin/cluster/certificate#cluster-certificate-set-internal">}}) command:
To use separate certificates for data and control plane internode encryption, run the following [`rladmin cluster certificate`]({{< relref "/operate/rs/references/cli-utilities/rladmin/cluster/certificate#cluster-certificate-set-internal">}}) command:
Send a [`PUT /v1/cluster/certificates`]({{< relref "/operate/rs/references/rest-api/requests/cluster/certificates#put-cluster-certificates">}}) request:
185
+
To use the same certificate for data and control plane internode encryption, send a [`PUT /v1/cluster/certificates`]({{< relref "/operate/rs/references/rest-api/requests/cluster/certificates#put-cluster-certificates">}}) request:
186
+
187
+
```sh
188
+
PUT https://<host>:<port>/v1/cluster/certificates
189
+
{
190
+
"certificates": [
191
+
{
192
+
"name": "ccs_internode_encryption",
193
+
"key": "<shared-private-key>",
194
+
"certificate": "<shared-certificate-chain>"
195
+
},
196
+
{
197
+
"name": "data_internode_encryption",
198
+
"key": "<shared-private-key>",
199
+
"certificate": "<shared-certificate-chain>"
200
+
}
201
+
]
202
+
}
203
+
```
204
+
205
+
To use separate certificates for data and control plane internode encryption, send a [`PUT /v1/cluster/certificates`]({{< relref "/operate/rs/references/rest-api/requests/cluster/certificates#put-cluster-certificates">}}) request:
0 commit comments