We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dd55f1 commit 75d7ceaCopy full SHA for 75d7cea
src/commons/s3.rs
@@ -4,16 +4,16 @@
4
//! Operator CRDs are expected to use the [S3BucketDef] as an entry point to this module
5
//! and obtain an [InlinedS3BucketSpec] by calling [`S3BucketDef::resolve`].
6
//!
7
+use kube::CustomResource;
8
+use schemars::JsonSchema;
9
+use serde::{Deserialize, Serialize};
10
+
11
use crate::{
12
client::Client,
13
commons::{authentication::tls::Tls, secret_class::SecretClassVolume},
14
error::{self, OperatorResult},
15
};
16
-use kube::CustomResource;
-use schemars::JsonSchema;
-use serde::{Deserialize, Serialize};
-
17
/// S3 bucket specification containing only the bucket name and an inlined or
18
/// referenced connection specification.
19
#[derive(
0 commit comments