diff --git a/docs/content/kubernetes-tutorial.md b/docs/content/kubernetes-tutorial.md index ae92a56797..cb4bab8fc1 100644 --- a/docs/content/kubernetes-tutorial.md +++ b/docs/content/kubernetes-tutorial.md @@ -70,33 +70,33 @@ certificate authority (CA) and certificate/key pair for OPA: ```bash openssl genrsa -out ca.key 2048 -openssl req -x509 -new -nodes -key ca.key -days 100000 -out ca.crt -subj "/CN=admission_ca" +openssl req -x509 -new -nodes -sha256 -key ca.key -days 100000 -out ca.crt -subj "/CN=admission_ca" ``` Generate the TLS key and certificate for OPA: ```bash cat >server.conf < Note: the Common Name value and Subject Alternative Name you give to openssl MUST match the name of the OPA service created below.