We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c228c7 commit 99617d2Copy full SHA for 99617d2
1 file changed
crates/stackable-operator/src/builder/pod/volume.rs
@@ -353,12 +353,10 @@ impl SecretOperatorVolumeSourceBuilder {
353
pub fn build(&self) -> Result<EphemeralVolumeSource, SecretOperatorVolumeSourceBuilderError> {
354
let mut annotations = Annotations::new();
355
356
+ #[rustfmt::skip]
357
annotations
- .insert(Annotation::secret_class(&self.secret_class).context(ParseAnnotationSnafu)?);
358
- annotations.insert(
359
- Annotation::secret_provision_parts(&self.provision_parts)
360
- .context(ParseAnnotationSnafu)?,
361
- );
+ .insert(Annotation::secret_class(&self.secret_class).context(ParseAnnotationSnafu)?)
+ .insert(Annotation::secret_provision_parts(&self.provision_parts).context(ParseAnnotationSnafu)?);
362
363
if !self.scopes.is_empty() {
364
0 commit comments