UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit b62720d9 authored by Chukwuka Akagbusi's avatar Chukwuka Akagbusi Committed by Michael Martin
Browse files

Resolve "Vault - Add Dynamic Network Policy support"

parent d7b4ca4b
No related branches found
Tags 0.29.0-bb.1
1 merge request!229Resolve "Vault - Add Dynamic Network Policy support"
......@@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
---
## [0.29.1-bb.10] - 2025-03-19
### Changed
- Added Dynamic Network Policy support
## [0.29.1-bb.9] - 2025-02-28
### Changed
......
<!-- Warning: Do not manually edit this file. See notes on gluon + helm-docs at the end of this file for more information. -->
# vault
![Version: 0.29.1-bb.9](https://img.shields.io/badge/Version-0.29.1--bb.9-informational?style=flat-square) ![AppVersion: 1.18.5](https://img.shields.io/badge/AppVersion-1.18.5-informational?style=flat-square) ![Maintenance Track: bb_integrated](https://img.shields.io/badge/Maintenance_Track-bb_integrated-green?style=flat-square)
![Version: 0.29.1-bb.10](https://img.shields.io/badge/Version-0.29.1--bb.10-informational?style=flat-square) ![AppVersion: 1.18.5](https://img.shields.io/badge/AppVersion-1.18.5-informational?style=flat-square) ![Maintenance Track: bb_integrated](https://img.shields.io/badge/Maintenance_Track-bb_integrated-green?style=flat-square)
Official HashiCorp Vault Chart
......
apiVersion: v2
name: vault
version: '0.29.1-bb.9'
version: '0.29.1-bb.10'
appVersion: 1.18.5
kubeVersion: ">= 1.20.0-0"
description: Official HashiCorp Vault Chart
......
......@@ -13,7 +13,11 @@ spec:
- from:
- namespaceSelector:
matchLabels:
app.kubernetes.io/name: istio-controlplane
{{- if .Values.networkPolicies.istioNamespaceSelector }}
app.kubernetes.io/name: {{ .Values.networkPolicies.istioNamespaceSelector.ingress }}
{{- else }}
app.kubernetes.io/name: "istio-controlplane"
{{- end }}
podSelector:
matchLabels:
{{- toYaml .Values.networkPolicies.ingressLabels | nindent 10}}
......@@ -24,7 +28,11 @@ spec:
- to:
- namespaceSelector:
matchLabels:
app.kubernetes.io/name: istio-controlplane
{{- if .Values.networkPolicies.istioNamespaceSelector }}
app.kubernetes.io/name: {{ .Values.networkPolicies.istioNamespaceSelector.egress }}
{{- else }}
app.kubernetes.io/name: "istio-controlplane"
{{- end }}
podSelector:
matchLabels:
istio: pilot
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment