Skip to content

Commit c2c36c3

Browse files
committed
Fix calico pool command
1 parent de29f82 commit c2c36c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/src/main/java/brooklyn/networking/sdn/calico/CalicoNodeSshDriver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void stop() {
102102
public void createSubnet(String virtualNetworkId, String subnetId, Cidr subnetCidr) {
103103
newScript("createSubnet")
104104
.body.append(
105-
sudo(String.format("%s ipv4 pool add %s", getCalicoCommand(), subnetCidr)))
105+
sudo(String.format("%s pool add %s", getCalicoCommand(), subnetCidr)))
106106
.execute();
107107
}
108108

0 commit comments

Comments
 (0)