From ed51c04bf952b420c8ae3877394c098ca1f32d46 Mon Sep 17 00:00:00 2001 From: Dan Sneddon Date: Mon, 15 Apr 2019 12:11:45 -0700 Subject: [PATCH] Fix typo in 2-linux-bonds-vlans NIC config templates The network/config/2-linux-bonds-vlans/role.role.j2.yaml contains a typo in the ControlPlane interface. Instead of ControlPlaneStaticRoutes, the template contains ControlPlaneRoutes, which doesn't exist. This patch fixes the get_param. Change-Id: I331a06339611d423433bea243b10e4c0df8800a3 --- network/config/2-linux-bonds-vlans/role.role.j2.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/config/2-linux-bonds-vlans/role.role.j2.yaml b/network/config/2-linux-bonds-vlans/role.role.j2.yaml index 08ee850857..167800ffed 100644 --- a/network/config/2-linux-bonds-vlans/role.role.j2.yaml +++ b/network/config/2-linux-bonds-vlans/role.role.j2.yaml @@ -161,7 +161,7 @@ resources: - get_param: ControlPlaneSubnetCidr routes: list_concat_unique: - - get_param: ControlPlaneRoutes + - get_param: ControlPlaneStaticRoutes - - ip_netmask: 169.254.169.254/32 next_hop: get_param: EC2MetadataIp