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: ByteString

Base64-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:

  1. If it’s a kubelet client certificate, it is assigned “kubernetes.io/kube-apiserver-client-kubelet”.
  2. If it’s a kubelet serving certificate, it is assigned “kubernetes.io/kubelet-serving”.
  3. 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 a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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 !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.