Skip to content

Commit

Permalink
fix: Volume name is invalid
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezzfelipe committed Nov 1, 2024
1 parent 812b4c1 commit 78bf230
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/custom_resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ impl HydraDoomNode {
}]),
volume_mounts: Some(vec![
VolumeMount {
name: "initial_utxo".to_string(),
name: "initialutxo".to_string(),
mount_path: constants.initial_utxo_config_dir.clone(),
..Default::default()
},
Expand Down Expand Up @@ -291,7 +291,7 @@ impl HydraDoomNode {
..Default::default()
},
Volume {
name: "initial_utxo".to_string(),
name: "initialutxo".to_string(),
config_map: Some(ConfigMapVolumeSource {
name: constants.initial_utxo_config_dir.clone(),
..Default::default()
Expand Down

0 comments on commit 78bf230

Please sign in to comment.