Skip to content

Commit 9a06c1b

Browse files
authored
Updating apiVersion for Certificate Signing Request object #1
Issue detected: There are two references to old apiVersion for CertificateSigningRequest object Ref: CertificateSigningRequest API is promoted to certificates.k8s.io/v1 (https://kubernetes.io/docs/setup/release/notes/#api-change) Fix: Replaced "certificates.k8s.io/v1beta1" by "certificates.k8s.io/v1"
1 parent 77b51db commit 9a06c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/docs/reference/access-authn-authz/certificate-signing-requests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Kubernetes provides built-in signers that each have a well-known `signerName`:
108108

109109
1. `kubernetes.io/legacy-unknown`: has no guarantees for trust at all. Some distributions may honor these as client
110110
certs, but that behavior is not standard Kubernetes behavior.
111-
This signerName can only be requested in CertificateSigningRequests created via the `certificates.k8s.io/v1beta1` API version.
111+
This signerName can only be requested in CertificateSigningRequests created via the `certificates.k8s.io/v1` API version.
112112
Never auto-approved by {{< glossary_tooltip term_id="kube-controller-manager" >}}.
113113
1. Trust distribution: None. There is no standard trust or distribution for this signer in a Kubernetes cluster.
114114
1. Permitted subjects - any
@@ -245,7 +245,7 @@ Create a CertificateSigningRequest and submit it to a Kubernetes Cluster via kub
245245
246246
```
247247
cat <<EOF | kubectl apply -f -
248-
apiVersion: certificates.k8s.io/v1beta1
248+
apiVersion: certificates.k8s.io/v1
249249
kind: CertificateSigningRequest
250250
metadata:
251251
name: john

0 commit comments

Comments
 (0)