ClusterTrustBundleProjection

data class ClusterTrustBundleProjection(val labelSelector: LabelSelector? = null, val name: String? = null, val optional: Boolean? = null, val path: String, val signerName: String? = null)

ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem.

Constructors

Link copied to clipboard
constructor(labelSelector: LabelSelector? = null, name: String? = null, optional: Boolean? = null, path: String, signerName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as "match nothing". If set but empty, interpreted as "match everything".

Link copied to clipboard
val name: String? = null

Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector.

Link copied to clipboard
val optional: Boolean? = null

If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles.

Link copied to clipboard

Relative path from the volume root to write the bundle.

Link copied to clipboard
val signerName: String? = null

Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated.