1. Verify the `admission-tls` secret exists. ```sh kubectl get secret admission-tls ``` The output should look similar to ```sh NAME TYPE DATA AGE admission-tls Opaque 2 2m43s ``` 1. Save the certificate to a local environment variable. ```sh CERT=`kubectl get secret admission-tls -o jsonpath='{.data.cert}'` ``` 1. Create a Kubernetes validating webhook, replacing `` with the namespace where the REC was installed. The `webhook.yaml` template can be found in [redis-enterprise-k8s-docs/admission](https://github.com/RedisLabs/redis-enterprise-k8s-docs/tree/master/admission) ```sh sed 's/OPERATOR_NAMESPACE//g' webhook.yaml | kubectl create -f - ``` 1. Create a patch file for the Kubernetes validating webhook. ```sh cat > modified-webhook.yaml <