Skip to content

Commit

Permalink
Fixing ip + str issue (openshift#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsorya authored Jul 10, 2020
1 parent 8baba7e commit 57d9e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discovery-infra/start_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def fill_tfvars(image_path, storage_path, master_count, nodes_details):
ipaddress.ip_address(
ipaddress.IPv4Network(nodes_details["machine_cidr"]).network_address
)
+ 10 + tfvars["master_count"]
+ 10 + int(tfvars["master_count"])
)
tfvars["image_path"] = image_path
tfvars["master_count"] = min(master_count, consts.NUMBER_OF_MASTERS)
Expand Down

0 comments on commit 57d9e0b

Please sign in to comment.