UNCLASSIFIED

Commits (2)
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.8.4-bb.5]
### Fixed
- Kube API egress allowed for all pods, not just istiod
## [1.8.4-bb.4] ## [1.8.4-bb.4]
### Added ### Added
- Kube API egress networkpolicy - Kube API egress networkpolicy
......
apiVersion: v2 apiVersion: v2
name: istio name: istio
version: 1.8.4-bb.4 version: 1.8.4-bb.5
...@@ -2,12 +2,10 @@ ...@@ -2,12 +2,10 @@
apiVersion: networking.k8s.io/v1 apiVersion: networking.k8s.io/v1
kind: NetworkPolicy kind: NetworkPolicy
metadata: metadata:
name: allow-egress-api name: egress-kube-api
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
spec: spec:
podSelector: podSelector: {}
matchLabels:
app: istiod
egress: egress:
- to: - to:
- ipBlock: - ipBlock:
......