@@ -576,7 +576,6 @@ func (f5 *f5LTM) ensureVxLANTunnel() error {
576
576
AddressSource : "from-user" ,
577
577
Floating : "disabled" ,
578
578
InheritedTrafficGroup : "false" ,
579
- TrafficGroup : path .Join (f5 .partitionPath , "traffic-group-local-only" ),
580
579
Unit : 0 ,
581
580
Vlan : path .Join (f5 .partitionPath , F5VxLANTunnelName ),
582
581
AllowService : "all" ,
@@ -615,11 +614,13 @@ func (f5 *f5LTM) ensurePolicyExists(policyName string) error {
615
614
616
615
policiesUrl := fmt .Sprintf ("https://%s/mgmt/tm/ltm/policy" , f5 .host )
617
616
617
+ policyPath := path .Join (f5 .partitionPath , policyName )
618
+
618
619
if f5 .setupOSDNVxLAN {
619
620
// if vxlan needs to be setup, it will only happen
620
621
// with ver12, for which we need to use a different payload
621
622
policyPayload := f5Ver12Policy {
622
- Name : policyName ,
623
+ Name : policyPath ,
623
624
TmPartition : f5 .partitionPath ,
624
625
Controls : []string {"forwarding" },
625
626
Requires : []string {"http" },
@@ -629,7 +630,7 @@ func (f5 *f5LTM) ensurePolicyExists(policyName string) error {
629
630
err = f5 .post (policiesUrl , policyPayload , nil )
630
631
} else {
631
632
policyPayload := f5Policy {
632
- Name : policyName ,
633
+ Name : policyPath ,
633
634
Partition : f5 .partitionPath ,
634
635
Controls : []string {"forwarding" },
635
636
Requires : []string {"http" },
@@ -698,7 +699,7 @@ func (f5 *f5LTM) ensureVserverHasPolicy(vserverName, policyName string) error {
698
699
glog .V (4 ).Infof ("Adding policy %s to vserver %s..." , policyName , vserverName )
699
700
700
701
vserverPoliciesPayload := f5VserverPolicy {
701
- Name : policyName ,
702
+ Name : policyPath ,
702
703
Partition : f5 .partitionPath ,
703
704
}
704
705
0 commit comments