Skip to content

Commit

Permalink
Merge pull request #9002 from mazdakn/remove-aof
Browse files Browse the repository at this point in the history
Remove ApplyOnForward for network policy resource
  • Loading branch information
matthewdupre authored Jul 12, 2024
2 parents 2f3485f + d9fe0e0 commit 37f05f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2018 Tigera, Inc. All rights reserved.
// Copyright (c) 2017-2024 Tigera, Inc. All rights reserved.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -68,7 +68,7 @@ func convertNetworkPolicyV2ToV1Value(val interface{}) (interface{}, error) {
OutboundRules: RulesAPIV2ToBackend(spec.Egress, v3res.Namespace),
Selector: selector,
Types: policyTypesAPIV2ToBackend(spec.Types),
ApplyOnForward: true,
ApplyOnForward: false,
PerformanceHints: v3res.Spec.PerformanceHints,
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Tigera, Inc. All rights reserved.
// Copyright (c) 2017-2024 Tigera, Inc. All rights reserved.

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -81,7 +81,7 @@ var _ = Describe("Test the NetworkPolicy update processor", func() {
Value: &model.Policy{
Namespace: ns1,
Selector: "projectcalico.org/namespace == 'namespace1'",
ApplyOnForward: true,
ApplyOnForward: false,
},
Revision: testRev,
}))
Expand Down Expand Up @@ -193,7 +193,7 @@ var (
Order: &testDefaultPolicyOrder,
Selector: "(projectcalico.org/orchestrator == 'k8s') && projectcalico.org/namespace == 'default'",
Types: []string{"egress"},
ApplyOnForward: true,
ApplyOnForward: false,
OutboundRules: []model.Rule{
{
Action: "allow",
Expand Down Expand Up @@ -238,7 +238,7 @@ var expected2 = []*model.KVPair{
Order: &testDefaultPolicyOrder,
Selector: "(projectcalico.org/orchestrator == 'k8s') && projectcalico.org/namespace == 'default'",
Types: []string{"ingress"},
ApplyOnForward: true,
ApplyOnForward: false,
InboundRules: []model.Rule{
{
Action: "allow",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func fullNPv1(namespace string) (p model.Policy) {
Order: &testPolicyOrder101,
InboundRules: []model.Rule{ir},
OutboundRules: []model.Rule{or},
ApplyOnForward: true,
ApplyOnForward: false,
Types: []string{"ingress", "egress"},
}
}
Expand Down

0 comments on commit 37f05f4

Please sign in to comment.