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 a14eecf commit ddfc266Copy full SHA for ddfc266
crates/stackable-operator/src/builder/pod/container.rs
@@ -436,7 +436,7 @@ mod tests {
436
.add_env_var_from_config_map("envFromConfigMap", "my-configmap", "my-key")
437
.add_env_var_from_secret("envFromSecret", "my-secret", "my-key")
438
.add_volume_mount("configmap", "/mount")
439
- .unwrap()
+ .expect("add volume mount")
440
.add_container_port(container_port_name, container_port)
441
.resources(resources.clone())
442
.add_container_ports(vec![ContainerPortBuilder::new(container_port_1)
0 commit comments