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 aee4fc2 commit bf969a0Copy full SHA for bf969a0
rust/operator-binary/src/hbase_controller.rs
@@ -967,6 +967,7 @@ fn build_rolegroup_statefulset(
967
.build(),
968
);
969
970
+ // externally-reachable listener endpoints should use a pvc volume...
971
let pvcs = if merged_config.listener_class().discoverable() {
972
let pvc = ListenerOperatorVolumeSourceBuilder::new(
973
&ListenerReference::ListenerClass(merged_config.listener_class().to_string()),
@@ -977,6 +978,7 @@ fn build_rolegroup_statefulset(
977
978
.context(BuildListenerVolumeSnafu)?;
979
Some(vec![pvc])
980
} else {
981
+ // ...whereas others will use ephemeral volumes
982
pod_builder
983
.add_listener_volume_by_listener_class(
984
LISTENER_VOLUME_NAME,
0 commit comments