pub trait SecretVolumeSourceExt: Sized {
fn secret_name(name: impl ToString) -> Self;
fn optional(self, yes: bool) -> Self;
fn default_mode(self, mode: i32) -> Self;
fn items(
self,
items: impl IntoIterator<Item = (impl ToString, impl ToString)>
) -> Self;
fn required(self) -> Self { ... }
}
Expand description
Builders for corev1::SecretVolumeSource
objects