From d852880c54bf7eefbf9a9484b46bc1709f5d5da6 Mon Sep 17 00:00:00 2001 From: erwinvaneyk Date: Tue, 16 Jun 2020 14:41:21 +0200 Subject: [PATCH] Fix curl instruction in README of sample-apiserver --- staging/src/k8s.io/sample-apiserver/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/sample-apiserver/README.md b/staging/src/k8s.io/sample-apiserver/README.md index cd09302eb01..d0ec5df36fe 100644 --- a/staging/src/k8s.io/sample-apiserver/README.md +++ b/staging/src/k8s.io/sample-apiserver/README.md @@ -186,7 +186,7 @@ only this superuser group is authorized. 5. Use curl to access the server using the client certificate in p12 format for authentication: ``` shell - curl -fv -k --cert client.p12:password \ + curl -fv -k --cert-type P12 --cert client.p12:password \ https://localhost:8443/apis/wardle.example.com/v1alpha1/namespaces/default/flunders ```