Skip to content

Commit f11c4ee

Browse files
author
Rajat Chopra
committed
policy urls should support partitions
1 parent de4ca18 commit f11c4ee

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pkg/router/f5/f5.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,6 @@ func (f5 *f5LTM) ensureVxLANTunnel() error {
576576
AddressSource: "from-user",
577577
Floating: "disabled",
578578
InheritedTrafficGroup: "false",
579-
TrafficGroup: path.Join(f5.partitionPath, "traffic-group-local-only"),
580579
Unit: 0,
581580
Vlan: path.Join(f5.partitionPath, F5VxLANTunnelName),
582581
AllowService: "all",
@@ -615,11 +614,13 @@ func (f5 *f5LTM) ensurePolicyExists(policyName string) error {
615614

616615
policiesUrl := fmt.Sprintf("https://%s/mgmt/tm/ltm/policy", f5.host)
617616

617+
policyPath := path.Join(f5.partitionPath, policyName)
618+
618619
if f5.setupOSDNVxLAN {
619620
// if vxlan needs to be setup, it will only happen
620621
// with ver12, for which we need to use a different payload
621622
policyPayload := f5Ver12Policy{
622-
Name: policyName,
623+
Name: policyPath,
623624
TmPartition: f5.partitionPath,
624625
Controls: []string{"forwarding"},
625626
Requires: []string{"http"},
@@ -629,7 +630,7 @@ func (f5 *f5LTM) ensurePolicyExists(policyName string) error {
629630
err = f5.post(policiesUrl, policyPayload, nil)
630631
} else {
631632
policyPayload := f5Policy{
632-
Name: policyName,
633+
Name: policyPath,
633634
Partition: f5.partitionPath,
634635
Controls: []string{"forwarding"},
635636
Requires: []string{"http"},
@@ -698,7 +699,7 @@ func (f5 *f5LTM) ensureVserverHasPolicy(vserverName, policyName string) error {
698699
glog.V(4).Infof("Adding policy %s to vserver %s...", policyName, vserverName)
699700

700701
vserverPoliciesPayload := f5VserverPolicy{
701-
Name: policyName,
702+
Name: policyPath,
702703
Partition: f5.partitionPath,
703704
}
704705

0 commit comments

Comments
 (0)