添加客户端证书
将客户端证书添加到您的 REDB 自定义资源。
适用于 Kubernetes 的 Redis Enterprise |
---|
对于要用于数据库的每个客户端证书,您需要创建一个 Kubernetes 密钥来保存它。然后,您可以在 Redis Enterprise 数据库 (REDB) 自定义资源规范中引用该密钥。
创建密钥以保存新证书
-
使用如下所示的必填字段创建 secret 配置文件。
apiVersion: v1 kind: Secret type: Opaque metadata: name: <client-cert-secret> namespace: <your-rec-namespace> data: cert: <client-certificate>
-
Apply the file to create the secret resource.
kubectl apply -f <client-cert-secret>.yaml
Edit the REDB resource
- Add the secret name to the REDB custom resource (
redb.yaml
) with the clientAuthenticationCertificates
property in the spec
section.
spec:
clientAuthenticationCertificates:
- <client-cert-secret>
On this page