You can use the GetClientCertificateSignRequest method to generate a certificate signing request that can be signed by a certificate authority to generate a client certificate for the cluster. Signed certificates are needed to establish a trust relationship for interacting with external services.
This method has no input parameters.
This method has the following return values:
Name | Description | Type |
---|---|---|
clientCertificateSignRequest | A PEM format Base64 encoded PKCS#10 X.509 client certificate sign request. | string |
Requests for this method are similar to the following example:
{ "method": "GetClientCertificateSignRequest", "params": { }, "id": 1 }
This method returns a response similar to the following example:
{ "id": 1, "result": { "clientCertificateSignRequest": "MIIByjCCATMCAQAwgYkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybm..." } }
11.7