Skip to content

Commit

Permalink
added the ability to set per-host virtual ip interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
markdhooper committed Apr 28, 2022
1 parent e95cba7 commit 0b20bd1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/fakeroot/usr/share/cockpit/ceph-deploy/ceph-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,19 @@ let g_option_scheme = {
rgwloadbalancers: {
inventory_file: true,
global: [],
unique: [],
unique: [
{
option_name: "virtual_ip_interface",
option_format: "default",
optional: true,
label: "virtual_ip_interface",
feedback: true,
feedback_type: "name",
help: "",
input_type: "text",
default_value: "",
},
],
group: [
{
option_name: "haproxy_frontend_port",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ class Host:
radosgw_address: str = ""
monitor_interface: str = ""
dedicated_devices: List = field(default_factory=lambda: [])
virtual_ip_interface: str = ""

def load_dictionary(self, dict_variable: dict):
ret_val = False
Expand Down

0 comments on commit 0b20bd1

Please sign in to comment.