Skip to content

Commit

Permalink
extension: EtcdClusterExtension
Browse files Browse the repository at this point in the history
Added ability to use settings in EtcdClusterExtension.
  • Loading branch information
IlyasYOY committed Jan 29, 2023
1 parent 8ebc630 commit 902a463
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ public Builder withNetwork(Network network) {
return this;
}

public Builder withMountDirectory(boolean mountDirectory) {
builder.withMountedDataDirectory(mountDirectory);
return this;
}

public EtcdClusterExtension build() {
return new EtcdClusterExtension(builder.build());
}
Expand Down

0 comments on commit 902a463

Please sign in to comment.