UNCLASSIFIED

Commits (2)
......@@ -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).
## [1.8.4-bb.5]
### Fixed
- Kube API egress allowed for all pods, not just istiod
## [1.8.4-bb.4]
### Added
- Kube API egress networkpolicy
......
apiVersion: v2
name: istio
version: 1.8.4-bb.4
version: 1.8.4-bb.5
......@@ -2,12 +2,10 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-egress-api
name: egress-kube-api
namespace: {{ .Release.Namespace }}
spec:
podSelector:
matchLabels:
app: istiod
podSelector: {}
egress:
- to:
- ipBlock:
......