Struct k8s_openapi::api::certificates::v1beta1::CertificateSigningRequestSpec [−][src]
pub struct CertificateSigningRequestSpec {
pub extra: BTreeMap<String, Vec<String>>,
pub groups: Vec<String>,
pub request: ByteString,
pub signer_name: Option<String>,
pub uid: Option<String>,
pub usages: Vec<String>,
pub username: Option<String>,
}Expand description
This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.
Fields
extra: BTreeMap<String, Vec<String>>Extra information about the requesting user. See user.Info interface for details.
groups: Vec<String>Group information about the requesting user. See user.Info interface for details.
request: ByteStringBase64-encoded PKCS#10 CSR data
signer_name: Option<String>Requested signer for the request. It is a qualified name in the form: scope-hostname.io/name. If empty, it will be defaulted:
- If it’s a kubelet client certificate, it is assigned “kubernetes.io/kube-apiserver-client-kubelet”.
- If it’s a kubelet serving certificate, it is assigned “kubernetes.io/kubelet-serving”.
- Otherwise, it is assigned “kubernetes.io/legacy-unknown”.
Distribution of trust for signers happens out of band. You can select on this field using
spec.signerName.
uid: Option<String>UID information about the requesting user. See user.Info interface for details.
usages: Vec<String>allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 Valid values are: “signing”, “digital signature”, “content commitment”, “key encipherment”, “key agreement”, “data encipherment”, “cert sign”, “crl sign”, “encipher only”, “decipher only”, “any”, “server auth”, “client auth”, “code signing”, “email protection”, “s/mime”, “ipsec end system”, “ipsec tunnel”, “ipsec user”, “timestamping”, “ocsp signing”, “microsoft sgc”, “netscape sgc”
username: Option<String>Information about the requesting user. See user.Info interface for details.
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for CertificateSigningRequestSpecimpl Sync for CertificateSigningRequestSpecimpl Unpin for CertificateSigningRequestSpecimpl UnwindSafe for CertificateSigningRequestSpecBlanket Implementations
Mutably borrows from an owned value. Read more