Package org.cdk8s.plus24.k8s
Interface KubeCertificateSigningRequestProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeCertificateSigningRequestProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.85.0 (build 08ee592)", date="2023-07-25T00:18:39.265Z") @Stability(Stable) public interface KubeCertificateSigningRequestProps extends software.amazon.jsii.JsiiSerializable
CertificateSigningRequest objects provide a mechanism to obtain x509 certificates by submitting a certificate signing request, and having it asynchronously approved and issued.Kubelets use this API to obtain:
- client certificates to authenticate to kube-apiserver (with the "kubernetes.io/kube-apiserver-client-kubelet" signerName).
- serving certificates for TLS endpoints kube-apiserver can connect to securely (with the "kubernetes.io/kubelet-serving" signerName).
This API can be used to request client certificates to authenticate to kube-apiserver (with the "kubernetes.io/kube-apiserver-client" signerName), or to obtain certificates from custom non-Kubernetes signers.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
KubeCertificateSigningRequestProps.Builder
A builder forKubeCertificateSigningRequestProps
static class
KubeCertificateSigningRequestProps.Jsii$Proxy
An implementation forKubeCertificateSigningRequestProps
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static KubeCertificateSigningRequestProps.Builder
builder()
default ObjectMeta
getMetadata()
CertificateSigningRequestSpec
getSpec()
spec contains the certificate request, and is immutable after creation.
-
-
-
Method Detail
-
getSpec
@Stability(Stable) @NotNull CertificateSigningRequestSpec getSpec()
spec contains the certificate request, and is immutable after creation.Only the request, signerName, expirationSeconds, and usages fields can be set on creation. Other fields are derived by Kubernetes and cannot be modified by users.
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
-
builder
@Stability(Stable) static KubeCertificateSigningRequestProps.Builder builder()
-
-