Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 31 additions & 7 deletions annotation/annotations.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions annotation/annotations.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions annotation/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,18 @@ annotations:
resources:
- Pod

- name: istio.io/ignore-policy-attachment
featureStatus: Alpha
description: When set to true on a policy attachment CRD object (BackendTLSPolicy,
BackendTrafficPolicy), the object will not be used by the
Istio control plane to generate configuration or conflict with other
policies.
deprecated: false
hidden: false
resources:
- BackendTLSPolicy
- BackendTrafficPolicy

- name: proxy.istio.io/overrides
featureStatus: Alpha
description: Used internally to indicate user-specified overrides in the proxy container of the pod during injection.
Expand Down
21 changes: 21 additions & 0 deletions releasenotes/notes/60122.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
apiVersion: release-notes/v2
kind: feature
area: traffic-management
issue:
- https://github.com/istio/istio/issues/60122
releaseNotes:
- |
**Added** support for excluding policy configuration from Istio when the
`istio.io/ignore-policy-attachment` annotation is set to "true" on a
BackendTLSPolicy, or XBackendTrafficPolicy object. This allows users to
prevent specific policies from being translated into Istio configuration,
when policy is intended for a different gateway controller than Istio.

Example usage:
```yaml
apiVersion: gateway.networking.k8s.io/v1
kind: BackendTLSPolicy
metadata:
annotations:
istio.io/ignore-policy-attachment: "true"
```